From c917a6cb115154a6b93b4812b50d7630565f4470 Mon Sep 17 00:00:00 2001 From: Narazaki Shuji Date: Sun, 3 Dec 2023 20:00:36 +0900 Subject: [PATCH] Version 0.8.0 for Uiua 0.5.1 (#22) * modified: ChangeLog.md * modified: flake.lock * add `?`, remove removed glyphs by Uiua-0.5.0 * add a new category formatter for '\'' and '\'\'' * render `formatter` as `keyword.directive` --- Cargo.toml | 2 +- ChangeLog.md | 18 + flake.lock | 6 +- grammar.js | 11 +- package.json | 2 +- queries/highlights.scm | 5 +- src/grammar.json | 58 +- src/node-types.json | 37 +- src/parser.c | 80516 ++++++++++++++++++++------------------- 9 files changed, 40551 insertions(+), 40104 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5b706e9..e4ef450 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-uiua" description = "Uiua grammar for the tree-sitter parsing library" -version = "0.7.0" +version = "0.8.0" keywords = ["incremental", "parsing", "Uiua"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-uiua" diff --git a/ChangeLog.md b/ChangeLog.md index adb253a..18cfb69 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,23 @@ # Changelog +### 0.8.0: 2023-12-03 + +- follow Uiua-0.5.1 + - add `stack` + - remove `reach`, `distribute`, `tribute`, `level`, `combinate` + - add `'` and `''` + +### 0.7.0: 2023-12-03 + +- handle $-string known as multi-line string correctly + +### 0.6.0: 2023-12-01 + +- follow Uiua-0.4.0 + - add `rectify`, `this`, `recur`, and `fix` + - add `all`, `this`, `setinv`, and `setunder` + - deprecate `⟜` + ### 0.5.0: 2023-11-20 - follow Uiua-0.3.0 diff --git a/flake.lock b/flake.lock index 23624e5..c8a4d28 100644 --- a/flake.lock +++ b/flake.lock @@ -182,11 +182,11 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1701385924, - "narHash": "sha256-BrBumrSGtlxHtMPShyqiz6eeKgoP/1JntqJP/ye+eAU=", + "lastModified": 1701578241, + "narHash": "sha256-mjh74Zy3QsFja9OVJ4IcbtOrPn78vw6DdfpTHV/HrAQ=", "owner": "uiua-lang", "repo": "uiua", - "rev": "398ef5955f9eeb8d106ca16905d1c25a1b875494", + "rev": "6b78dd3a05f45fc300ec56155cbdc07cbaa676f9", "type": "github" }, "original": { diff --git a/grammar.js b/grammar.js index 580677c..3a6a6aa 100644 --- a/grammar.js +++ b/grammar.js @@ -49,6 +49,7 @@ module.exports = grammar({ $.identifier, $.identifierDeprecated, $.placeHolder, + $.formatter, ), inlineFunction: $ => seq( $.openParen, @@ -109,6 +110,7 @@ module.exports = grammar({ underscore: $ => token('_'), leftArrow: $ => token('←'), placeHolder: $ => seq('^', /[0-9]+(\.[0-9]+)?/), + formatter: $ => choice(token('\''), token('\'\'')), branchSeparator: $=> token('|'), compound: $ => choice( prec(1, seq( @@ -375,6 +377,9 @@ module.exports = grammar({ token('☇'), token('fix'), token('¤'), + + // Since 0.5.0 + token('?'), ), modifier1: $ => choice( // (1[1], Reduce, AggregatingModifier, ("reduce", '/')), @@ -470,12 +475,6 @@ module.exports = grammar({ token('⌂'), token('↰'), - // Since 0.3.0 - token('◳'), - token('≑'), - token('≐'), - token('∺'), - // Since 0.4.0 token('⟜'), ), diff --git a/package.json b/package.json index 7875bf2..e77e108 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-uiua", - "version": "0.7.0", + "version": "0.8.0", "description": "parser for Uiua", "main": "bindings/node", "scripts": { diff --git a/queries/highlights.scm b/queries/highlights.scm index 8048dc8..53ac667 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -44,8 +44,11 @@ "⋅" ] @tag - [ (deprecated) (identifierDeprecated) ] @warning + +[ + (formatter) +] @keyword.directive diff --git a/src/grammar.json b/src/grammar.json index a194361..b2926d8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -244,6 +244,10 @@ { "type": "SYMBOL", "name": "placeHolder" + }, + { + "type": "SYMBOL", + "name": "formatter" } ] }, @@ -726,6 +730,25 @@ } ] }, + "formatter": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "'" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "''" + } + } + ] + }, "branchSeparator": { "type": "TOKEN", "content": { @@ -1904,6 +1927,13 @@ "type": "STRING", "value": "¤" } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "?" + } } ] }, @@ -2340,34 +2370,6 @@ "value": "↰" } }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "◳" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "≑" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "≐" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "∺" - } - }, { "type": "TOKEN", "content": { diff --git a/src/node-types.json b/src/node-types.json index 326a968..4a0d974 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -151,6 +151,11 @@ "named": true, "fields": {} }, + { + "type": "formatter", + "named": true, + "fields": {} + }, { "type": "function", "named": true, @@ -362,6 +367,10 @@ "type": "compound", "named": true }, + { + "type": "formatter", + "named": true + }, { "type": "identifier", "named": true @@ -413,6 +422,14 @@ "type": "%", "named": false }, + { + "type": "'", + "named": false + }, + { + "type": "''", + "named": false + }, { "type": "*", "named": false @@ -465,6 +482,10 @@ "type": ">=", "named": false }, + { + "type": "?", + "named": false + }, { "type": "Arch", "named": false @@ -1109,22 +1130,10 @@ "type": "∷", "named": false }, - { - "type": "∺", - "named": false - }, { "type": "≍", "named": false }, - { - "type": "≐", - "named": false - }, - { - "type": "≑", - "named": false - }, { "type": "≠", "named": false @@ -1313,10 +1322,6 @@ "type": "◫", "named": false }, - { - "type": "◳", - "named": false - }, { "type": "◿", "named": false diff --git a/src/parser.c b/src/parser.c index 1c8fadb..b17c7f5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 246 -#define LARGE_STATE_COUNT 178 +#define STATE_COUNT 249 +#define LARGE_STATE_COUNT 180 #define SYMBOL_COUNT 269 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 242 +#define TOKEN_COUNT 241 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -54,232 +54,232 @@ enum { sym_underscore = 27, sym_leftArrow = 28, anon_sym_CARET = 29, - anon_sym_eta = 30, - anon_sym_2 = 31, - anon_sym_pi = 32, - anon_sym_3 = 33, - anon_sym_tau = 34, - anon_sym_4 = 35, - anon_sym_infinity = 36, - anon_sym_5 = 37, - anon_sym_e = 38, - anon_sym_NaN = 39, - anon_sym_NumProcs = 40, - anon_sym_DOT = 41, - anon_sym_COMMA = 42, - anon_sym_COLON = 43, - anon_sym_SEMI = 44, - anon_sym_identity = 45, - anon_sym_id = 46, - anon_sym_6 = 47, - anon_sym_not = 48, - anon_sym_7 = 49, - anon_sym_sign = 50, - anon_sym_8 = 51, - anon_sym_BQUOTE = 52, - anon_sym_9 = 53, - anon_sym_absolutevalue = 54, - anon_sym_10 = 55, - anon_sym_sqrt = 56, - anon_sym_11 = 57, - anon_sym_sine = 58, - anon_sym_12 = 59, - anon_sym_floor = 60, - anon_sym_13 = 61, - anon_sym_ceiling = 62, - anon_sym_14 = 63, - anon_sym_round = 64, - anon_sym_15 = 65, - anon_sym_EQ = 66, - anon_sym_BANG_EQ = 67, - anon_sym_16 = 68, - anon_sym_LT = 69, - anon_sym_LT_EQ = 70, - anon_sym_17 = 71, - anon_sym_GT = 72, - anon_sym_GT_EQ = 73, - anon_sym_18 = 74, - anon_sym_PLUS = 75, - anon_sym_DASH = 76, - anon_sym_STAR = 77, - anon_sym_19 = 78, - anon_sym_PERCENT = 79, - anon_sym_20 = 80, - anon_sym_modulus = 81, - anon_sym_21 = 82, - anon_sym_power = 83, - anon_sym_22 = 84, - anon_sym_logarithm = 85, - anon_sym_23 = 86, - anon_sym_minimum = 87, - anon_sym_24 = 88, - anon_sym_maximum = 89, - anon_sym_25 = 90, - anon_sym_atangent = 91, - anon_sym_26 = 92, - anon_sym_length = 93, - anon_sym_27 = 94, - anon_sym_shape = 95, - anon_sym_28 = 96, - anon_sym_range = 97, - anon_sym_29 = 98, - anon_sym_first = 99, - anon_sym_30 = 100, - anon_sym_reverse = 101, - anon_sym_31 = 102, - anon_sym_deshape = 103, - anon_sym_32 = 104, - anon_sym_bits = 105, - anon_sym_33 = 106, - anon_sym_transpose = 107, - anon_sym_34 = 108, - anon_sym_rise = 109, - anon_sym_35 = 110, - anon_sym_fall = 111, - anon_sym_36 = 112, - anon_sym_where = 113, - anon_sym_37 = 114, - anon_sym_classify = 115, - anon_sym_38 = 116, - anon_sym_deduplicate = 117, - anon_sym_39 = 118, - anon_sym_box = 119, - anon_sym_40 = 120, - anon_sym_unbox = 121, - anon_sym_41 = 122, - anon_sym_match = 123, - anon_sym_42 = 124, - anon_sym_couple = 125, - anon_sym_43 = 126, - anon_sym_join = 127, - anon_sym_44 = 128, - anon_sym_select = 129, - anon_sym_45 = 130, - anon_sym_pick = 131, - anon_sym_46 = 132, - anon_sym_reshape = 133, - anon_sym_47 = 134, - anon_sym_take = 135, - anon_sym_48 = 136, - anon_sym_drop = 137, - anon_sym_49 = 138, - anon_sym_rotate = 139, - anon_sym_50 = 140, - anon_sym_windows = 141, - anon_sym_51 = 142, - anon_sym_keep = 143, - anon_sym_52 = 144, - anon_sym_find = 145, - anon_sym_53 = 146, - anon_sym_member = 147, - anon_sym_54 = 148, - anon_sym_indexof = 149, - anon_sym_55 = 150, - anon_sym_assert = 151, - anon_sym_56 = 152, - anon_sym_wait = 153, - anon_sym_parse = 154, - anon_sym_random = 155, - anon_sym_57 = 156, - anon_sym_gen = 157, - anon_sym_deal = 158, - anon_sym_tag = 159, - anon_sym_now = 160, - anon_sym_type = 161, - anon_sym_58 = 162, - anon_sym_dump = 163, - anon_sym_regex = 164, - anon_sym_utf = 165, - anon_sym_send = 166, - anon_sym_recv = 167, - anon_sym_tryrecv = 168, - anon_sym_complex = 169, - anon_sym_59 = 170, - anon_sym_rerank = 171, - anon_sym_60 = 172, - anon_sym_fix = 173, - anon_sym_61 = 174, - anon_sym_reduce = 175, - anon_sym_SLASH = 176, - anon_sym_scan = 177, - anon_sym_BSLASH = 178, - anon_sym_each = 179, - anon_sym_62 = 180, - anon_sym_rows = 181, - anon_sym_63 = 182, - anon_sym_repeat = 183, - anon_sym_64 = 184, - anon_sym_dip = 185, - anon_sym_65 = 186, - anon_sym_gap = 187, - anon_sym_66 = 188, - anon_sym_invert = 189, - anon_sym_67 = 190, - anon_sym_spawn = 191, - anon_sym_pack = 192, - anon_sym_68 = 193, - anon_sym_rectify = 194, - anon_sym_69 = 195, - anon_sym_this = 196, - anon_sym_70 = 197, - anon_sym_recur = 198, - anon_sym_71 = 199, - anon_sym_fold = 200, - anon_sym_72 = 201, - anon_sym_table = 202, - anon_sym_73 = 203, - anon_sym_cross = 204, - anon_sym_74 = 205, - anon_sym_group = 206, - anon_sym_75 = 207, - anon_sym_partition = 208, - anon_sym_76 = 209, - anon_sym_both = 210, - anon_sym_77 = 211, - anon_sym_bracket = 212, - anon_sym_78 = 213, - anon_sym_fork = 214, - anon_sym_79 = 215, - anon_sym_under = 216, - anon_sym_80 = 217, - anon_sym_fill = 218, - anon_sym_81 = 219, - anon_sym_try = 220, - anon_sym_82 = 221, - anon_sym_do = 222, - anon_sym_83 = 223, - anon_sym_all = 224, - anon_sym_84 = 225, - anon_sym_setinv = 226, - anon_sym_setunder = 227, - anon_sym_85 = 228, - anon_sym_86 = 229, - anon_sym_87 = 230, - anon_sym_88 = 231, - anon_sym_89 = 232, - anon_sym_90 = 233, - anon_sym_91 = 234, - anon_sym_92 = 235, - anon_sym_93 = 236, - anon_sym_94 = 237, - anon_sym_95 = 238, - anon_sym_96 = 239, - sym_emptyMultiLineString = 240, - sym__endOfLine = 241, - sym_source_file = 242, - sym_PROGRAM = 243, - sym_binding = 244, - sym_module = 245, - sym_segment = 246, - sym_term = 247, - sym_inlineFunction = 248, - sym_switchFunctions = 249, - sym_array = 250, - sym_number = 251, - sym_otherConstant = 252, - sym_character = 253, - sym_signature = 254, - sym_placeHolder = 255, + anon_sym_SQUOTE = 30, + anon_sym_SQUOTE_SQUOTE = 31, + anon_sym_eta = 32, + anon_sym_2 = 33, + anon_sym_pi = 34, + anon_sym_3 = 35, + anon_sym_tau = 36, + anon_sym_4 = 37, + anon_sym_infinity = 38, + anon_sym_5 = 39, + anon_sym_e = 40, + anon_sym_NaN = 41, + anon_sym_NumProcs = 42, + anon_sym_DOT = 43, + anon_sym_COMMA = 44, + anon_sym_COLON = 45, + anon_sym_SEMI = 46, + anon_sym_identity = 47, + anon_sym_id = 48, + anon_sym_6 = 49, + anon_sym_not = 50, + anon_sym_7 = 51, + anon_sym_sign = 52, + anon_sym_8 = 53, + anon_sym_BQUOTE = 54, + anon_sym_9 = 55, + anon_sym_absolutevalue = 56, + anon_sym_10 = 57, + anon_sym_sqrt = 58, + anon_sym_11 = 59, + anon_sym_sine = 60, + anon_sym_12 = 61, + anon_sym_floor = 62, + anon_sym_13 = 63, + anon_sym_ceiling = 64, + anon_sym_14 = 65, + anon_sym_round = 66, + anon_sym_15 = 67, + anon_sym_EQ = 68, + anon_sym_BANG_EQ = 69, + anon_sym_16 = 70, + anon_sym_LT = 71, + anon_sym_LT_EQ = 72, + anon_sym_17 = 73, + anon_sym_GT = 74, + anon_sym_GT_EQ = 75, + anon_sym_18 = 76, + anon_sym_PLUS = 77, + anon_sym_DASH = 78, + anon_sym_STAR = 79, + anon_sym_19 = 80, + anon_sym_PERCENT = 81, + anon_sym_20 = 82, + anon_sym_modulus = 83, + anon_sym_21 = 84, + anon_sym_power = 85, + anon_sym_22 = 86, + anon_sym_logarithm = 87, + anon_sym_23 = 88, + anon_sym_minimum = 89, + anon_sym_24 = 90, + anon_sym_maximum = 91, + anon_sym_25 = 92, + anon_sym_atangent = 93, + anon_sym_26 = 94, + anon_sym_length = 95, + anon_sym_27 = 96, + anon_sym_shape = 97, + anon_sym_28 = 98, + anon_sym_range = 99, + anon_sym_29 = 100, + anon_sym_first = 101, + anon_sym_30 = 102, + anon_sym_reverse = 103, + anon_sym_31 = 104, + anon_sym_deshape = 105, + anon_sym_32 = 106, + anon_sym_bits = 107, + anon_sym_33 = 108, + anon_sym_transpose = 109, + anon_sym_34 = 110, + anon_sym_rise = 111, + anon_sym_35 = 112, + anon_sym_fall = 113, + anon_sym_36 = 114, + anon_sym_where = 115, + anon_sym_37 = 116, + anon_sym_classify = 117, + anon_sym_38 = 118, + anon_sym_deduplicate = 119, + anon_sym_39 = 120, + anon_sym_box = 121, + anon_sym_40 = 122, + anon_sym_unbox = 123, + anon_sym_41 = 124, + anon_sym_match = 125, + anon_sym_42 = 126, + anon_sym_couple = 127, + anon_sym_43 = 128, + anon_sym_join = 129, + anon_sym_44 = 130, + anon_sym_select = 131, + anon_sym_45 = 132, + anon_sym_pick = 133, + anon_sym_46 = 134, + anon_sym_reshape = 135, + anon_sym_47 = 136, + anon_sym_take = 137, + anon_sym_48 = 138, + anon_sym_drop = 139, + anon_sym_49 = 140, + anon_sym_rotate = 141, + anon_sym_50 = 142, + anon_sym_windows = 143, + anon_sym_51 = 144, + anon_sym_keep = 145, + anon_sym_52 = 146, + anon_sym_find = 147, + anon_sym_53 = 148, + anon_sym_member = 149, + anon_sym_54 = 150, + anon_sym_indexof = 151, + anon_sym_55 = 152, + anon_sym_assert = 153, + anon_sym_56 = 154, + anon_sym_wait = 155, + anon_sym_parse = 156, + anon_sym_random = 157, + anon_sym_57 = 158, + anon_sym_gen = 159, + anon_sym_deal = 160, + anon_sym_tag = 161, + anon_sym_now = 162, + anon_sym_type = 163, + anon_sym_58 = 164, + anon_sym_dump = 165, + anon_sym_regex = 166, + anon_sym_utf = 167, + anon_sym_send = 168, + anon_sym_recv = 169, + anon_sym_tryrecv = 170, + anon_sym_complex = 171, + anon_sym_59 = 172, + anon_sym_rerank = 173, + anon_sym_60 = 174, + anon_sym_fix = 175, + anon_sym_61 = 176, + anon_sym_QMARK = 177, + anon_sym_reduce = 178, + anon_sym_SLASH = 179, + anon_sym_scan = 180, + anon_sym_BSLASH = 181, + anon_sym_each = 182, + anon_sym_62 = 183, + anon_sym_rows = 184, + anon_sym_63 = 185, + anon_sym_repeat = 186, + anon_sym_64 = 187, + anon_sym_dip = 188, + anon_sym_65 = 189, + anon_sym_gap = 190, + anon_sym_66 = 191, + anon_sym_invert = 192, + anon_sym_67 = 193, + anon_sym_spawn = 194, + anon_sym_pack = 195, + anon_sym_68 = 196, + anon_sym_rectify = 197, + anon_sym_69 = 198, + anon_sym_this = 199, + anon_sym_70 = 200, + anon_sym_recur = 201, + anon_sym_71 = 202, + anon_sym_fold = 203, + anon_sym_72 = 204, + anon_sym_table = 205, + anon_sym_73 = 206, + anon_sym_cross = 207, + anon_sym_74 = 208, + anon_sym_group = 209, + anon_sym_75 = 210, + anon_sym_partition = 211, + anon_sym_76 = 212, + anon_sym_both = 213, + anon_sym_77 = 214, + anon_sym_bracket = 215, + anon_sym_78 = 216, + anon_sym_fork = 217, + anon_sym_79 = 218, + anon_sym_under = 219, + anon_sym_80 = 220, + anon_sym_fill = 221, + anon_sym_81 = 222, + anon_sym_try = 223, + anon_sym_82 = 224, + anon_sym_do = 225, + anon_sym_83 = 226, + anon_sym_all = 227, + anon_sym_84 = 228, + anon_sym_setinv = 229, + anon_sym_setunder = 230, + anon_sym_85 = 231, + anon_sym_86 = 232, + anon_sym_87 = 233, + anon_sym_88 = 234, + anon_sym_89 = 235, + anon_sym_90 = 236, + anon_sym_91 = 237, + anon_sym_92 = 238, + sym_emptyMultiLineString = 239, + sym__endOfLine = 240, + sym_source_file = 241, + sym_PROGRAM = 242, + sym_binding = 243, + sym_module = 244, + sym_segment = 245, + sym_term = 246, + sym_inlineFunction = 247, + sym_switchFunctions = 248, + sym_array = 249, + sym_number = 250, + sym_otherConstant = 251, + sym_character = 252, + sym_signature = 253, + sym_placeHolder = 254, + sym_formatter = 255, sym_branchSeparator = 256, sym_compound = 257, sym_primitive = 258, @@ -326,6 +326,8 @@ static const char * const ts_symbol_names[] = { [sym_underscore] = "underscore", [sym_leftArrow] = "leftArrow", [anon_sym_CARET] = "^", + [anon_sym_SQUOTE] = "'", + [anon_sym_SQUOTE_SQUOTE] = "''", [anon_sym_eta] = "eta", [anon_sym_2] = "η", [anon_sym_pi] = "pi", @@ -471,6 +473,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_60] = "☇", [anon_sym_fix] = "fix", [anon_sym_61] = "¤", + [anon_sym_QMARK] = "\?", [anon_sym_reduce] = "reduce", [anon_sym_SLASH] = "/", [anon_sym_scan] = "scan", @@ -531,11 +534,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_89] = "⍛", [anon_sym_90] = "⌂", [anon_sym_91] = "↰", - [anon_sym_92] = "◳", - [anon_sym_93] = "≑", - [anon_sym_94] = "≐", - [anon_sym_95] = "∺", - [anon_sym_96] = "⟜", + [anon_sym_92] = "⟜", [sym_emptyMultiLineString] = "emptyMultiLineString", [sym__endOfLine] = "_endOfLine", [sym_source_file] = "source_file", @@ -552,6 +551,7 @@ static const char * const ts_symbol_names[] = { [sym_character] = "character", [sym_signature] = "signature", [sym_placeHolder] = "placeHolder", + [sym_formatter] = "formatter", [sym_branchSeparator] = "branchSeparator", [sym_compound] = "compound", [sym_primitive] = "primitive", @@ -598,6 +598,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_underscore] = sym_underscore, [sym_leftArrow] = sym_leftArrow, [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_SQUOTE_SQUOTE] = anon_sym_SQUOTE_SQUOTE, [anon_sym_eta] = anon_sym_eta, [anon_sym_2] = anon_sym_2, [anon_sym_pi] = anon_sym_pi, @@ -743,6 +745,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_60] = anon_sym_60, [anon_sym_fix] = anon_sym_fix, [anon_sym_61] = anon_sym_61, + [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_reduce] = anon_sym_reduce, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_scan] = anon_sym_scan, @@ -804,10 +807,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_90] = anon_sym_90, [anon_sym_91] = anon_sym_91, [anon_sym_92] = anon_sym_92, - [anon_sym_93] = anon_sym_93, - [anon_sym_94] = anon_sym_94, - [anon_sym_95] = anon_sym_95, - [anon_sym_96] = anon_sym_96, [sym_emptyMultiLineString] = sym_emptyMultiLineString, [sym__endOfLine] = sym__endOfLine, [sym_source_file] = sym_source_file, @@ -824,6 +823,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_character] = sym_character, [sym_signature] = sym_signature, [sym_placeHolder] = sym_placeHolder, + [sym_formatter] = sym_formatter, [sym_branchSeparator] = sym_branchSeparator, [sym_compound] = sym_compound, [sym_primitive] = sym_primitive, @@ -960,6 +960,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE_SQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_eta] = { .visible = true, .named = false, @@ -1540,6 +1548,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, [anon_sym_reduce] = { .visible = true, .named = false, @@ -1784,22 +1796,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_93] = { - .visible = true, - .named = false, - }, - [anon_sym_94] = { - .visible = true, - .named = false, - }, - [anon_sym_95] = { - .visible = true, - .named = false, - }, - [anon_sym_96] = { - .visible = true, - .named = false, - }, [sym_emptyMultiLineString] = { .visible = true, .named = true, @@ -1864,6 +1860,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_formatter] = { + .visible = true, + .named = true, + }, [sym_branchSeparator] = { .visible = true, .named = true, @@ -1933,81 +1933,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 4, - [7] = 7, + [6] = 6, + [7] = 6, [8] = 8, - [9] = 9, + [9] = 8, [10] = 10, [11] = 11, - [12] = 11, + [12] = 8, [13] = 11, - [14] = 11, + [14] = 14, [15] = 8, - [16] = 16, + [16] = 10, [17] = 17, - [18] = 10, + [18] = 18, [19] = 19, [20] = 20, - [21] = 17, + [21] = 21, [22] = 22, - [23] = 23, + [23] = 17, [24] = 24, [25] = 25, - [26] = 10, - [27] = 27, + [26] = 26, + [27] = 17, [28] = 28, - [29] = 16, - [30] = 30, - [31] = 25, - [32] = 24, - [33] = 20, - [34] = 20, - [35] = 24, - [36] = 17, - [37] = 27, - [38] = 30, - [39] = 28, - [40] = 16, - [41] = 30, - [42] = 19, - [43] = 28, - [44] = 27, - [45] = 25, - [46] = 23, - [47] = 23, - [48] = 19, + [29] = 19, + [30] = 18, + [31] = 20, + [32] = 25, + [33] = 33, + [34] = 26, + [35] = 26, + [36] = 20, + [37] = 28, + [38] = 21, + [39] = 24, + [40] = 22, + [41] = 24, + [42] = 28, + [43] = 22, + [44] = 21, + [45] = 19, + [46] = 18, + [47] = 10, + [48] = 25, [49] = 49, [50] = 50, - [51] = 49, + [51] = 51, [52] = 52, [53] = 53, [54] = 49, [55] = 55, - [56] = 56, - [57] = 50, - [58] = 50, - [59] = 59, - [60] = 53, - [61] = 55, - [62] = 62, - [63] = 55, - [64] = 53, - [65] = 53, - [66] = 53, - [67] = 67, - [68] = 56, - [69] = 50, - [70] = 55, - [71] = 55, + [56] = 50, + [57] = 57, + [58] = 51, + [59] = 52, + [60] = 60, + [61] = 50, + [62] = 49, + [63] = 63, + [64] = 52, + [65] = 57, + [66] = 51, + [67] = 50, + [68] = 52, + [69] = 52, + [70] = 51, + [71] = 50, [72] = 72, - [73] = 72, + [73] = 73, [74] = 74, - [75] = 75, - [76] = 72, - [77] = 74, - [78] = 75, - [79] = 74, - [80] = 75, + [75] = 72, + [76] = 73, + [77] = 73, + [78] = 74, + [79] = 72, + [80] = 74, [81] = 81, [82] = 82, [83] = 83, @@ -2035,144 +2035,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [105] = 105, [106] = 106, [107] = 107, - [108] = 82, - [109] = 84, - [110] = 83, - [111] = 111, + [108] = 108, + [109] = 82, + [110] = 84, + [111] = 83, [112] = 112, [113] = 113, [114] = 114, [115] = 115, - [116] = 91, - [117] = 101, - [118] = 93, - [119] = 106, - [120] = 90, + [116] = 116, + [117] = 92, + [118] = 118, + [119] = 108, + [120] = 91, [121] = 121, - [122] = 89, - [123] = 88, - [124] = 94, - [125] = 86, - [126] = 102, - [127] = 107, + [122] = 90, + [123] = 94, + [124] = 88, + [125] = 97, + [126] = 86, + [127] = 89, [128] = 96, - [129] = 104, + [129] = 106, [130] = 95, - [131] = 115, + [131] = 116, [132] = 132, - [133] = 87, - [134] = 97, + [133] = 105, + [134] = 87, [135] = 135, - [136] = 98, - [137] = 99, - [138] = 100, - [139] = 105, - [140] = 92, - [141] = 85, - [142] = 142, - [143] = 103, - [144] = 144, - [145] = 145, + [136] = 103, + [137] = 85, + [138] = 107, + [139] = 98, + [140] = 99, + [141] = 100, + [142] = 101, + [143] = 102, + [144] = 104, + [145] = 93, [146] = 146, - [147] = 144, - [148] = 145, - [149] = 146, - [150] = 146, - [151] = 145, - [152] = 144, - [153] = 153, - [154] = 144, - [155] = 155, - [156] = 145, - [157] = 144, - [158] = 145, - [159] = 146, - [160] = 146, - [161] = 161, - [162] = 162, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 148, + [151] = 151, + [152] = 148, + [153] = 151, + [154] = 149, + [155] = 149, + [156] = 151, + [157] = 157, + [158] = 151, + [159] = 159, + [160] = 151, + [161] = 149, + [162] = 148, [163] = 163, - [164] = 164, - [165] = 165, - [166] = 164, + [164] = 149, + [165] = 148, + [166] = 166, [167] = 167, - [168] = 83, - [169] = 84, + [168] = 168, + [169] = 167, [170] = 82, - [171] = 98, - [172] = 97, - [173] = 99, - [174] = 93, - [175] = 86, - [176] = 96, - [177] = 95, - [178] = 178, - [179] = 179, - [180] = 179, - [181] = 178, - [182] = 179, - [183] = 178, - [184] = 87, - [185] = 97, - [186] = 186, - [187] = 94, - [188] = 91, - [189] = 189, + [171] = 84, + [172] = 83, + [173] = 100, + [174] = 99, + [175] = 93, + [176] = 97, + [177] = 96, + [178] = 95, + [179] = 98, + [180] = 180, + [181] = 181, + [182] = 180, + [183] = 181, + [184] = 181, + [185] = 180, + [186] = 85, + [187] = 105, + [188] = 92, + [189] = 91, [190] = 90, [191] = 89, - [192] = 102, - [193] = 88, - [194] = 92, - [195] = 107, - [196] = 95, - [197] = 106, - [198] = 93, - [199] = 104, - [200] = 85, - [201] = 86, - [202] = 100, - [203] = 101, - [204] = 103, - [205] = 105, - [206] = 96, - [207] = 132, + [192] = 104, + [193] = 87, + [194] = 107, + [195] = 98, + [196] = 88, + [197] = 94, + [198] = 86, + [199] = 93, + [200] = 103, + [201] = 96, + [202] = 101, + [203] = 102, + [204] = 204, + [205] = 108, + [206] = 97, + [207] = 106, [208] = 208, - [209] = 209, - [210] = 210, + [209] = 95, + [210] = 132, [211] = 211, [212] = 212, - [213] = 213, + [213] = 212, [214] = 214, [215] = 215, - [216] = 211, - [217] = 211, - [218] = 218, - [219] = 213, - [220] = 213, - [221] = 215, - [222] = 222, - [223] = 211, - [224] = 215, - [225] = 225, - [226] = 212, - [227] = 215, - [228] = 215, - [229] = 225, - [230] = 230, - [231] = 95, + [216] = 216, + [217] = 216, + [218] = 212, + [219] = 219, + [220] = 214, + [221] = 214, + [222] = 216, + [223] = 223, + [224] = 212, + [225] = 214, + [226] = 214, + [227] = 227, + [228] = 219, + [229] = 216, + [230] = 212, + [231] = 216, [232] = 232, [233] = 233, - [234] = 213, - [235] = 211, - [236] = 96, - [237] = 86, - [238] = 93, - [239] = 239, - [240] = 213, - [241] = 212, - [242] = 242, - [243] = 243, - [244] = 244, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 223, + [240] = 95, + [241] = 96, + [242] = 97, + [243] = 93, + [244] = 223, [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -2531,27 +2534,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(211); - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(409); if (lookahead == '$') ADVANCE(4); - if (lookahead == '%') ADVANCE(549); + if (lookahead == '%') ADVANCE(551); if (lookahead == '&') ADVANCE(207); + if (lookahead == '\'') ADVANCE(496); if (lookahead == '(') ADVANCE(487); if (lookahead == ')') ADVANCE(488); - if (lookahead == '*') ADVANCE(547); - if (lookahead == '+') ADVANCE(544); - if (lookahead == ',') ADVANCE(508); - if (lookahead == '-') ADVANCE(546); - if (lookahead == '.') ADVANCE(507); - if (lookahead == '/') ADVANCE(646); - if (lookahead == ':') ADVANCE(509); - if (lookahead == ';') ADVANCE(510); - if (lookahead == '<') ADVANCE(538); - if (lookahead == '=') ADVANCE(535); - if (lookahead == '>') ADVANCE(541); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(548); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(649); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); + if (lookahead == '?') ADVANCE(647); if (lookahead == '@') ADVANCE(11); if (lookahead == 'A') ADVANCE(372); if (lookahead == 'E') ADVANCE(402); @@ -2560,16 +2565,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(325); if (lookahead == 'S') ADVANCE(289); if (lookahead == '[') ADVANCE(491); - if (lookahead == '\\') ADVANCE(648); + if (lookahead == '\\') ADVANCE(651); if (lookahead == ']') ADVANCE(492); if (lookahead == '^') ADVANCE(495); if (lookahead == '_') ADVANCE(493); - if (lookahead == '`') ADVANCE(519); + if (lookahead == '`') ADVANCE(521); if (lookahead == 'a') ADVANCE(270); if (lookahead == 'b') ADVANCE(313); if (lookahead == 'c') ADVANCE(290); if (lookahead == 'd') ADVANCE(291); - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(506); if (lookahead == 'f') ADVANCE(257); if (lookahead == 'g') ADVANCE(255); if (lookahead == 'i') ADVANCE(283); @@ -2588,103 +2593,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(489); if (lookahead == '|') ADVANCE(230); if (lookahead == '}') ADVANCE(490); - if (lookahead == 164) ADVANCE(644); - if (lookahead == 172) ADVANCE(516); - if (lookahead == 175) ADVANCE(521); - if (lookahead == 177) ADVANCE(518); - if (lookahead == 183) ADVANCE(701); - if (lookahead == 215) ADVANCE(548); - if (lookahead == 247) ADVANCE(550); - if (lookahead == 951) ADVANCE(497); - if (lookahead == 960) ADVANCE(499); - if (lookahead == 964) ADVANCE(501); - if (lookahead == 8261) ADVANCE(534); - if (lookahead == 8319) ADVANCE(554); - if (lookahead == 8345) ADVANCE(556); - if (lookahead == 8450) ADVANCE(640); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(704); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); if (lookahead == 8592) ADVANCE(494); - if (lookahead == 8594) ADVANCE(699); - if (lookahead == 8600) ADVANCE(608); - if (lookahead == 8601) ADVANCE(606); - if (lookahead == 8613) ADVANCE(560); - if (lookahead == 8615) ADVANCE(558); - if (lookahead == 8619) ADVANCE(669); - if (lookahead == 8620) ADVANCE(667); - if (lookahead == 8623) ADVANCE(604); - if (lookahead == 8624) ADVANCE(704); - if (lookahead == 8635) ADVANCE(610); - if (lookahead == 8652) ADVANCE(572); - if (lookahead == 8673) ADVANCE(568); - if (lookahead == 8714) ADVANCE(618); - if (lookahead == 8728) ADVANCE(514); - if (lookahead == 8730) ADVANCE(526); - if (lookahead == 8734) ADVANCE(503); - if (lookahead == 8736) ADVANCE(562); - if (lookahead == 8743) ADVANCE(671); - if (lookahead == 8745) ADVANCE(681); - if (lookahead == 8757) ADVANCE(650); - if (lookahead == 8759) ADVANCE(700); - if (lookahead == 8762) ADVANCE(708); - if (lookahead == 8781) ADVANCE(594); - if (lookahead == 8784) ADVANCE(707); - if (lookahead == 8785) ADVANCE(706); - if (lookahead == 8800) ADVANCE(537); - if (lookahead == 8801) ADVANCE(652); - if (lookahead == 8804) ADVANCE(540); - if (lookahead == 8805) ADVANCE(543); - if (lookahead == 8834) ADVANCE(598); - if (lookahead == 8835) ADVANCE(685); - if (lookahead == 8847) ADVANCE(600); - if (lookahead == 8848) ADVANCE(663); - if (lookahead == 8851) ADVANCE(683); - if (lookahead == 8852) ADVANCE(592); - if (lookahead == 8853) ADVANCE(677); - if (lookahead == 8855) ADVANCE(620); - if (lookahead == 8857) ADVANCE(656); - if (lookahead == 8858) ADVANCE(584); - if (lookahead == 8859) ADVANCE(586); - if (lookahead == 8860) ADVANCE(679); - if (lookahead == 8861) ADVANCE(588); - if (lookahead == 8862) ADVANCE(673); - if (lookahead == 8863) ADVANCE(596); - if (lookahead == 8864) ADVANCE(675); - if (lookahead == 8865) ADVANCE(602); - if (lookahead == 8866) ADVANCE(570); - if (lookahead == 8901) ADVANCE(658); - if (lookahead == 8916) ADVANCE(695); - if (lookahead == 8943) ADVANCE(576); - if (lookahead == 8962) ADVANCE(703); - if (lookahead == 8965) ADVANCE(665); - if (lookahead == 8968) ADVANCE(532); - if (lookahead == 8970) ADVANCE(530); - if (lookahead == 8981) ADVANCE(616); - if (lookahead == 9013) ADVANCE(524); - if (lookahead == 9033) ADVANCE(578); - if (lookahead == 9039) ADVANCE(580); - if (lookahead == 9046) ADVANCE(582); - if (lookahead == 9048) ADVANCE(660); - if (lookahead == 9051) ADVANCE(702); - if (lookahead == 9052) ADVANCE(687); - if (lookahead == 9058) ADVANCE(693); - if (lookahead == 9059) ADVANCE(691); - if (lookahead == 9060) ADVANCE(622); - if (lookahead == 9061) ADVANCE(654); + if (lookahead == 8594) ADVANCE(702); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(672); + if (lookahead == 8620) ADVANCE(670); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(707); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(674); + if (lookahead == 8745) ADVANCE(684); + if (lookahead == 8757) ADVANCE(653); + if (lookahead == 8759) ADVANCE(703); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(655); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(688); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(666); + if (lookahead == 8851) ADVANCE(686); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(680); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(659); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(682); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(676); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(678); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(661); + if (lookahead == 8916) ADVANCE(698); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(706); + if (lookahead == 8965) ADVANCE(668); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(663); + if (lookahead == 9051) ADVANCE(705); + if (lookahead == 9052) ADVANCE(690); + if (lookahead == 9058) ADVANCE(696); + if (lookahead == 9059) ADVANCE(694); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(657); if (lookahead == 9084) ADVANCE(225); - if (lookahead == 9633) ADVANCE(590); - if (lookahead == 9651) ADVANCE(566); - if (lookahead == 9661) ADVANCE(614); - if (lookahead == 9675) ADVANCE(528); - if (lookahead == 9707) ADVANCE(612); - if (lookahead == 9715) ADVANCE(705); - if (lookahead == 9727) ADVANCE(552); - if (lookahead == 9735) ADVANCE(642); - if (lookahead == 9837) ADVANCE(574); - if (lookahead == 9858) ADVANCE(626); - if (lookahead == 10085) ADVANCE(698); - if (lookahead == 10204) ADVANCE(709); - if (lookahead == 10747) ADVANCE(564); - if (lookahead == 11034) ADVANCE(689); - if (lookahead == 11822) ADVANCE(632); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(701); + if (lookahead == 10204) ADVANCE(708); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(692); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(0) if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(407); @@ -2693,29 +2694,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_1(lookahead)) ADVANCE(233); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '#') ADVANCE(409); - if (lookahead == '%') ADVANCE(549); + if (lookahead == '%') ADVANCE(551); if (lookahead == '&') ADVANCE(207); if (lookahead == '(') ADVANCE(487); if (lookahead == ')') ADVANCE(488); - if (lookahead == '*') ADVANCE(547); - if (lookahead == '+') ADVANCE(544); - if (lookahead == ',') ADVANCE(508); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '.') ADVANCE(507); - if (lookahead == ':') ADVANCE(509); - if (lookahead == ';') ADVANCE(510); - if (lookahead == '<') ADVANCE(538); - if (lookahead == '=') ADVANCE(535); - if (lookahead == '>') ADVANCE(541); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(509); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); + if (lookahead == '?') ADVANCE(647); if (lookahead == '_') ADVANCE(493); - if (lookahead == '`') ADVANCE(519); + if (lookahead == '`') ADVANCE(521); if (lookahead == 'a') ADVANCE(269); if (lookahead == 'b') ADVANCE(315); if (lookahead == 'c') ADVANCE(294); @@ -2735,62 +2737,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(347); if (lookahead == 'w') ADVANCE(256); if (lookahead == '|') ADVANCE(230); - if (lookahead == 164) ADVANCE(644); - if (lookahead == 172) ADVANCE(516); - if (lookahead == 175) ADVANCE(520); - if (lookahead == 177) ADVANCE(518); - if (lookahead == 215) ADVANCE(548); - if (lookahead == 247) ADVANCE(550); - if (lookahead == 8261) ADVANCE(534); - if (lookahead == 8319) ADVANCE(554); - if (lookahead == 8345) ADVANCE(556); - if (lookahead == 8450) ADVANCE(640); - if (lookahead == 8600) ADVANCE(608); - if (lookahead == 8601) ADVANCE(606); - if (lookahead == 8613) ADVANCE(560); - if (lookahead == 8615) ADVANCE(558); - if (lookahead == 8623) ADVANCE(604); - if (lookahead == 8635) ADVANCE(610); - if (lookahead == 8652) ADVANCE(572); - if (lookahead == 8673) ADVANCE(568); - if (lookahead == 8714) ADVANCE(618); - if (lookahead == 8728) ADVANCE(514); - if (lookahead == 8730) ADVANCE(526); - if (lookahead == 8736) ADVANCE(562); - if (lookahead == 8781) ADVANCE(594); - if (lookahead == 8800) ADVANCE(537); - if (lookahead == 8804) ADVANCE(540); - if (lookahead == 8805) ADVANCE(543); - if (lookahead == 8834) ADVANCE(598); - if (lookahead == 8847) ADVANCE(600); - if (lookahead == 8852) ADVANCE(592); - if (lookahead == 8855) ADVANCE(620); - if (lookahead == 8858) ADVANCE(584); - if (lookahead == 8859) ADVANCE(586); - if (lookahead == 8861) ADVANCE(588); - if (lookahead == 8863) ADVANCE(596); - if (lookahead == 8865) ADVANCE(602); - if (lookahead == 8866) ADVANCE(570); - if (lookahead == 8943) ADVANCE(576); - if (lookahead == 8968) ADVANCE(532); - if (lookahead == 8970) ADVANCE(530); - if (lookahead == 8981) ADVANCE(616); - if (lookahead == 9013) ADVANCE(524); - if (lookahead == 9033) ADVANCE(578); - if (lookahead == 9039) ADVANCE(580); - if (lookahead == 9046) ADVANCE(582); - if (lookahead == 9060) ADVANCE(622); - if (lookahead == 9633) ADVANCE(590); - if (lookahead == 9651) ADVANCE(566); - if (lookahead == 9661) ADVANCE(614); - if (lookahead == 9675) ADVANCE(528); - if (lookahead == 9707) ADVANCE(612); - if (lookahead == 9727) ADVANCE(552); - if (lookahead == 9735) ADVANCE(642); - if (lookahead == 9837) ADVANCE(574); - if (lookahead == 9858) ADVANCE(626); - if (lookahead == 10747) ADVANCE(564); - if (lookahead == 11822) ADVANCE(632); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(522); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(2) if (('e' <= lookahead && lookahead <= 'z')) ADVANCE(405); @@ -2798,10 +2800,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(233); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(710); + if (lookahead == '\n') ADVANCE(709); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(710); + if (lookahead == '\n') ADVANCE(709); if (lookahead == '\r') ADVANCE(3); if (lookahead == ' ') ADVANCE(229); if (lookahead == '"') ADVANCE(7); @@ -2827,7 +2829,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(486); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(536); + if (lookahead == '=') ADVANCE(538); END_STATE(); case 11: if (lookahead == '\\') ADVANCE(177); @@ -2876,17 +2878,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(19); END_STATE(); case 26: - if (lookahead == 'd') ADVANCE(615); + if (lookahead == 'd') ADVANCE(617); END_STATE(); case 27: if (lookahead == 'd') ADVANCE(120); if (lookahead == 'g') ADVANCE(39); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(636); + if (lookahead == 'd') ADVANCE(638); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(533); + if (lookahead == 'd') ADVANCE(535); END_STATE(); case 30: if (lookahead == 'd') ADVANCE(118); @@ -2901,61 +2903,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(193); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(579); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(527); + if (lookahead == 'e') ADVANCE(529); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(605); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(631); + if (lookahead == 'e') ADVANCE(633); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(624); + if (lookahead == 'e') ADVANCE(626); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(569); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(565); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(672); + if (lookahead == 'e') ADVANCE(675); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(583); + if (lookahead == 'e') ADVANCE(585); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'e') ADVANCE(597); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(645); + if (lookahead == 'e') ADVANCE(648); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(609); + if (lookahead == 'e') ADVANCE(611); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'e') ADVANCE(575); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(603); + if (lookahead == 'e') ADVANCE(605); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(571); + if (lookahead == 'e') ADVANCE(573); END_STATE(); case 49: if (lookahead == 'e') ADVANCE(6); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(577); + if (lookahead == 'e') ADVANCE(579); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(587); + if (lookahead == 'e') ADVANCE(589); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(523); + if (lookahead == 'e') ADVANCE(525); END_STATE(); case 53: if (lookahead == 'e') ADVANCE(190); @@ -2991,13 +2993,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(194); END_STATE(); case 64: - if (lookahead == 'f') ADVANCE(619); + if (lookahead == 'f') ADVANCE(621); END_STATE(); case 65: if (lookahead == 'f') ADVANCE(195); END_STATE(); case 66: - if (lookahead == 'g') ADVANCE(531); + if (lookahead == 'g') ADVANCE(533); END_STATE(); case 67: if (lookahead == 'g') ADVANCE(168); @@ -3009,10 +3011,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(14); END_STATE(); case 70: - if (lookahead == 'h') ADVANCE(593); + if (lookahead == 'h') ADVANCE(595); END_STATE(); case 71: - if (lookahead == 'h') ADVANCE(563); + if (lookahead == 'h') ADVANCE(565); END_STATE(); case 72: if (lookahead == 'h') ADVANCE(100); @@ -3054,10 +3056,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(102); END_STATE(); case 85: - if (lookahead == 'k') ADVANCE(601); + if (lookahead == 'k') ADVANCE(603); END_STATE(); case 86: - if (lookahead == 'k') ADVANCE(641); + if (lookahead == 'k') ADVANCE(643); END_STATE(); case 87: if (lookahead == 'k') ADVANCE(62); @@ -3066,10 +3068,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(78); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(628); + if (lookahead == 'l') ADVANCE(630); END_STATE(); case 90: - if (lookahead == 'l') ADVANCE(581); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 91: if (lookahead == 'l') ADVANCE(184); @@ -3090,16 +3092,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(43); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(625); + if (lookahead == 'm') ADVANCE(627); END_STATE(); case 98: - if (lookahead == 'm') ADVANCE(559); + if (lookahead == 'm') ADVANCE(561); END_STATE(); case 99: - if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'm') ADVANCE(559); END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(555); + if (lookahead == 'm') ADVANCE(557); END_STATE(); case 101: if (lookahead == 'm') ADVANCE(179); @@ -3111,22 +3113,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(68); END_STATE(); case 104: - if (lookahead == 'n') ADVANCE(597); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 105: if (lookahead == 'n') ADVANCE(29); END_STATE(); case 106: - if (lookahead == 'n') ADVANCE(517); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 107: if (lookahead == 'n') ADVANCE(186); END_STATE(); case 108: - if (lookahead == 'n') ADVANCE(661); + if (lookahead == 'n') ADVANCE(664); END_STATE(); case 109: - if (lookahead == 'n') ADVANCE(678); + if (lookahead == 'n') ADVANCE(681); END_STATE(); case 110: if (lookahead == 'n') ADVANCE(66); @@ -3174,16 +3176,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(157); END_STATE(); case 125: - if (lookahead == 'p') ADVANCE(607); + if (lookahead == 'p') ADVANCE(609); END_STATE(); case 126: - if (lookahead == 'p') ADVANCE(633); + if (lookahead == 'p') ADVANCE(635); END_STATE(); case 127: - if (lookahead == 'p') ADVANCE(613); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 128: - if (lookahead == 'p') ADVANCE(676); + if (lookahead == 'p') ADVANCE(679); END_STATE(); case 129: if (lookahead == 'p') ADVANCE(95); @@ -3207,22 +3209,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(96); END_STATE(); case 136: - if (lookahead == 'r') ADVANCE(529); + if (lookahead == 'r') ADVANCE(531); END_STATE(); case 137: - if (lookahead == 'r') ADVANCE(553); + if (lookahead == 'r') ADVANCE(555); END_STATE(); case 138: - if (lookahead == 'r') ADVANCE(668); + if (lookahead == 'r') ADVANCE(671); END_STATE(); case 139: - if (lookahead == 'r') ADVANCE(686); + if (lookahead == 'r') ADVANCE(689); END_STATE(); case 140: - if (lookahead == 'r') ADVANCE(617); + if (lookahead == 'r') ADVANCE(619); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(697); + if (lookahead == 'r') ADVANCE(700); END_STATE(); case 142: if (lookahead == 'r') ADVANCE(156); @@ -3243,7 +3245,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(82); END_STATE(); case 148: - if (lookahead == 's') ADVANCE(575); + if (lookahead == 's') ADVANCE(577); END_STATE(); case 149: if (lookahead == 's') ADVANCE(158); @@ -3252,13 +3254,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(161); END_STATE(); case 151: - if (lookahead == 's') ADVANCE(674); + if (lookahead == 's') ADVANCE(677); END_STATE(); case 152: - if (lookahead == 's') ADVANCE(551); + if (lookahead == 's') ADVANCE(553); END_STATE(); case 153: - if (lookahead == 's') ADVANCE(611); + if (lookahead == 's') ADVANCE(613); END_STATE(); case 154: if (lookahead == 's') ADVANCE(38); @@ -3276,31 +3278,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(83); END_STATE(); case 159: - if (lookahead == 't') ADVANCE(525); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(623); + if (lookahead == 't') ADVANCE(625); END_STATE(); case 161: - if (lookahead == 't') ADVANCE(569); + if (lookahead == 't') ADVANCE(571); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(621); + if (lookahead == 't') ADVANCE(623); END_STATE(); case 163: - if (lookahead == 't') ADVANCE(659); + if (lookahead == 't') ADVANCE(662); END_STATE(); case 164: - if (lookahead == 't') ADVANCE(653); + if (lookahead == 't') ADVANCE(656); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(599); + if (lookahead == 't') ADVANCE(601); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 't') ADVANCE(685); END_STATE(); case 167: - if (lookahead == 't') ADVANCE(561); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 168: if (lookahead == 't') ADVANCE(71); @@ -3363,13 +3365,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(174); END_STATE(); case 185: - if (lookahead == 'v') ADVANCE(637); + if (lookahead == 'v') ADVANCE(639); END_STATE(); case 186: - if (lookahead == 'v') ADVANCE(696); + if (lookahead == 'v') ADVANCE(699); END_STATE(); case 187: - if (lookahead == 'v') ADVANCE(638); + if (lookahead == 'v') ADVANCE(640); END_STATE(); case 188: if (lookahead == 'v') ADVANCE(18); @@ -3378,28 +3380,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(153); END_STATE(); case 190: - if (lookahead == 'x') ADVANCE(634); + if (lookahead == 'x') ADVANCE(636); END_STATE(); case 191: - if (lookahead == 'x') ADVANCE(591); + if (lookahead == 'x') ADVANCE(593); END_STATE(); case 192: - if (lookahead == 'x') ADVANCE(639); + if (lookahead == 'x') ADVANCE(641); END_STATE(); case 193: if (lookahead == 'x') ADVANCE(121); END_STATE(); case 194: - if (lookahead == 'y') ADVANCE(664); + if (lookahead == 'y') ADVANCE(667); END_STATE(); case 195: - if (lookahead == 'y') ADVANCE(585); + if (lookahead == 'y') ADVANCE(587); END_STATE(); case 196: - if (lookahead == 'y') ADVANCE(511); + if (lookahead == 'y') ADVANCE(513); END_STATE(); case 197: - if (lookahead == 'y') ADVANCE(502); + if (lookahead == 'y') ADVANCE(504); END_STATE(); case 198: if (lookahead == 175) ADVANCE(199); @@ -3442,26 +3444,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 208: if (eof) ADVANCE(211); - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(409); if (lookahead == '$') ADVANCE(4); - if (lookahead == '%') ADVANCE(549); + if (lookahead == '%') ADVANCE(551); if (lookahead == '&') ADVANCE(207); + if (lookahead == '\'') ADVANCE(496); if (lookahead == '(') ADVANCE(487); - if (lookahead == '*') ADVANCE(547); - if (lookahead == '+') ADVANCE(544); - if (lookahead == ',') ADVANCE(508); - if (lookahead == '-') ADVANCE(546); - if (lookahead == '.') ADVANCE(507); - if (lookahead == '/') ADVANCE(646); - if (lookahead == ':') ADVANCE(509); - if (lookahead == ';') ADVANCE(510); - if (lookahead == '<') ADVANCE(538); - if (lookahead == '=') ADVANCE(535); - if (lookahead == '>') ADVANCE(541); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(548); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(649); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); + if (lookahead == '?') ADVANCE(647); if (lookahead == '@') ADVANCE(11); if (lookahead == 'A') ADVANCE(372); if (lookahead == 'E') ADVANCE(402); @@ -3470,14 +3474,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(325); if (lookahead == 'S') ADVANCE(289); if (lookahead == '[') ADVANCE(491); - if (lookahead == '\\') ADVANCE(648); + if (lookahead == '\\') ADVANCE(651); if (lookahead == '^') ADVANCE(495); - if (lookahead == '`') ADVANCE(519); + if (lookahead == '`') ADVANCE(521); if (lookahead == 'a') ADVANCE(270); if (lookahead == 'b') ADVANCE(313); if (lookahead == 'c') ADVANCE(290); if (lookahead == 'd') ADVANCE(291); - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(506); if (lookahead == 'f') ADVANCE(257); if (lookahead == 'g') ADVANCE(255); if (lookahead == 'i') ADVANCE(283); @@ -3494,102 +3498,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(342); if (lookahead == 'w') ADVANCE(258); if (lookahead == '{') ADVANCE(489); - if (lookahead == 164) ADVANCE(644); - if (lookahead == 172) ADVANCE(516); - if (lookahead == 175) ADVANCE(522); - if (lookahead == 177) ADVANCE(518); - if (lookahead == 183) ADVANCE(701); - if (lookahead == 215) ADVANCE(548); - if (lookahead == 247) ADVANCE(550); - if (lookahead == 951) ADVANCE(497); - if (lookahead == 960) ADVANCE(499); - if (lookahead == 964) ADVANCE(501); - if (lookahead == 8261) ADVANCE(534); - if (lookahead == 8319) ADVANCE(554); - if (lookahead == 8345) ADVANCE(556); - if (lookahead == 8450) ADVANCE(640); - if (lookahead == 8594) ADVANCE(699); - if (lookahead == 8600) ADVANCE(608); - if (lookahead == 8601) ADVANCE(606); - if (lookahead == 8613) ADVANCE(560); - if (lookahead == 8615) ADVANCE(558); - if (lookahead == 8619) ADVANCE(669); - if (lookahead == 8620) ADVANCE(667); - if (lookahead == 8623) ADVANCE(604); - if (lookahead == 8624) ADVANCE(704); - if (lookahead == 8635) ADVANCE(610); - if (lookahead == 8652) ADVANCE(572); - if (lookahead == 8673) ADVANCE(568); - if (lookahead == 8714) ADVANCE(618); - if (lookahead == 8728) ADVANCE(514); - if (lookahead == 8730) ADVANCE(526); - if (lookahead == 8734) ADVANCE(503); - if (lookahead == 8736) ADVANCE(562); - if (lookahead == 8743) ADVANCE(671); - if (lookahead == 8745) ADVANCE(681); - if (lookahead == 8757) ADVANCE(650); - if (lookahead == 8759) ADVANCE(700); - if (lookahead == 8762) ADVANCE(708); - if (lookahead == 8781) ADVANCE(594); - if (lookahead == 8784) ADVANCE(707); - if (lookahead == 8785) ADVANCE(706); - if (lookahead == 8800) ADVANCE(537); - if (lookahead == 8801) ADVANCE(652); - if (lookahead == 8804) ADVANCE(540); - if (lookahead == 8805) ADVANCE(543); - if (lookahead == 8834) ADVANCE(598); - if (lookahead == 8835) ADVANCE(685); - if (lookahead == 8847) ADVANCE(600); - if (lookahead == 8848) ADVANCE(663); - if (lookahead == 8851) ADVANCE(683); - if (lookahead == 8852) ADVANCE(592); - if (lookahead == 8853) ADVANCE(677); - if (lookahead == 8855) ADVANCE(620); - if (lookahead == 8857) ADVANCE(656); - if (lookahead == 8858) ADVANCE(584); - if (lookahead == 8859) ADVANCE(586); - if (lookahead == 8860) ADVANCE(679); - if (lookahead == 8861) ADVANCE(588); - if (lookahead == 8862) ADVANCE(673); - if (lookahead == 8863) ADVANCE(596); - if (lookahead == 8864) ADVANCE(675); - if (lookahead == 8865) ADVANCE(602); - if (lookahead == 8866) ADVANCE(570); - if (lookahead == 8901) ADVANCE(658); - if (lookahead == 8916) ADVANCE(695); - if (lookahead == 8943) ADVANCE(576); - if (lookahead == 8962) ADVANCE(703); - if (lookahead == 8965) ADVANCE(665); - if (lookahead == 8968) ADVANCE(532); - if (lookahead == 8970) ADVANCE(530); - if (lookahead == 8981) ADVANCE(616); - if (lookahead == 9013) ADVANCE(524); - if (lookahead == 9033) ADVANCE(578); - if (lookahead == 9039) ADVANCE(580); - if (lookahead == 9046) ADVANCE(582); - if (lookahead == 9048) ADVANCE(660); - if (lookahead == 9051) ADVANCE(702); - if (lookahead == 9052) ADVANCE(687); - if (lookahead == 9058) ADVANCE(693); - if (lookahead == 9059) ADVANCE(691); - if (lookahead == 9060) ADVANCE(622); - if (lookahead == 9061) ADVANCE(654); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(524); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(704); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8594) ADVANCE(702); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(672); + if (lookahead == 8620) ADVANCE(670); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(707); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(674); + if (lookahead == 8745) ADVANCE(684); + if (lookahead == 8757) ADVANCE(653); + if (lookahead == 8759) ADVANCE(703); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(655); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(688); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(666); + if (lookahead == 8851) ADVANCE(686); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(680); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(659); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(682); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(676); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(678); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(661); + if (lookahead == 8916) ADVANCE(698); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(706); + if (lookahead == 8965) ADVANCE(668); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(663); + if (lookahead == 9051) ADVANCE(705); + if (lookahead == 9052) ADVANCE(690); + if (lookahead == 9058) ADVANCE(696); + if (lookahead == 9059) ADVANCE(694); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(657); if (lookahead == 9084) ADVANCE(225); - if (lookahead == 9633) ADVANCE(590); - if (lookahead == 9651) ADVANCE(566); - if (lookahead == 9661) ADVANCE(614); - if (lookahead == 9675) ADVANCE(528); - if (lookahead == 9707) ADVANCE(612); - if (lookahead == 9715) ADVANCE(705); - if (lookahead == 9727) ADVANCE(552); - if (lookahead == 9735) ADVANCE(642); - if (lookahead == 9837) ADVANCE(574); - if (lookahead == 9858) ADVANCE(626); - if (lookahead == 10085) ADVANCE(698); - if (lookahead == 10204) ADVANCE(709); - if (lookahead == 10747) ADVANCE(564); - if (lookahead == 11034) ADVANCE(689); - if (lookahead == 11822) ADVANCE(632); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(701); + if (lookahead == 10204) ADVANCE(708); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(692); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(208) if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(407); @@ -3599,27 +3599,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 209: if (eof) ADVANCE(211); - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(10); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(409); if (lookahead == '$') ADVANCE(5); - if (lookahead == '%') ADVANCE(549); + if (lookahead == '%') ADVANCE(551); if (lookahead == '&') ADVANCE(207); + if (lookahead == '\'') ADVANCE(496); if (lookahead == '(') ADVANCE(487); if (lookahead == ')') ADVANCE(488); - if (lookahead == '*') ADVANCE(547); - if (lookahead == '+') ADVANCE(544); - if (lookahead == ',') ADVANCE(508); - if (lookahead == '-') ADVANCE(545); - if (lookahead == '.') ADVANCE(507); - if (lookahead == '/') ADVANCE(646); - if (lookahead == ':') ADVANCE(509); - if (lookahead == ';') ADVANCE(510); - if (lookahead == '<') ADVANCE(538); - if (lookahead == '=') ADVANCE(535); - if (lookahead == '>') ADVANCE(541); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(649); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); + if (lookahead == '?') ADVANCE(647); if (lookahead == '@') ADVANCE(11); if (lookahead == 'A') ADVANCE(372); if (lookahead == 'E') ADVANCE(402); @@ -3628,16 +3630,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(325); if (lookahead == 'S') ADVANCE(289); if (lookahead == '[') ADVANCE(491); - if (lookahead == '\\') ADVANCE(648); + if (lookahead == '\\') ADVANCE(651); if (lookahead == ']') ADVANCE(492); if (lookahead == '^') ADVANCE(495); if (lookahead == '_') ADVANCE(493); - if (lookahead == '`') ADVANCE(519); + if (lookahead == '`') ADVANCE(521); if (lookahead == 'a') ADVANCE(270); if (lookahead == 'b') ADVANCE(313); if (lookahead == 'c') ADVANCE(290); if (lookahead == 'd') ADVANCE(291); - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(506); if (lookahead == 'f') ADVANCE(257); if (lookahead == 'g') ADVANCE(255); if (lookahead == 'i') ADVANCE(283); @@ -3656,103 +3658,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(489); if (lookahead == '|') ADVANCE(230); if (lookahead == '}') ADVANCE(490); - if (lookahead == 164) ADVANCE(644); - if (lookahead == 172) ADVANCE(516); - if (lookahead == 175) ADVANCE(522); - if (lookahead == 177) ADVANCE(518); - if (lookahead == 183) ADVANCE(701); - if (lookahead == 215) ADVANCE(548); - if (lookahead == 247) ADVANCE(550); - if (lookahead == 951) ADVANCE(497); - if (lookahead == 960) ADVANCE(499); - if (lookahead == 964) ADVANCE(501); - if (lookahead == 8261) ADVANCE(534); - if (lookahead == 8319) ADVANCE(554); - if (lookahead == 8345) ADVANCE(556); - if (lookahead == 8450) ADVANCE(640); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(524); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(704); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); if (lookahead == 8592) ADVANCE(494); - if (lookahead == 8594) ADVANCE(699); - if (lookahead == 8600) ADVANCE(608); - if (lookahead == 8601) ADVANCE(606); - if (lookahead == 8613) ADVANCE(560); - if (lookahead == 8615) ADVANCE(558); - if (lookahead == 8619) ADVANCE(669); - if (lookahead == 8620) ADVANCE(667); - if (lookahead == 8623) ADVANCE(604); - if (lookahead == 8624) ADVANCE(704); - if (lookahead == 8635) ADVANCE(610); - if (lookahead == 8652) ADVANCE(572); - if (lookahead == 8673) ADVANCE(568); - if (lookahead == 8714) ADVANCE(618); - if (lookahead == 8728) ADVANCE(514); - if (lookahead == 8730) ADVANCE(526); - if (lookahead == 8734) ADVANCE(503); - if (lookahead == 8736) ADVANCE(562); - if (lookahead == 8743) ADVANCE(671); - if (lookahead == 8745) ADVANCE(681); - if (lookahead == 8757) ADVANCE(650); - if (lookahead == 8759) ADVANCE(700); - if (lookahead == 8762) ADVANCE(708); - if (lookahead == 8781) ADVANCE(594); - if (lookahead == 8784) ADVANCE(707); - if (lookahead == 8785) ADVANCE(706); - if (lookahead == 8800) ADVANCE(537); - if (lookahead == 8801) ADVANCE(652); - if (lookahead == 8804) ADVANCE(540); - if (lookahead == 8805) ADVANCE(543); - if (lookahead == 8834) ADVANCE(598); - if (lookahead == 8835) ADVANCE(685); - if (lookahead == 8847) ADVANCE(600); - if (lookahead == 8848) ADVANCE(663); - if (lookahead == 8851) ADVANCE(683); - if (lookahead == 8852) ADVANCE(592); - if (lookahead == 8853) ADVANCE(677); - if (lookahead == 8855) ADVANCE(620); - if (lookahead == 8857) ADVANCE(656); - if (lookahead == 8858) ADVANCE(584); - if (lookahead == 8859) ADVANCE(586); - if (lookahead == 8860) ADVANCE(679); - if (lookahead == 8861) ADVANCE(588); - if (lookahead == 8862) ADVANCE(673); - if (lookahead == 8863) ADVANCE(596); - if (lookahead == 8864) ADVANCE(675); - if (lookahead == 8865) ADVANCE(602); - if (lookahead == 8866) ADVANCE(570); - if (lookahead == 8901) ADVANCE(658); - if (lookahead == 8916) ADVANCE(695); - if (lookahead == 8943) ADVANCE(576); - if (lookahead == 8962) ADVANCE(703); - if (lookahead == 8965) ADVANCE(665); - if (lookahead == 8968) ADVANCE(532); - if (lookahead == 8970) ADVANCE(530); - if (lookahead == 8981) ADVANCE(616); - if (lookahead == 9013) ADVANCE(524); - if (lookahead == 9033) ADVANCE(578); - if (lookahead == 9039) ADVANCE(580); - if (lookahead == 9046) ADVANCE(582); - if (lookahead == 9048) ADVANCE(660); - if (lookahead == 9051) ADVANCE(702); - if (lookahead == 9052) ADVANCE(687); - if (lookahead == 9058) ADVANCE(693); - if (lookahead == 9059) ADVANCE(691); - if (lookahead == 9060) ADVANCE(622); - if (lookahead == 9061) ADVANCE(654); + if (lookahead == 8594) ADVANCE(702); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(672); + if (lookahead == 8620) ADVANCE(670); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(707); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(674); + if (lookahead == 8745) ADVANCE(684); + if (lookahead == 8757) ADVANCE(653); + if (lookahead == 8759) ADVANCE(703); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(655); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(688); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(666); + if (lookahead == 8851) ADVANCE(686); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(680); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(659); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(682); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(676); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(678); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(661); + if (lookahead == 8916) ADVANCE(698); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(706); + if (lookahead == 8965) ADVANCE(668); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(663); + if (lookahead == 9051) ADVANCE(705); + if (lookahead == 9052) ADVANCE(690); + if (lookahead == 9058) ADVANCE(696); + if (lookahead == 9059) ADVANCE(694); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(657); if (lookahead == 9084) ADVANCE(225); - if (lookahead == 9633) ADVANCE(590); - if (lookahead == 9651) ADVANCE(566); - if (lookahead == 9661) ADVANCE(614); - if (lookahead == 9675) ADVANCE(528); - if (lookahead == 9707) ADVANCE(612); - if (lookahead == 9715) ADVANCE(705); - if (lookahead == 9727) ADVANCE(552); - if (lookahead == 9735) ADVANCE(642); - if (lookahead == 9837) ADVANCE(574); - if (lookahead == 9858) ADVANCE(626); - if (lookahead == 10085) ADVANCE(698); - if (lookahead == 10204) ADVANCE(709); - if (lookahead == 10747) ADVANCE(564); - if (lookahead == 11034) ADVANCE(689); - if (lookahead == 11822) ADVANCE(632); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(701); + if (lookahead == 10204) ADVANCE(708); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(692); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(209) if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(407); @@ -3762,7 +3760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 210: if (eof) ADVANCE(211); - if (lookahead == '\n') ADVANCE(711); + if (lookahead == '\n') ADVANCE(710); if (lookahead == '\r') ADVANCE(1); if (lookahead == '#') ADVANCE(485); if (lookahead == ')') ADVANCE(488); @@ -3907,7 +3905,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 237: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'N') ADVANCE(505); + if (lookahead == 'N') ADVANCE(507); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); @@ -3945,7 +3943,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); if (lookahead == 'a') ADVANCE(276); - if (lookahead == 'i') ADVANCE(498); + if (lookahead == 'i') ADVANCE(500); if (lookahead == 'o') ADVANCE(398); if (('A' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(406); @@ -3977,7 +3975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 246: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'a') ADVANCE(496); + if (lookahead == 'a') ADVANCE(498); if (('A' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4133,7 +4131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); if (lookahead == 'a') ADVANCE(458); - if (lookahead == 'y') ADVANCE(690); + if (lookahead == 'y') ADVANCE(693); if (('A' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4189,9 +4187,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); if (lookahead == 'b') ADVANCE(451); - if (lookahead == 'g') ADVANCE(629); + if (lookahead == 'g') ADVANCE(631); if (lookahead == 'k') ADVANCE(426); - if (lookahead == 'u') ADVANCE(500); + if (lookahead == 'u') ADVANCE(502); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4278,7 +4276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 283: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'd') ADVANCE(512); + if (lookahead == 'd') ADVANCE(514); if (lookahead == 'n') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(406); @@ -4286,7 +4284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 284: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'd') ADVANCE(513); + if (lookahead == 'd') ADVANCE(515); if (lookahead == 'n') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(234); @@ -4339,7 +4337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(234); if (lookahead == 'e') ADVANCE(254); if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'o') ADVANCE(692); + if (lookahead == 'o') ADVANCE(695); if (lookahead == 'r') ADVANCE(359); if (lookahead == 'u') ADVANCE(337); if (('A' <= lookahead && lookahead <= 'Z') || @@ -4444,12 +4442,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 305: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'f') ADVANCE(635); + if (lookahead == 'f') ADVANCE(637); END_STATE(); case 306: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'f') ADVANCE(635); + if (lookahead == 'f') ADVANCE(637); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4463,7 +4461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 308: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'g') ADVANCE(629); + if (lookahead == 'g') ADVANCE(631); if (lookahead == 'k') ADVANCE(36); END_STATE(); case 309: @@ -4562,7 +4560,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 323: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'l') ADVANCE(694); + if (lookahead == 'l') ADVANCE(697); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4601,7 +4599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(450); if (lookahead == 'n') ADVANCE(417); if (lookahead == 'r') ADVANCE(471); - if (lookahead == 'x') ADVANCE(643); + if (lookahead == 'x') ADVANCE(645); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4702,12 +4700,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 343: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'n') ADVANCE(627); + if (lookahead == 'n') ADVANCE(629); END_STATE(); case 344: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'n') ADVANCE(627); + if (lookahead == 'n') ADVANCE(629); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4748,7 +4746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(234); if (lookahead == 'n') ADVANCE(26); if (lookahead == 'r') ADVANCE(150); - if (lookahead == 'x') ADVANCE(643); + if (lookahead == 'x') ADVANCE(645); END_STATE(); case 351: ACCEPT_TOKEN(sym_identifier); @@ -4864,14 +4862,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 368: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'p') ADVANCE(655); + if (lookahead == 'p') ADVANCE(658); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 369: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'p') ADVANCE(657); + if (lookahead == 'p') ADVANCE(660); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -4956,7 +4954,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 382: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 's') ADVANCE(508); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); @@ -4993,21 +4991,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); if (lookahead == 't') ADVANCE(436); - if (lookahead == 'x') ADVANCE(589); + if (lookahead == 'x') ADVANCE(591); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 389: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'w') ADVANCE(630); + if (lookahead == 't') ADVANCE(517); + if (lookahead == 'w') ADVANCE(632); END_STATE(); case 390: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'w') ADVANCE(630); + if (lookahead == 't') ADVANCE(517); + if (lookahead == 'w') ADVANCE(632); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); @@ -5074,7 +5072,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 400: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(234); - if (lookahead == 'x') ADVANCE(589); + if (lookahead == 'x') ADVANCE(591); END_STATE(); case 401: ACCEPT_TOKEN(sym_identifier); @@ -5162,11 +5160,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 417: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(615); + if (lookahead == 'd') ADVANCE(617); END_STATE(); case 418: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(670); + if (lookahead == 'd') ADVANCE(673); END_STATE(); case 419: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5175,7 +5173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 420: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(636); + if (lookahead == 'd') ADVANCE(638); END_STATE(); case 421: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5191,19 +5189,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 424: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(579); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(527); + if (lookahead == 'e') ADVANCE(529); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(605); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(631); + if (lookahead == 'e') ADVANCE(633); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5239,7 +5237,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 436: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(680); + if (lookahead == 'h') ADVANCE(683); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5247,7 +5245,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 438: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(649); + if (lookahead == 'h') ADVANCE(652); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5272,15 +5270,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 444: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(684); + if (lookahead == 'k') ADVANCE(687); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(662); + if (lookahead == 'k') ADVANCE(665); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(601); + if (lookahead == 'k') ADVANCE(603); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5288,15 +5286,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 448: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(628); + if (lookahead == 'l') ADVANCE(630); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(581); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(688); + if (lookahead == 'l') ADVANCE(691); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5308,7 +5306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 453: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(597); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5316,11 +5314,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 455: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(647); + if (lookahead == 'n') ADVANCE(650); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(517); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5344,15 +5342,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 462: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(607); + if (lookahead == 'p') ADVANCE(609); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(633); + if (lookahead == 'p') ADVANCE(635); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(613); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5372,7 +5370,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 469: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(575); + if (lookahead == 's') ADVANCE(577); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5384,11 +5382,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 472: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(651); + if (lookahead == 's') ADVANCE(654); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(666); + if (lookahead == 's') ADVANCE(669); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5401,17 +5399,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 476: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 't') ADVANCE(525); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 't') ADVANCE(623); + if (lookahead == 't') ADVANCE(625); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifierDeprecated); if (lookahead == 't') ADVANCE(75); if (lookahead == 'u') ADVANCE(138); - if (lookahead == 'v') ADVANCE(637); + if (lookahead == 'v') ADVANCE(639); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifierDeprecated); @@ -5473,40 +5471,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_eta); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(497); END_STATE(); case 497: + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE); + END_STATE(); + case 498: + ACCEPT_TOKEN(anon_sym_eta); + END_STATE(); + case 499: ACCEPT_TOKEN(anon_sym_2); if (lookahead == 'E' || lookahead == 'e') ADVANCE(198); END_STATE(); - case 498: + case 500: ACCEPT_TOKEN(anon_sym_pi); if (lookahead == '!') ADVANCE(234); if (lookahead == 'c') ADVANCE(446); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 499: + case 501: ACCEPT_TOKEN(anon_sym_3); if (lookahead == 'E' || lookahead == 'e') ADVANCE(198); END_STATE(); - case 500: + case 502: ACCEPT_TOKEN(anon_sym_tau); END_STATE(); - case 501: + case 503: ACCEPT_TOKEN(anon_sym_4); if (lookahead == 'E' || lookahead == 'e') ADVANCE(198); END_STATE(); - case 502: + case 504: ACCEPT_TOKEN(anon_sym_infinity); END_STATE(); - case 503: + case 505: ACCEPT_TOKEN(anon_sym_5); END_STATE(); - case 504: + case 506: ACCEPT_TOKEN(anon_sym_e); if (lookahead == '!') ADVANCE(234); if (lookahead == 'a') ADVANCE(277); @@ -5514,652 +5519,643 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(406); END_STATE(); - case 505: + case 507: ACCEPT_TOKEN(anon_sym_NaN); if (lookahead == '!') ADVANCE(234); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); - case 506: + case 508: ACCEPT_TOKEN(anon_sym_NumProcs); if (lookahead == '!') ADVANCE(234); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); - case 507: + case 509: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 508: + case 510: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 509: + case 511: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 510: + case 512: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 511: + case 513: ACCEPT_TOKEN(anon_sym_identity); END_STATE(); - case 512: + case 514: ACCEPT_TOKEN(anon_sym_id); if (lookahead == '!') ADVANCE(234); if (lookahead == 'e') ADVANCE(457); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 513: + case 515: ACCEPT_TOKEN(anon_sym_id); if (lookahead == '!') ADVANCE(234); if (lookahead == 'e') ADVANCE(112); END_STATE(); - case 514: + case 516: ACCEPT_TOKEN(anon_sym_6); END_STATE(); - case 515: + case 517: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 516: + case 518: ACCEPT_TOKEN(anon_sym_7); END_STATE(); - case 517: + case 519: ACCEPT_TOKEN(anon_sym_sign); END_STATE(); - case 518: + case 520: ACCEPT_TOKEN(anon_sym_8); END_STATE(); - case 519: + case 521: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 520: + case 522: ACCEPT_TOKEN(anon_sym_9); END_STATE(); - case 521: + case 523: ACCEPT_TOKEN(anon_sym_9); if (lookahead == 951 || lookahead == 960 || lookahead == 964) ADVANCE(214); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); END_STATE(); - case 522: + case 524: ACCEPT_TOKEN(anon_sym_9); if (lookahead == 951 || lookahead == 960 || lookahead == 964) ADVANCE(214); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); END_STATE(); - case 523: + case 525: ACCEPT_TOKEN(anon_sym_absolutevalue); END_STATE(); - case 524: + case 526: ACCEPT_TOKEN(anon_sym_10); END_STATE(); - case 525: + case 527: ACCEPT_TOKEN(anon_sym_sqrt); END_STATE(); - case 526: + case 528: ACCEPT_TOKEN(anon_sym_11); END_STATE(); - case 527: + case 529: ACCEPT_TOKEN(anon_sym_sine); END_STATE(); - case 528: + case 530: ACCEPT_TOKEN(anon_sym_12); END_STATE(); - case 529: + case 531: ACCEPT_TOKEN(anon_sym_floor); END_STATE(); - case 530: + case 532: ACCEPT_TOKEN(anon_sym_13); END_STATE(); - case 531: + case 533: ACCEPT_TOKEN(anon_sym_ceiling); END_STATE(); - case 532: + case 534: ACCEPT_TOKEN(anon_sym_14); END_STATE(); - case 533: + case 535: ACCEPT_TOKEN(anon_sym_round); END_STATE(); - case 534: + case 536: ACCEPT_TOKEN(anon_sym_15); END_STATE(); - case 535: + case 537: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 536: + case 538: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 537: + case 539: ACCEPT_TOKEN(anon_sym_16); END_STATE(); - case 538: + case 540: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(539); + if (lookahead == '=') ADVANCE(541); END_STATE(); - case 539: + case 541: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 540: + case 542: ACCEPT_TOKEN(anon_sym_17); END_STATE(); - case 541: + case 543: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(542); + if (lookahead == '=') ADVANCE(544); END_STATE(); - case 542: + case 544: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 543: + case 545: ACCEPT_TOKEN(anon_sym_18); END_STATE(); - case 544: + case 546: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 545: + case 547: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 546: + case 548: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(9); END_STATE(); - case 547: + case 549: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 548: + case 550: ACCEPT_TOKEN(anon_sym_19); END_STATE(); - case 549: + case 551: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 550: + case 552: ACCEPT_TOKEN(anon_sym_20); END_STATE(); - case 551: + case 553: ACCEPT_TOKEN(anon_sym_modulus); END_STATE(); - case 552: + case 554: ACCEPT_TOKEN(anon_sym_21); END_STATE(); - case 553: + case 555: ACCEPT_TOKEN(anon_sym_power); END_STATE(); - case 554: + case 556: ACCEPT_TOKEN(anon_sym_22); END_STATE(); - case 555: + case 557: ACCEPT_TOKEN(anon_sym_logarithm); END_STATE(); - case 556: + case 558: ACCEPT_TOKEN(anon_sym_23); END_STATE(); - case 557: + case 559: ACCEPT_TOKEN(anon_sym_minimum); END_STATE(); - case 558: + case 560: ACCEPT_TOKEN(anon_sym_24); END_STATE(); - case 559: + case 561: ACCEPT_TOKEN(anon_sym_maximum); END_STATE(); - case 560: + case 562: ACCEPT_TOKEN(anon_sym_25); END_STATE(); - case 561: + case 563: ACCEPT_TOKEN(anon_sym_atangent); END_STATE(); - case 562: + case 564: ACCEPT_TOKEN(anon_sym_26); END_STATE(); - case 563: + case 565: ACCEPT_TOKEN(anon_sym_length); END_STATE(); - case 564: + case 566: ACCEPT_TOKEN(anon_sym_27); END_STATE(); - case 565: + case 567: ACCEPT_TOKEN(anon_sym_shape); END_STATE(); - case 566: + case 568: ACCEPT_TOKEN(anon_sym_28); END_STATE(); - case 567: + case 569: ACCEPT_TOKEN(anon_sym_range); END_STATE(); - case 568: + case 570: ACCEPT_TOKEN(anon_sym_29); END_STATE(); - case 569: + case 571: ACCEPT_TOKEN(anon_sym_first); END_STATE(); - case 570: + case 572: ACCEPT_TOKEN(anon_sym_30); END_STATE(); - case 571: + case 573: ACCEPT_TOKEN(anon_sym_reverse); END_STATE(); - case 572: + case 574: ACCEPT_TOKEN(anon_sym_31); END_STATE(); - case 573: + case 575: ACCEPT_TOKEN(anon_sym_deshape); END_STATE(); - case 574: + case 576: ACCEPT_TOKEN(anon_sym_32); END_STATE(); - case 575: + case 577: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 576: + case 578: ACCEPT_TOKEN(anon_sym_33); END_STATE(); - case 577: + case 579: ACCEPT_TOKEN(anon_sym_transpose); END_STATE(); - case 578: + case 580: ACCEPT_TOKEN(anon_sym_34); END_STATE(); - case 579: + case 581: ACCEPT_TOKEN(anon_sym_rise); END_STATE(); - case 580: + case 582: ACCEPT_TOKEN(anon_sym_35); END_STATE(); - case 581: + case 583: ACCEPT_TOKEN(anon_sym_fall); END_STATE(); - case 582: + case 584: ACCEPT_TOKEN(anon_sym_36); END_STATE(); - case 583: + case 585: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 584: + case 586: ACCEPT_TOKEN(anon_sym_37); END_STATE(); - case 585: + case 587: ACCEPT_TOKEN(anon_sym_classify); END_STATE(); - case 586: + case 588: ACCEPT_TOKEN(anon_sym_38); END_STATE(); - case 587: + case 589: ACCEPT_TOKEN(anon_sym_deduplicate); END_STATE(); - case 588: + case 590: ACCEPT_TOKEN(anon_sym_39); END_STATE(); - case 589: + case 591: ACCEPT_TOKEN(anon_sym_box); END_STATE(); - case 590: + case 592: ACCEPT_TOKEN(anon_sym_40); END_STATE(); - case 591: + case 593: ACCEPT_TOKEN(anon_sym_unbox); END_STATE(); - case 592: + case 594: ACCEPT_TOKEN(anon_sym_41); END_STATE(); - case 593: + case 595: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 594: + case 596: ACCEPT_TOKEN(anon_sym_42); END_STATE(); - case 595: + case 597: ACCEPT_TOKEN(anon_sym_couple); END_STATE(); - case 596: + case 598: ACCEPT_TOKEN(anon_sym_43); END_STATE(); - case 597: + case 599: ACCEPT_TOKEN(anon_sym_join); END_STATE(); - case 598: + case 600: ACCEPT_TOKEN(anon_sym_44); END_STATE(); - case 599: + case 601: ACCEPT_TOKEN(anon_sym_select); END_STATE(); - case 600: + case 602: ACCEPT_TOKEN(anon_sym_45); END_STATE(); - case 601: + case 603: ACCEPT_TOKEN(anon_sym_pick); END_STATE(); - case 602: + case 604: ACCEPT_TOKEN(anon_sym_46); END_STATE(); - case 603: + case 605: ACCEPT_TOKEN(anon_sym_reshape); END_STATE(); - case 604: + case 606: ACCEPT_TOKEN(anon_sym_47); END_STATE(); - case 605: + case 607: ACCEPT_TOKEN(anon_sym_take); END_STATE(); - case 606: + case 608: ACCEPT_TOKEN(anon_sym_48); END_STATE(); - case 607: + case 609: ACCEPT_TOKEN(anon_sym_drop); END_STATE(); - case 608: + case 610: ACCEPT_TOKEN(anon_sym_49); END_STATE(); - case 609: + case 611: ACCEPT_TOKEN(anon_sym_rotate); END_STATE(); - case 610: + case 612: ACCEPT_TOKEN(anon_sym_50); END_STATE(); - case 611: + case 613: ACCEPT_TOKEN(anon_sym_windows); END_STATE(); - case 612: + case 614: ACCEPT_TOKEN(anon_sym_51); END_STATE(); - case 613: + case 615: ACCEPT_TOKEN(anon_sym_keep); END_STATE(); - case 614: + case 616: ACCEPT_TOKEN(anon_sym_52); END_STATE(); - case 615: + case 617: ACCEPT_TOKEN(anon_sym_find); END_STATE(); - case 616: + case 618: ACCEPT_TOKEN(anon_sym_53); END_STATE(); - case 617: + case 619: ACCEPT_TOKEN(anon_sym_member); END_STATE(); - case 618: + case 620: ACCEPT_TOKEN(anon_sym_54); END_STATE(); - case 619: + case 621: ACCEPT_TOKEN(anon_sym_indexof); END_STATE(); - case 620: + case 622: ACCEPT_TOKEN(anon_sym_55); END_STATE(); - case 621: + case 623: ACCEPT_TOKEN(anon_sym_assert); END_STATE(); - case 622: + case 624: ACCEPT_TOKEN(anon_sym_56); END_STATE(); - case 623: + case 625: ACCEPT_TOKEN(anon_sym_wait); END_STATE(); - case 624: + case 626: ACCEPT_TOKEN(anon_sym_parse); END_STATE(); - case 625: + case 627: ACCEPT_TOKEN(anon_sym_random); END_STATE(); - case 626: + case 628: ACCEPT_TOKEN(anon_sym_57); END_STATE(); - case 627: + case 629: ACCEPT_TOKEN(anon_sym_gen); END_STATE(); - case 628: + case 630: ACCEPT_TOKEN(anon_sym_deal); END_STATE(); - case 629: + case 631: ACCEPT_TOKEN(anon_sym_tag); END_STATE(); - case 630: + case 632: ACCEPT_TOKEN(anon_sym_now); END_STATE(); - case 631: + case 633: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 632: + case 634: ACCEPT_TOKEN(anon_sym_58); END_STATE(); - case 633: + case 635: ACCEPT_TOKEN(anon_sym_dump); END_STATE(); - case 634: + case 636: ACCEPT_TOKEN(anon_sym_regex); END_STATE(); - case 635: + case 637: ACCEPT_TOKEN(anon_sym_utf); END_STATE(); - case 636: + case 638: ACCEPT_TOKEN(anon_sym_send); END_STATE(); - case 637: + case 639: ACCEPT_TOKEN(anon_sym_recv); END_STATE(); - case 638: + case 640: ACCEPT_TOKEN(anon_sym_tryrecv); END_STATE(); - case 639: + case 641: ACCEPT_TOKEN(anon_sym_complex); END_STATE(); - case 640: + case 642: ACCEPT_TOKEN(anon_sym_59); END_STATE(); - case 641: + case 643: ACCEPT_TOKEN(anon_sym_rerank); END_STATE(); - case 642: + case 644: ACCEPT_TOKEN(anon_sym_60); END_STATE(); - case 643: + case 645: ACCEPT_TOKEN(anon_sym_fix); END_STATE(); - case 644: + case 646: ACCEPT_TOKEN(anon_sym_61); END_STATE(); - case 645: + case 647: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 648: ACCEPT_TOKEN(anon_sym_reduce); END_STATE(); - case 646: + case 649: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 647: + case 650: ACCEPT_TOKEN(anon_sym_scan); END_STATE(); - case 648: + case 651: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 649: + case 652: ACCEPT_TOKEN(anon_sym_each); END_STATE(); - case 650: + case 653: ACCEPT_TOKEN(anon_sym_62); END_STATE(); - case 651: + case 654: ACCEPT_TOKEN(anon_sym_rows); END_STATE(); - case 652: + case 655: ACCEPT_TOKEN(anon_sym_63); END_STATE(); - case 653: + case 656: ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); - case 654: + case 657: ACCEPT_TOKEN(anon_sym_64); END_STATE(); - case 655: + case 658: ACCEPT_TOKEN(anon_sym_dip); END_STATE(); - case 656: + case 659: ACCEPT_TOKEN(anon_sym_65); END_STATE(); - case 657: + case 660: ACCEPT_TOKEN(anon_sym_gap); END_STATE(); - case 658: + case 661: ACCEPT_TOKEN(anon_sym_66); END_STATE(); - case 659: + case 662: ACCEPT_TOKEN(anon_sym_invert); END_STATE(); - case 660: + case 663: ACCEPT_TOKEN(anon_sym_67); END_STATE(); - case 661: + case 664: ACCEPT_TOKEN(anon_sym_spawn); END_STATE(); - case 662: + case 665: ACCEPT_TOKEN(anon_sym_pack); END_STATE(); - case 663: + case 666: ACCEPT_TOKEN(anon_sym_68); END_STATE(); - case 664: + case 667: ACCEPT_TOKEN(anon_sym_rectify); END_STATE(); - case 665: + case 668: ACCEPT_TOKEN(anon_sym_69); END_STATE(); - case 666: + case 669: ACCEPT_TOKEN(anon_sym_this); END_STATE(); - case 667: + case 670: ACCEPT_TOKEN(anon_sym_70); END_STATE(); - case 668: + case 671: ACCEPT_TOKEN(anon_sym_recur); END_STATE(); - case 669: + case 672: ACCEPT_TOKEN(anon_sym_71); END_STATE(); - case 670: + case 673: ACCEPT_TOKEN(anon_sym_fold); END_STATE(); - case 671: + case 674: ACCEPT_TOKEN(anon_sym_72); END_STATE(); - case 672: + case 675: ACCEPT_TOKEN(anon_sym_table); END_STATE(); - case 673: + case 676: ACCEPT_TOKEN(anon_sym_73); END_STATE(); - case 674: + case 677: ACCEPT_TOKEN(anon_sym_cross); END_STATE(); - case 675: + case 678: ACCEPT_TOKEN(anon_sym_74); END_STATE(); - case 676: + case 679: ACCEPT_TOKEN(anon_sym_group); END_STATE(); - case 677: + case 680: ACCEPT_TOKEN(anon_sym_75); END_STATE(); - case 678: + case 681: ACCEPT_TOKEN(anon_sym_partition); END_STATE(); - case 679: + case 682: ACCEPT_TOKEN(anon_sym_76); END_STATE(); - case 680: + case 683: ACCEPT_TOKEN(anon_sym_both); END_STATE(); - case 681: + case 684: ACCEPT_TOKEN(anon_sym_77); END_STATE(); - case 682: + case 685: ACCEPT_TOKEN(anon_sym_bracket); END_STATE(); - case 683: + case 686: ACCEPT_TOKEN(anon_sym_78); END_STATE(); - case 684: + case 687: ACCEPT_TOKEN(anon_sym_fork); END_STATE(); - case 685: + case 688: ACCEPT_TOKEN(anon_sym_79); END_STATE(); - case 686: + case 689: ACCEPT_TOKEN(anon_sym_under); END_STATE(); - case 687: + case 690: ACCEPT_TOKEN(anon_sym_80); END_STATE(); - case 688: + case 691: ACCEPT_TOKEN(anon_sym_fill); END_STATE(); - case 689: + case 692: ACCEPT_TOKEN(anon_sym_81); END_STATE(); - case 690: + case 693: ACCEPT_TOKEN(anon_sym_try); if (lookahead == 'r') ADVANCE(55); END_STATE(); - case 691: + case 694: ACCEPT_TOKEN(anon_sym_82); END_STATE(); - case 692: + case 695: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '!') ADVANCE(234); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 693: - ACCEPT_TOKEN(anon_sym_83); - END_STATE(); - case 694: - ACCEPT_TOKEN(anon_sym_all); - END_STATE(); - case 695: - ACCEPT_TOKEN(anon_sym_84); - END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_setinv); + ACCEPT_TOKEN(anon_sym_83); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_setunder); + ACCEPT_TOKEN(anon_sym_all); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_85); + ACCEPT_TOKEN(anon_sym_84); END_STATE(); case 699: - ACCEPT_TOKEN(anon_sym_86); + ACCEPT_TOKEN(anon_sym_setinv); END_STATE(); case 700: - ACCEPT_TOKEN(anon_sym_87); + ACCEPT_TOKEN(anon_sym_setunder); END_STATE(); case 701: - ACCEPT_TOKEN(anon_sym_88); + ACCEPT_TOKEN(anon_sym_85); END_STATE(); case 702: - ACCEPT_TOKEN(anon_sym_89); + ACCEPT_TOKEN(anon_sym_86); END_STATE(); case 703: - ACCEPT_TOKEN(anon_sym_90); + ACCEPT_TOKEN(anon_sym_87); END_STATE(); case 704: - ACCEPT_TOKEN(anon_sym_91); + ACCEPT_TOKEN(anon_sym_88); END_STATE(); case 705: - ACCEPT_TOKEN(anon_sym_92); + ACCEPT_TOKEN(anon_sym_89); END_STATE(); case 706: - ACCEPT_TOKEN(anon_sym_93); + ACCEPT_TOKEN(anon_sym_90); END_STATE(); case 707: - ACCEPT_TOKEN(anon_sym_94); + ACCEPT_TOKEN(anon_sym_91); END_STATE(); case 708: - ACCEPT_TOKEN(anon_sym_95); + ACCEPT_TOKEN(anon_sym_92); END_STATE(); case 709: - ACCEPT_TOKEN(anon_sym_96); - END_STATE(); - case 710: ACCEPT_TOKEN(sym_emptyMultiLineString); END_STATE(); - case 711: + case 710: ACCEPT_TOKEN(sym__endOfLine); END_STATE(); default: @@ -6279,11 +6275,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 209}, [109] = {.lex_state = 209}, [110] = {.lex_state = 209}, - [111] = {.lex_state = 208}, + [111] = {.lex_state = 209}, [112] = {.lex_state = 208}, [113] = {.lex_state = 208}, [114] = {.lex_state = 208}, - [115] = {.lex_state = 209}, + [115] = {.lex_state = 208}, [116] = {.lex_state = 209}, [117] = {.lex_state = 209}, [118] = {.lex_state = 209}, @@ -6315,29 +6311,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 209}, [145] = {.lex_state = 209}, [146] = {.lex_state = 209}, - [147] = {.lex_state = 209}, + [147] = {.lex_state = 208}, [148] = {.lex_state = 209}, [149] = {.lex_state = 209}, [150] = {.lex_state = 209}, [151] = {.lex_state = 209}, [152] = {.lex_state = 209}, - [153] = {.lex_state = 208}, + [153] = {.lex_state = 209}, [154] = {.lex_state = 209}, [155] = {.lex_state = 209}, [156] = {.lex_state = 209}, - [157] = {.lex_state = 209}, + [157] = {.lex_state = 208}, [158] = {.lex_state = 209}, [159] = {.lex_state = 209}, [160] = {.lex_state = 209}, - [161] = {.lex_state = 208}, + [161] = {.lex_state = 209}, [162] = {.lex_state = 209}, [163] = {.lex_state = 209}, [164] = {.lex_state = 209}, [165] = {.lex_state = 209}, [166] = {.lex_state = 209}, [167] = {.lex_state = 209}, - [168] = {.lex_state = 2}, - [169] = {.lex_state = 2}, + [168] = {.lex_state = 209}, + [169] = {.lex_state = 209}, [170] = {.lex_state = 2}, [171] = {.lex_state = 2}, [172] = {.lex_state = 2}, @@ -6346,8 +6342,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [175] = {.lex_state = 2}, [176] = {.lex_state = 2}, [177] = {.lex_state = 2}, - [178] = {.lex_state = 210}, - [179] = {.lex_state = 210}, + [178] = {.lex_state = 2}, + [179] = {.lex_state = 2}, [180] = {.lex_state = 210}, [181] = {.lex_state = 210}, [182] = {.lex_state = 210}, @@ -6414,6 +6410,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [243] = {.lex_state = 210}, [244] = {.lex_state = 210}, [245] = {.lex_state = 210}, + [246] = {.lex_state = 210}, + [247] = {.lex_state = 210}, + [248] = {.lex_state = 210}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6447,6 +6446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_underscore] = ACTIONS(1), [sym_leftArrow] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(1), [anon_sym_eta] = ACTIONS(1), [anon_sym_2] = ACTIONS(1), [anon_sym_pi] = ACTIONS(1), @@ -6592,6 +6593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(1), [anon_sym_fix] = ACTIONS(1), [anon_sym_61] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), [anon_sym_reduce] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_scan] = ACTIONS(1), @@ -6653,35 +6655,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(1), [anon_sym_91] = ACTIONS(1), [anon_sym_92] = ACTIONS(1), - [anon_sym_93] = ACTIONS(1), - [anon_sym_94] = ACTIONS(1), - [anon_sym_95] = ACTIONS(1), - [anon_sym_96] = ACTIONS(1), [sym_emptyMultiLineString] = ACTIONS(1), [sym__endOfLine] = ACTIONS(5), }, [1] = { - [sym_source_file] = STATE(208), - [sym_PROGRAM] = STATE(233), - [sym_binding] = STATE(232), - [sym_module] = STATE(232), - [sym_segment] = STATE(232), - [sym_term] = STATE(26), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_source_file] = STATE(236), + [sym_PROGRAM] = STATE(235), + [sym_binding] = STATE(234), + [sym_module] = STATE(234), + [sym_segment] = STATE(234), + [sym_term] = STATE(16), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), [aux_sym_PROGRAM_repeat1] = STATE(3), - [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat1] = STATE(78), [aux_sym_number_token1] = ACTIONS(7), [sym_fraction] = ACTIONS(9), [anon_sym_os] = ACTIONS(11), @@ -6704,494 +6703,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_openCurly] = ACTIONS(29), [sym_openBracket] = ACTIONS(31), [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym_emptyMultiLineString] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), + [sym_emptyMultiLineString] = ACTIONS(55), [sym__endOfLine] = ACTIONS(5), }, [2] = { - [sym_binding] = STATE(242), - [sym_module] = STATE(242), - [sym_segment] = STATE(242), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_binding] = STATE(245), + [sym_module] = STATE(245), + [sym_segment] = STATE(245), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), + [sym_deprecated] = STATE(102), [aux_sym_PROGRAM_repeat1] = STATE(2), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(53), - [sym_fraction] = ACTIONS(56), - [anon_sym_os] = ACTIONS(59), - [anon_sym_Family] = ACTIONS(59), - [anon_sym_Arch] = ACTIONS(59), - [anon_sym_ExeExt] = ACTIONS(59), - [anon_sym_PllExt] = ACTIONS(59), - [anon_sym_Sep] = ACTIONS(59), - [anon_sym_NUmProcs] = ACTIONS(59), - [anon_sym_] = ACTIONS(62), - [aux_sym_character_token1] = ACTIONS(65), - [sym_string] = ACTIONS(68), - [sym_multiLineString] = ACTIONS(68), - [sym_identifier] = ACTIONS(71), - [sym_identifierDeprecated] = ACTIONS(74), - [sym_system] = ACTIONS(68), - [sym_comment] = ACTIONS(77), - [sym_tripleMinus] = ACTIONS(80), - [sym_openParen] = ACTIONS(83), - [sym_openCurly] = ACTIONS(86), - [sym_openBracket] = ACTIONS(89), - [anon_sym_CARET] = ACTIONS(92), - [anon_sym_eta] = ACTIONS(95), - [anon_sym_2] = ACTIONS(98), - [anon_sym_pi] = ACTIONS(98), - [anon_sym_3] = ACTIONS(98), - [anon_sym_tau] = ACTIONS(95), - [anon_sym_4] = ACTIONS(98), - [anon_sym_infinity] = ACTIONS(95), - [anon_sym_5] = ACTIONS(95), - [anon_sym_e] = ACTIONS(98), - [anon_sym_NaN] = ACTIONS(98), - [anon_sym_NumProcs] = ACTIONS(98), - [anon_sym_DOT] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_COLON] = ACTIONS(101), - [anon_sym_SEMI] = ACTIONS(101), - [anon_sym_identity] = ACTIONS(101), - [anon_sym_id] = ACTIONS(104), - [anon_sym_6] = ACTIONS(101), - [anon_sym_not] = ACTIONS(101), - [anon_sym_7] = ACTIONS(101), - [anon_sym_sign] = ACTIONS(101), - [anon_sym_8] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_9] = ACTIONS(104), - [anon_sym_absolutevalue] = ACTIONS(101), - [anon_sym_10] = ACTIONS(101), - [anon_sym_sqrt] = ACTIONS(101), - [anon_sym_11] = ACTIONS(101), - [anon_sym_sine] = ACTIONS(101), - [anon_sym_12] = ACTIONS(101), - [anon_sym_floor] = ACTIONS(101), - [anon_sym_13] = ACTIONS(101), - [anon_sym_ceiling] = ACTIONS(101), - [anon_sym_14] = ACTIONS(101), - [anon_sym_round] = ACTIONS(101), - [anon_sym_15] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [anon_sym_BANG_EQ] = ACTIONS(101), - [anon_sym_16] = ACTIONS(101), - [anon_sym_LT] = ACTIONS(104), - [anon_sym_LT_EQ] = ACTIONS(101), - [anon_sym_17] = ACTIONS(101), - [anon_sym_GT] = ACTIONS(104), - [anon_sym_GT_EQ] = ACTIONS(101), - [anon_sym_18] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(101), - [anon_sym_DASH] = ACTIONS(104), - [anon_sym_STAR] = ACTIONS(101), - [anon_sym_19] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(101), - [anon_sym_20] = ACTIONS(101), - [anon_sym_modulus] = ACTIONS(101), - [anon_sym_21] = ACTIONS(101), - [anon_sym_power] = ACTIONS(101), - [anon_sym_22] = ACTIONS(101), - [anon_sym_logarithm] = ACTIONS(101), - [anon_sym_23] = ACTIONS(101), - [anon_sym_minimum] = ACTIONS(101), - [anon_sym_24] = ACTIONS(101), - [anon_sym_maximum] = ACTIONS(101), - [anon_sym_25] = ACTIONS(101), - [anon_sym_atangent] = ACTIONS(101), - [anon_sym_26] = ACTIONS(101), - [anon_sym_length] = ACTIONS(101), - [anon_sym_27] = ACTIONS(101), - [anon_sym_shape] = ACTIONS(101), - [anon_sym_28] = ACTIONS(101), - [anon_sym_range] = ACTIONS(101), - [anon_sym_29] = ACTIONS(101), - [anon_sym_first] = ACTIONS(101), - [anon_sym_30] = ACTIONS(101), - [anon_sym_reverse] = ACTIONS(101), - [anon_sym_31] = ACTIONS(101), - [anon_sym_deshape] = ACTIONS(101), - [anon_sym_32] = ACTIONS(101), - [anon_sym_bits] = ACTIONS(101), - [anon_sym_33] = ACTIONS(101), - [anon_sym_transpose] = ACTIONS(101), - [anon_sym_34] = ACTIONS(101), - [anon_sym_rise] = ACTIONS(101), - [anon_sym_35] = ACTIONS(101), - [anon_sym_fall] = ACTIONS(101), - [anon_sym_36] = ACTIONS(101), - [anon_sym_where] = ACTIONS(101), - [anon_sym_37] = ACTIONS(101), - [anon_sym_classify] = ACTIONS(101), - [anon_sym_38] = ACTIONS(101), - [anon_sym_deduplicate] = ACTIONS(101), - [anon_sym_39] = ACTIONS(101), - [anon_sym_box] = ACTIONS(101), - [anon_sym_40] = ACTIONS(101), - [anon_sym_unbox] = ACTIONS(101), - [anon_sym_41] = ACTIONS(101), - [anon_sym_match] = ACTIONS(101), - [anon_sym_42] = ACTIONS(101), - [anon_sym_couple] = ACTIONS(101), - [anon_sym_43] = ACTIONS(101), - [anon_sym_join] = ACTIONS(101), - [anon_sym_44] = ACTIONS(101), - [anon_sym_select] = ACTIONS(101), - [anon_sym_45] = ACTIONS(101), - [anon_sym_pick] = ACTIONS(101), - [anon_sym_46] = ACTIONS(101), - [anon_sym_reshape] = ACTIONS(101), - [anon_sym_47] = ACTIONS(101), - [anon_sym_take] = ACTIONS(101), - [anon_sym_48] = ACTIONS(101), - [anon_sym_drop] = ACTIONS(101), - [anon_sym_49] = ACTIONS(101), - [anon_sym_rotate] = ACTIONS(101), - [anon_sym_50] = ACTIONS(101), - [anon_sym_windows] = ACTIONS(101), - [anon_sym_51] = ACTIONS(101), - [anon_sym_keep] = ACTIONS(101), - [anon_sym_52] = ACTIONS(101), - [anon_sym_find] = ACTIONS(101), - [anon_sym_53] = ACTIONS(101), - [anon_sym_member] = ACTIONS(101), - [anon_sym_54] = ACTIONS(101), - [anon_sym_indexof] = ACTIONS(101), - [anon_sym_55] = ACTIONS(101), - [anon_sym_assert] = ACTIONS(101), - [anon_sym_56] = ACTIONS(101), - [anon_sym_wait] = ACTIONS(101), - [anon_sym_parse] = ACTIONS(101), - [anon_sym_random] = ACTIONS(101), - [anon_sym_57] = ACTIONS(101), - [anon_sym_gen] = ACTIONS(101), - [anon_sym_deal] = ACTIONS(101), - [anon_sym_tag] = ACTIONS(101), - [anon_sym_now] = ACTIONS(101), - [anon_sym_type] = ACTIONS(101), - [anon_sym_58] = ACTIONS(101), - [anon_sym_dump] = ACTIONS(101), - [anon_sym_regex] = ACTIONS(101), - [anon_sym_utf] = ACTIONS(101), - [anon_sym_send] = ACTIONS(101), - [anon_sym_recv] = ACTIONS(101), - [anon_sym_tryrecv] = ACTIONS(101), - [anon_sym_complex] = ACTIONS(101), - [anon_sym_59] = ACTIONS(101), - [anon_sym_rerank] = ACTIONS(101), - [anon_sym_60] = ACTIONS(101), - [anon_sym_fix] = ACTIONS(101), - [anon_sym_61] = ACTIONS(101), - [anon_sym_reduce] = ACTIONS(107), - [anon_sym_SLASH] = ACTIONS(107), - [anon_sym_scan] = ACTIONS(107), - [anon_sym_BSLASH] = ACTIONS(107), - [anon_sym_each] = ACTIONS(107), - [anon_sym_62] = ACTIONS(107), - [anon_sym_rows] = ACTIONS(107), - [anon_sym_63] = ACTIONS(107), - [anon_sym_repeat] = ACTIONS(107), - [anon_sym_64] = ACTIONS(107), - [anon_sym_dip] = ACTIONS(107), - [anon_sym_65] = ACTIONS(107), - [anon_sym_gap] = ACTIONS(107), - [anon_sym_66] = ACTIONS(107), - [anon_sym_invert] = ACTIONS(107), - [anon_sym_67] = ACTIONS(107), - [anon_sym_spawn] = ACTIONS(107), - [anon_sym_pack] = ACTIONS(107), - [anon_sym_68] = ACTIONS(107), - [anon_sym_rectify] = ACTIONS(107), - [anon_sym_69] = ACTIONS(107), - [anon_sym_this] = ACTIONS(107), - [anon_sym_70] = ACTIONS(107), - [anon_sym_recur] = ACTIONS(107), - [anon_sym_71] = ACTIONS(107), - [anon_sym_fold] = ACTIONS(110), - [anon_sym_72] = ACTIONS(110), - [anon_sym_table] = ACTIONS(110), - [anon_sym_73] = ACTIONS(110), - [anon_sym_cross] = ACTIONS(110), - [anon_sym_74] = ACTIONS(110), - [anon_sym_group] = ACTIONS(110), - [anon_sym_75] = ACTIONS(110), - [anon_sym_partition] = ACTIONS(110), - [anon_sym_76] = ACTIONS(110), - [anon_sym_both] = ACTIONS(110), - [anon_sym_77] = ACTIONS(110), - [anon_sym_bracket] = ACTIONS(110), - [anon_sym_78] = ACTIONS(110), - [anon_sym_fork] = ACTIONS(110), - [anon_sym_79] = ACTIONS(110), - [anon_sym_under] = ACTIONS(110), - [anon_sym_80] = ACTIONS(110), - [anon_sym_fill] = ACTIONS(110), - [anon_sym_81] = ACTIONS(110), - [anon_sym_try] = ACTIONS(113), - [anon_sym_82] = ACTIONS(110), - [anon_sym_do] = ACTIONS(113), - [anon_sym_83] = ACTIONS(110), - [anon_sym_all] = ACTIONS(110), - [anon_sym_84] = ACTIONS(110), - [anon_sym_setinv] = ACTIONS(110), - [anon_sym_setunder] = ACTIONS(110), - [anon_sym_85] = ACTIONS(116), - [anon_sym_86] = ACTIONS(116), - [anon_sym_87] = ACTIONS(116), - [anon_sym_88] = ACTIONS(116), - [anon_sym_89] = ACTIONS(116), - [anon_sym_90] = ACTIONS(116), - [anon_sym_91] = ACTIONS(116), - [anon_sym_92] = ACTIONS(116), - [anon_sym_93] = ACTIONS(116), - [anon_sym_94] = ACTIONS(116), - [anon_sym_95] = ACTIONS(116), - [anon_sym_96] = ACTIONS(116), - [sym_emptyMultiLineString] = ACTIONS(119), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(57), + [sym_fraction] = ACTIONS(60), + [anon_sym_os] = ACTIONS(63), + [anon_sym_Family] = ACTIONS(63), + [anon_sym_Arch] = ACTIONS(63), + [anon_sym_ExeExt] = ACTIONS(63), + [anon_sym_PllExt] = ACTIONS(63), + [anon_sym_Sep] = ACTIONS(63), + [anon_sym_NUmProcs] = ACTIONS(63), + [anon_sym_] = ACTIONS(66), + [aux_sym_character_token1] = ACTIONS(69), + [sym_string] = ACTIONS(72), + [sym_multiLineString] = ACTIONS(72), + [sym_identifier] = ACTIONS(75), + [sym_identifierDeprecated] = ACTIONS(78), + [sym_system] = ACTIONS(72), + [sym_comment] = ACTIONS(81), + [sym_tripleMinus] = ACTIONS(84), + [sym_openParen] = ACTIONS(87), + [sym_openCurly] = ACTIONS(90), + [sym_openBracket] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(96), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(102), + [anon_sym_eta] = ACTIONS(105), + [anon_sym_2] = ACTIONS(108), + [anon_sym_pi] = ACTIONS(108), + [anon_sym_3] = ACTIONS(108), + [anon_sym_tau] = ACTIONS(105), + [anon_sym_4] = ACTIONS(108), + [anon_sym_infinity] = ACTIONS(105), + [anon_sym_5] = ACTIONS(105), + [anon_sym_e] = ACTIONS(108), + [anon_sym_NaN] = ACTIONS(108), + [anon_sym_NumProcs] = ACTIONS(108), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(111), + [anon_sym_identity] = ACTIONS(111), + [anon_sym_id] = ACTIONS(114), + [anon_sym_6] = ACTIONS(111), + [anon_sym_not] = ACTIONS(111), + [anon_sym_7] = ACTIONS(111), + [anon_sym_sign] = ACTIONS(111), + [anon_sym_8] = ACTIONS(111), + [anon_sym_BQUOTE] = ACTIONS(111), + [anon_sym_9] = ACTIONS(114), + [anon_sym_absolutevalue] = ACTIONS(111), + [anon_sym_10] = ACTIONS(111), + [anon_sym_sqrt] = ACTIONS(111), + [anon_sym_11] = ACTIONS(111), + [anon_sym_sine] = ACTIONS(111), + [anon_sym_12] = ACTIONS(111), + [anon_sym_floor] = ACTIONS(111), + [anon_sym_13] = ACTIONS(111), + [anon_sym_ceiling] = ACTIONS(111), + [anon_sym_14] = ACTIONS(111), + [anon_sym_round] = ACTIONS(111), + [anon_sym_15] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_BANG_EQ] = ACTIONS(111), + [anon_sym_16] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(111), + [anon_sym_17] = ACTIONS(111), + [anon_sym_GT] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(111), + [anon_sym_18] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_19] = ACTIONS(111), + [anon_sym_PERCENT] = ACTIONS(111), + [anon_sym_20] = ACTIONS(111), + [anon_sym_modulus] = ACTIONS(111), + [anon_sym_21] = ACTIONS(111), + [anon_sym_power] = ACTIONS(111), + [anon_sym_22] = ACTIONS(111), + [anon_sym_logarithm] = ACTIONS(111), + [anon_sym_23] = ACTIONS(111), + [anon_sym_minimum] = ACTIONS(111), + [anon_sym_24] = ACTIONS(111), + [anon_sym_maximum] = ACTIONS(111), + [anon_sym_25] = ACTIONS(111), + [anon_sym_atangent] = ACTIONS(111), + [anon_sym_26] = ACTIONS(111), + [anon_sym_length] = ACTIONS(111), + [anon_sym_27] = ACTIONS(111), + [anon_sym_shape] = ACTIONS(111), + [anon_sym_28] = ACTIONS(111), + [anon_sym_range] = ACTIONS(111), + [anon_sym_29] = ACTIONS(111), + [anon_sym_first] = ACTIONS(111), + [anon_sym_30] = ACTIONS(111), + [anon_sym_reverse] = ACTIONS(111), + [anon_sym_31] = ACTIONS(111), + [anon_sym_deshape] = ACTIONS(111), + [anon_sym_32] = ACTIONS(111), + [anon_sym_bits] = ACTIONS(111), + [anon_sym_33] = ACTIONS(111), + [anon_sym_transpose] = ACTIONS(111), + [anon_sym_34] = ACTIONS(111), + [anon_sym_rise] = ACTIONS(111), + [anon_sym_35] = ACTIONS(111), + [anon_sym_fall] = ACTIONS(111), + [anon_sym_36] = ACTIONS(111), + [anon_sym_where] = ACTIONS(111), + [anon_sym_37] = ACTIONS(111), + [anon_sym_classify] = ACTIONS(111), + [anon_sym_38] = ACTIONS(111), + [anon_sym_deduplicate] = ACTIONS(111), + [anon_sym_39] = ACTIONS(111), + [anon_sym_box] = ACTIONS(111), + [anon_sym_40] = ACTIONS(111), + [anon_sym_unbox] = ACTIONS(111), + [anon_sym_41] = ACTIONS(111), + [anon_sym_match] = ACTIONS(111), + [anon_sym_42] = ACTIONS(111), + [anon_sym_couple] = ACTIONS(111), + [anon_sym_43] = ACTIONS(111), + [anon_sym_join] = ACTIONS(111), + [anon_sym_44] = ACTIONS(111), + [anon_sym_select] = ACTIONS(111), + [anon_sym_45] = ACTIONS(111), + [anon_sym_pick] = ACTIONS(111), + [anon_sym_46] = ACTIONS(111), + [anon_sym_reshape] = ACTIONS(111), + [anon_sym_47] = ACTIONS(111), + [anon_sym_take] = ACTIONS(111), + [anon_sym_48] = ACTIONS(111), + [anon_sym_drop] = ACTIONS(111), + [anon_sym_49] = ACTIONS(111), + [anon_sym_rotate] = ACTIONS(111), + [anon_sym_50] = ACTIONS(111), + [anon_sym_windows] = ACTIONS(111), + [anon_sym_51] = ACTIONS(111), + [anon_sym_keep] = ACTIONS(111), + [anon_sym_52] = ACTIONS(111), + [anon_sym_find] = ACTIONS(111), + [anon_sym_53] = ACTIONS(111), + [anon_sym_member] = ACTIONS(111), + [anon_sym_54] = ACTIONS(111), + [anon_sym_indexof] = ACTIONS(111), + [anon_sym_55] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(111), + [anon_sym_56] = ACTIONS(111), + [anon_sym_wait] = ACTIONS(111), + [anon_sym_parse] = ACTIONS(111), + [anon_sym_random] = ACTIONS(111), + [anon_sym_57] = ACTIONS(111), + [anon_sym_gen] = ACTIONS(111), + [anon_sym_deal] = ACTIONS(111), + [anon_sym_tag] = ACTIONS(111), + [anon_sym_now] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_58] = ACTIONS(111), + [anon_sym_dump] = ACTIONS(111), + [anon_sym_regex] = ACTIONS(111), + [anon_sym_utf] = ACTIONS(111), + [anon_sym_send] = ACTIONS(111), + [anon_sym_recv] = ACTIONS(111), + [anon_sym_tryrecv] = ACTIONS(111), + [anon_sym_complex] = ACTIONS(111), + [anon_sym_59] = ACTIONS(111), + [anon_sym_rerank] = ACTIONS(111), + [anon_sym_60] = ACTIONS(111), + [anon_sym_fix] = ACTIONS(111), + [anon_sym_61] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(111), + [anon_sym_reduce] = ACTIONS(117), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_scan] = ACTIONS(117), + [anon_sym_BSLASH] = ACTIONS(117), + [anon_sym_each] = ACTIONS(117), + [anon_sym_62] = ACTIONS(117), + [anon_sym_rows] = ACTIONS(117), + [anon_sym_63] = ACTIONS(117), + [anon_sym_repeat] = ACTIONS(117), + [anon_sym_64] = ACTIONS(117), + [anon_sym_dip] = ACTIONS(117), + [anon_sym_65] = ACTIONS(117), + [anon_sym_gap] = ACTIONS(117), + [anon_sym_66] = ACTIONS(117), + [anon_sym_invert] = ACTIONS(117), + [anon_sym_67] = ACTIONS(117), + [anon_sym_spawn] = ACTIONS(117), + [anon_sym_pack] = ACTIONS(117), + [anon_sym_68] = ACTIONS(117), + [anon_sym_rectify] = ACTIONS(117), + [anon_sym_69] = ACTIONS(117), + [anon_sym_this] = ACTIONS(117), + [anon_sym_70] = ACTIONS(117), + [anon_sym_recur] = ACTIONS(117), + [anon_sym_71] = ACTIONS(117), + [anon_sym_fold] = ACTIONS(120), + [anon_sym_72] = ACTIONS(120), + [anon_sym_table] = ACTIONS(120), + [anon_sym_73] = ACTIONS(120), + [anon_sym_cross] = ACTIONS(120), + [anon_sym_74] = ACTIONS(120), + [anon_sym_group] = ACTIONS(120), + [anon_sym_75] = ACTIONS(120), + [anon_sym_partition] = ACTIONS(120), + [anon_sym_76] = ACTIONS(120), + [anon_sym_both] = ACTIONS(120), + [anon_sym_77] = ACTIONS(120), + [anon_sym_bracket] = ACTIONS(120), + [anon_sym_78] = ACTIONS(120), + [anon_sym_fork] = ACTIONS(120), + [anon_sym_79] = ACTIONS(120), + [anon_sym_under] = ACTIONS(120), + [anon_sym_80] = ACTIONS(120), + [anon_sym_fill] = ACTIONS(120), + [anon_sym_81] = ACTIONS(120), + [anon_sym_try] = ACTIONS(123), + [anon_sym_82] = ACTIONS(120), + [anon_sym_do] = ACTIONS(123), + [anon_sym_83] = ACTIONS(120), + [anon_sym_all] = ACTIONS(120), + [anon_sym_84] = ACTIONS(120), + [anon_sym_setinv] = ACTIONS(120), + [anon_sym_setunder] = ACTIONS(120), + [anon_sym_85] = ACTIONS(126), + [anon_sym_86] = ACTIONS(126), + [anon_sym_87] = ACTIONS(126), + [anon_sym_88] = ACTIONS(126), + [anon_sym_89] = ACTIONS(126), + [anon_sym_90] = ACTIONS(126), + [anon_sym_91] = ACTIONS(126), + [anon_sym_92] = ACTIONS(126), + [sym_emptyMultiLineString] = ACTIONS(129), [sym__endOfLine] = ACTIONS(5), }, [3] = { - [sym_binding] = STATE(214), - [sym_module] = STATE(214), - [sym_segment] = STATE(214), - [sym_term] = STATE(26), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_binding] = STATE(233), + [sym_module] = STATE(233), + [sym_segment] = STATE(233), + [sym_term] = STATE(16), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), [aux_sym_PROGRAM_repeat1] = STATE(2), - [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat1] = STATE(78), [aux_sym_number_token1] = ACTIONS(7), [sym_fraction] = ACTIONS(9), [anon_sym_os] = ACTIONS(11), @@ -7214,3025 +7213,3277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_openCurly] = ACTIONS(29), [sym_openBracket] = ACTIONS(31), [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym_emptyMultiLineString] = ACTIONS(122), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), + [sym_emptyMultiLineString] = ACTIONS(132), [sym__endOfLine] = ACTIONS(5), }, [4] = { - [sym_segment] = STATE(220), - [sym_term] = STATE(5), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(62), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(210), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_branchSeparator] = STATE(146), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_switchFunctions_repeat1] = STATE(32), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(146), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_closeParen] = ACTIONS(154), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_underscore] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [5] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_branchSeparator] = STATE(162), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(210), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_branchSeparator] = STATE(163), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(166), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_closeParen] = ACTIONS(168), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_underscore] = ACTIONS(170), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(146), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_closeParen] = ACTIONS(154), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_underscore] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [6] = { - [sym_segment] = STATE(220), - [sym_term] = STATE(5), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(62), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(231), + [sym_term] = STATE(4), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(55), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_switchFunctions_repeat1] = STATE(35), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(59), + [aux_sym_switchFunctions_repeat1] = STATE(31), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [7] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_branchSeparator] = STATE(155), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(231), + [sym_term] = STATE(4), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(55), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(166), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_closeParen] = ACTIONS(168), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_underscore] = ACTIONS(170), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(59), + [aux_sym_switchFunctions_repeat1] = STATE(36), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), }, [8] = { - [sym_segment] = STATE(222), - [sym_term] = STATE(18), - [sym_inlineFunction] = STATE(222), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(68), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(216), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(51), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(172), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [9] = { - [sym_segment] = STATE(142), - [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(229), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(66), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(174), - [sym_fraction] = ACTIONS(177), - [anon_sym_os] = ACTIONS(180), - [anon_sym_Family] = ACTIONS(180), - [anon_sym_Arch] = ACTIONS(180), - [anon_sym_ExeExt] = ACTIONS(180), - [anon_sym_PllExt] = ACTIONS(180), - [anon_sym_Sep] = ACTIONS(180), - [anon_sym_NUmProcs] = ACTIONS(180), - [anon_sym_] = ACTIONS(183), - [aux_sym_character_token1] = ACTIONS(186), - [sym_string] = ACTIONS(189), - [sym_multiLineString] = ACTIONS(189), - [sym_identifier] = ACTIONS(192), - [sym_identifierDeprecated] = ACTIONS(192), - [sym_system] = ACTIONS(189), - [sym_comment] = ACTIONS(195), - [sym_openParen] = ACTIONS(198), - [sym_openCurly] = ACTIONS(201), - [sym_closeCurly] = ACTIONS(204), - [sym_openBracket] = ACTIONS(206), - [sym_closeBracket] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_eta] = ACTIONS(212), - [anon_sym_2] = ACTIONS(215), - [anon_sym_pi] = ACTIONS(215), - [anon_sym_3] = ACTIONS(215), - [anon_sym_tau] = ACTIONS(212), - [anon_sym_4] = ACTIONS(215), - [anon_sym_infinity] = ACTIONS(212), - [anon_sym_5] = ACTIONS(212), - [anon_sym_e] = ACTIONS(215), - [anon_sym_NaN] = ACTIONS(215), - [anon_sym_NumProcs] = ACTIONS(215), - [anon_sym_DOT] = ACTIONS(218), - [anon_sym_COMMA] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_SEMI] = ACTIONS(218), - [anon_sym_identity] = ACTIONS(218), - [anon_sym_id] = ACTIONS(221), - [anon_sym_6] = ACTIONS(218), - [anon_sym_not] = ACTIONS(218), - [anon_sym_7] = ACTIONS(218), - [anon_sym_sign] = ACTIONS(218), - [anon_sym_8] = ACTIONS(218), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_9] = ACTIONS(221), - [anon_sym_absolutevalue] = ACTIONS(218), - [anon_sym_10] = ACTIONS(218), - [anon_sym_sqrt] = ACTIONS(218), - [anon_sym_11] = ACTIONS(218), - [anon_sym_sine] = ACTIONS(218), - [anon_sym_12] = ACTIONS(218), - [anon_sym_floor] = ACTIONS(218), - [anon_sym_13] = ACTIONS(218), - [anon_sym_ceiling] = ACTIONS(218), - [anon_sym_14] = ACTIONS(218), - [anon_sym_round] = ACTIONS(218), - [anon_sym_15] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_16] = ACTIONS(218), - [anon_sym_LT] = ACTIONS(221), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_17] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(221), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_18] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(218), - [anon_sym_DASH] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(218), - [anon_sym_19] = ACTIONS(218), - [anon_sym_PERCENT] = ACTIONS(218), - [anon_sym_20] = ACTIONS(218), - [anon_sym_modulus] = ACTIONS(218), - [anon_sym_21] = ACTIONS(218), - [anon_sym_power] = ACTIONS(218), - [anon_sym_22] = ACTIONS(218), - [anon_sym_logarithm] = ACTIONS(218), - [anon_sym_23] = ACTIONS(218), - [anon_sym_minimum] = ACTIONS(218), - [anon_sym_24] = ACTIONS(218), - [anon_sym_maximum] = ACTIONS(218), - [anon_sym_25] = ACTIONS(218), - [anon_sym_atangent] = ACTIONS(218), - [anon_sym_26] = ACTIONS(218), - [anon_sym_length] = ACTIONS(218), - [anon_sym_27] = ACTIONS(218), - [anon_sym_shape] = ACTIONS(218), - [anon_sym_28] = ACTIONS(218), - [anon_sym_range] = ACTIONS(218), - [anon_sym_29] = ACTIONS(218), - [anon_sym_first] = ACTIONS(218), - [anon_sym_30] = ACTIONS(218), - [anon_sym_reverse] = ACTIONS(218), - [anon_sym_31] = ACTIONS(218), - [anon_sym_deshape] = ACTIONS(218), - [anon_sym_32] = ACTIONS(218), - [anon_sym_bits] = ACTIONS(218), - [anon_sym_33] = ACTIONS(218), - [anon_sym_transpose] = ACTIONS(218), - [anon_sym_34] = ACTIONS(218), - [anon_sym_rise] = ACTIONS(218), - [anon_sym_35] = ACTIONS(218), - [anon_sym_fall] = ACTIONS(218), - [anon_sym_36] = ACTIONS(218), - [anon_sym_where] = ACTIONS(218), - [anon_sym_37] = ACTIONS(218), - [anon_sym_classify] = ACTIONS(218), - [anon_sym_38] = ACTIONS(218), - [anon_sym_deduplicate] = ACTIONS(218), - [anon_sym_39] = ACTIONS(218), - [anon_sym_box] = ACTIONS(218), - [anon_sym_40] = ACTIONS(218), - [anon_sym_unbox] = ACTIONS(218), - [anon_sym_41] = ACTIONS(218), - [anon_sym_match] = ACTIONS(218), - [anon_sym_42] = ACTIONS(218), - [anon_sym_couple] = ACTIONS(218), - [anon_sym_43] = ACTIONS(218), - [anon_sym_join] = ACTIONS(218), - [anon_sym_44] = ACTIONS(218), - [anon_sym_select] = ACTIONS(218), - [anon_sym_45] = ACTIONS(218), - [anon_sym_pick] = ACTIONS(218), - [anon_sym_46] = ACTIONS(218), - [anon_sym_reshape] = ACTIONS(218), - [anon_sym_47] = ACTIONS(218), - [anon_sym_take] = ACTIONS(218), - [anon_sym_48] = ACTIONS(218), - [anon_sym_drop] = ACTIONS(218), - [anon_sym_49] = ACTIONS(218), - [anon_sym_rotate] = ACTIONS(218), - [anon_sym_50] = ACTIONS(218), - [anon_sym_windows] = ACTIONS(218), - [anon_sym_51] = ACTIONS(218), - [anon_sym_keep] = ACTIONS(218), - [anon_sym_52] = ACTIONS(218), - [anon_sym_find] = ACTIONS(218), - [anon_sym_53] = ACTIONS(218), - [anon_sym_member] = ACTIONS(218), - [anon_sym_54] = ACTIONS(218), - [anon_sym_indexof] = ACTIONS(218), - [anon_sym_55] = ACTIONS(218), - [anon_sym_assert] = ACTIONS(218), - [anon_sym_56] = ACTIONS(218), - [anon_sym_wait] = ACTIONS(218), - [anon_sym_parse] = ACTIONS(218), - [anon_sym_random] = ACTIONS(218), - [anon_sym_57] = ACTIONS(218), - [anon_sym_gen] = ACTIONS(218), - [anon_sym_deal] = ACTIONS(218), - [anon_sym_tag] = ACTIONS(218), - [anon_sym_now] = ACTIONS(218), - [anon_sym_type] = ACTIONS(218), - [anon_sym_58] = ACTIONS(218), - [anon_sym_dump] = ACTIONS(218), - [anon_sym_regex] = ACTIONS(218), - [anon_sym_utf] = ACTIONS(218), - [anon_sym_send] = ACTIONS(218), - [anon_sym_recv] = ACTIONS(218), - [anon_sym_tryrecv] = ACTIONS(218), - [anon_sym_complex] = ACTIONS(218), - [anon_sym_59] = ACTIONS(218), - [anon_sym_rerank] = ACTIONS(218), - [anon_sym_60] = ACTIONS(218), - [anon_sym_fix] = ACTIONS(218), - [anon_sym_61] = ACTIONS(218), - [anon_sym_reduce] = ACTIONS(224), - [anon_sym_SLASH] = ACTIONS(224), - [anon_sym_scan] = ACTIONS(224), - [anon_sym_BSLASH] = ACTIONS(224), - [anon_sym_each] = ACTIONS(224), - [anon_sym_62] = ACTIONS(224), - [anon_sym_rows] = ACTIONS(224), - [anon_sym_63] = ACTIONS(224), - [anon_sym_repeat] = ACTIONS(224), - [anon_sym_64] = ACTIONS(224), - [anon_sym_dip] = ACTIONS(224), - [anon_sym_65] = ACTIONS(224), - [anon_sym_gap] = ACTIONS(224), - [anon_sym_66] = ACTIONS(224), - [anon_sym_invert] = ACTIONS(224), - [anon_sym_67] = ACTIONS(224), - [anon_sym_spawn] = ACTIONS(224), - [anon_sym_pack] = ACTIONS(224), - [anon_sym_68] = ACTIONS(224), - [anon_sym_rectify] = ACTIONS(224), - [anon_sym_69] = ACTIONS(224), - [anon_sym_this] = ACTIONS(224), - [anon_sym_70] = ACTIONS(224), - [anon_sym_recur] = ACTIONS(224), - [anon_sym_71] = ACTIONS(224), - [anon_sym_fold] = ACTIONS(227), - [anon_sym_72] = ACTIONS(227), - [anon_sym_table] = ACTIONS(227), - [anon_sym_73] = ACTIONS(227), - [anon_sym_cross] = ACTIONS(227), - [anon_sym_74] = ACTIONS(227), - [anon_sym_group] = ACTIONS(227), - [anon_sym_75] = ACTIONS(227), - [anon_sym_partition] = ACTIONS(227), - [anon_sym_76] = ACTIONS(227), - [anon_sym_both] = ACTIONS(227), - [anon_sym_77] = ACTIONS(227), - [anon_sym_bracket] = ACTIONS(227), - [anon_sym_78] = ACTIONS(227), - [anon_sym_fork] = ACTIONS(227), - [anon_sym_79] = ACTIONS(227), - [anon_sym_under] = ACTIONS(227), - [anon_sym_80] = ACTIONS(227), - [anon_sym_fill] = ACTIONS(227), - [anon_sym_81] = ACTIONS(227), - [anon_sym_try] = ACTIONS(230), - [anon_sym_82] = ACTIONS(227), - [anon_sym_do] = ACTIONS(230), - [anon_sym_83] = ACTIONS(227), - [anon_sym_all] = ACTIONS(227), - [anon_sym_84] = ACTIONS(227), - [anon_sym_setinv] = ACTIONS(227), - [anon_sym_setunder] = ACTIONS(227), - [anon_sym_85] = ACTIONS(233), - [anon_sym_86] = ACTIONS(233), - [anon_sym_87] = ACTIONS(233), - [anon_sym_88] = ACTIONS(233), - [anon_sym_89] = ACTIONS(233), - [anon_sym_90] = ACTIONS(233), - [anon_sym_91] = ACTIONS(233), - [anon_sym_92] = ACTIONS(233), - [anon_sym_93] = ACTIONS(233), - [anon_sym_94] = ACTIONS(233), - [anon_sym_95] = ACTIONS(233), - [anon_sym_96] = ACTIONS(233), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [10] = { [sym_segment] = STATE(132), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(168), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(168), - [sym_underscore] = ACTIONS(170), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(154), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(154), + [sym_underscore] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [11] = { - [sym_segment] = STATE(240), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(69), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(238), + [sym_term] = STATE(47), + [sym_inlineFunction] = STATE(238), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(65), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(188), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [12] = { - [sym_segment] = STATE(234), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), + [sym_segment] = STATE(217), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), [sym_signature] = STATE(58), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [13] = { - [sym_segment] = STATE(213), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(50), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(53), + [sym_segment] = STATE(238), + [sym_term] = STATE(16), + [sym_inlineFunction] = STATE(238), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_signature] = STATE(57), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [aux_sym_number_token1] = ACTIONS(7), + [sym_fraction] = ACTIONS(9), + [anon_sym_os] = ACTIONS(11), + [anon_sym_Family] = ACTIONS(11), + [anon_sym_Arch] = ACTIONS(11), + [anon_sym_ExeExt] = ACTIONS(11), + [anon_sym_PllExt] = ACTIONS(11), + [anon_sym_Sep] = ACTIONS(11), + [anon_sym_NUmProcs] = ACTIONS(11), + [anon_sym_] = ACTIONS(13), + [aux_sym_character_token1] = ACTIONS(15), + [sym_string] = ACTIONS(17), + [sym_multiLineString] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(21), + [sym_identifierDeprecated] = ACTIONS(21), + [sym_system] = ACTIONS(17), + [sym_comment] = ACTIONS(23), + [sym_openParen] = ACTIONS(190), + [sym_openCurly] = ACTIONS(29), + [sym_openBracket] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), [sym__endOfLine] = ACTIONS(5), }, [14] = { - [sym_segment] = STATE(219), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_signature] = STATE(57), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(118), + [sym_term] = STATE(10), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [anon_sym_PIPE] = ACTIONS(136), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(192), + [sym_fraction] = ACTIONS(195), + [anon_sym_os] = ACTIONS(198), + [anon_sym_Family] = ACTIONS(198), + [anon_sym_Arch] = ACTIONS(198), + [anon_sym_ExeExt] = ACTIONS(198), + [anon_sym_PllExt] = ACTIONS(198), + [anon_sym_Sep] = ACTIONS(198), + [anon_sym_NUmProcs] = ACTIONS(198), + [anon_sym_] = ACTIONS(201), + [aux_sym_character_token1] = ACTIONS(204), + [sym_string] = ACTIONS(207), + [sym_multiLineString] = ACTIONS(207), + [sym_identifier] = ACTIONS(210), + [sym_identifierDeprecated] = ACTIONS(210), + [sym_system] = ACTIONS(207), + [sym_comment] = ACTIONS(213), + [sym_openParen] = ACTIONS(216), + [sym_openCurly] = ACTIONS(219), + [sym_closeCurly] = ACTIONS(222), + [sym_openBracket] = ACTIONS(224), + [sym_closeBracket] = ACTIONS(222), + [anon_sym_CARET] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(230), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(233), + [anon_sym_eta] = ACTIONS(236), + [anon_sym_2] = ACTIONS(239), + [anon_sym_pi] = ACTIONS(239), + [anon_sym_3] = ACTIONS(239), + [anon_sym_tau] = ACTIONS(236), + [anon_sym_4] = ACTIONS(239), + [anon_sym_infinity] = ACTIONS(236), + [anon_sym_5] = ACTIONS(236), + [anon_sym_e] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(239), + [anon_sym_NumProcs] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(242), + [anon_sym_SEMI] = ACTIONS(242), + [anon_sym_identity] = ACTIONS(242), + [anon_sym_id] = ACTIONS(245), + [anon_sym_6] = ACTIONS(242), + [anon_sym_not] = ACTIONS(242), + [anon_sym_7] = ACTIONS(242), + [anon_sym_sign] = ACTIONS(242), + [anon_sym_8] = ACTIONS(242), + [anon_sym_BQUOTE] = ACTIONS(242), + [anon_sym_9] = ACTIONS(245), + [anon_sym_absolutevalue] = ACTIONS(242), + [anon_sym_10] = ACTIONS(242), + [anon_sym_sqrt] = ACTIONS(242), + [anon_sym_11] = ACTIONS(242), + [anon_sym_sine] = ACTIONS(242), + [anon_sym_12] = ACTIONS(242), + [anon_sym_floor] = ACTIONS(242), + [anon_sym_13] = ACTIONS(242), + [anon_sym_ceiling] = ACTIONS(242), + [anon_sym_14] = ACTIONS(242), + [anon_sym_round] = ACTIONS(242), + [anon_sym_15] = ACTIONS(242), + [anon_sym_EQ] = ACTIONS(242), + [anon_sym_BANG_EQ] = ACTIONS(242), + [anon_sym_16] = ACTIONS(242), + [anon_sym_LT] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(242), + [anon_sym_17] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_GT_EQ] = ACTIONS(242), + [anon_sym_18] = ACTIONS(242), + [anon_sym_PLUS] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(242), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_19] = ACTIONS(242), + [anon_sym_PERCENT] = ACTIONS(242), + [anon_sym_20] = ACTIONS(242), + [anon_sym_modulus] = ACTIONS(242), + [anon_sym_21] = ACTIONS(242), + [anon_sym_power] = ACTIONS(242), + [anon_sym_22] = ACTIONS(242), + [anon_sym_logarithm] = ACTIONS(242), + [anon_sym_23] = ACTIONS(242), + [anon_sym_minimum] = ACTIONS(242), + [anon_sym_24] = ACTIONS(242), + [anon_sym_maximum] = ACTIONS(242), + [anon_sym_25] = ACTIONS(242), + [anon_sym_atangent] = ACTIONS(242), + [anon_sym_26] = ACTIONS(242), + [anon_sym_length] = ACTIONS(242), + [anon_sym_27] = ACTIONS(242), + [anon_sym_shape] = ACTIONS(242), + [anon_sym_28] = ACTIONS(242), + [anon_sym_range] = ACTIONS(242), + [anon_sym_29] = ACTIONS(242), + [anon_sym_first] = ACTIONS(242), + [anon_sym_30] = ACTIONS(242), + [anon_sym_reverse] = ACTIONS(242), + [anon_sym_31] = ACTIONS(242), + [anon_sym_deshape] = ACTIONS(242), + [anon_sym_32] = ACTIONS(242), + [anon_sym_bits] = ACTIONS(242), + [anon_sym_33] = ACTIONS(242), + [anon_sym_transpose] = ACTIONS(242), + [anon_sym_34] = ACTIONS(242), + [anon_sym_rise] = ACTIONS(242), + [anon_sym_35] = ACTIONS(242), + [anon_sym_fall] = ACTIONS(242), + [anon_sym_36] = ACTIONS(242), + [anon_sym_where] = ACTIONS(242), + [anon_sym_37] = ACTIONS(242), + [anon_sym_classify] = ACTIONS(242), + [anon_sym_38] = ACTIONS(242), + [anon_sym_deduplicate] = ACTIONS(242), + [anon_sym_39] = ACTIONS(242), + [anon_sym_box] = ACTIONS(242), + [anon_sym_40] = ACTIONS(242), + [anon_sym_unbox] = ACTIONS(242), + [anon_sym_41] = ACTIONS(242), + [anon_sym_match] = ACTIONS(242), + [anon_sym_42] = ACTIONS(242), + [anon_sym_couple] = ACTIONS(242), + [anon_sym_43] = ACTIONS(242), + [anon_sym_join] = ACTIONS(242), + [anon_sym_44] = ACTIONS(242), + [anon_sym_select] = ACTIONS(242), + [anon_sym_45] = ACTIONS(242), + [anon_sym_pick] = ACTIONS(242), + [anon_sym_46] = ACTIONS(242), + [anon_sym_reshape] = ACTIONS(242), + [anon_sym_47] = ACTIONS(242), + [anon_sym_take] = ACTIONS(242), + [anon_sym_48] = ACTIONS(242), + [anon_sym_drop] = ACTIONS(242), + [anon_sym_49] = ACTIONS(242), + [anon_sym_rotate] = ACTIONS(242), + [anon_sym_50] = ACTIONS(242), + [anon_sym_windows] = ACTIONS(242), + [anon_sym_51] = ACTIONS(242), + [anon_sym_keep] = ACTIONS(242), + [anon_sym_52] = ACTIONS(242), + [anon_sym_find] = ACTIONS(242), + [anon_sym_53] = ACTIONS(242), + [anon_sym_member] = ACTIONS(242), + [anon_sym_54] = ACTIONS(242), + [anon_sym_indexof] = ACTIONS(242), + [anon_sym_55] = ACTIONS(242), + [anon_sym_assert] = ACTIONS(242), + [anon_sym_56] = ACTIONS(242), + [anon_sym_wait] = ACTIONS(242), + [anon_sym_parse] = ACTIONS(242), + [anon_sym_random] = ACTIONS(242), + [anon_sym_57] = ACTIONS(242), + [anon_sym_gen] = ACTIONS(242), + [anon_sym_deal] = ACTIONS(242), + [anon_sym_tag] = ACTIONS(242), + [anon_sym_now] = ACTIONS(242), + [anon_sym_type] = ACTIONS(242), + [anon_sym_58] = ACTIONS(242), + [anon_sym_dump] = ACTIONS(242), + [anon_sym_regex] = ACTIONS(242), + [anon_sym_utf] = ACTIONS(242), + [anon_sym_send] = ACTIONS(242), + [anon_sym_recv] = ACTIONS(242), + [anon_sym_tryrecv] = ACTIONS(242), + [anon_sym_complex] = ACTIONS(242), + [anon_sym_59] = ACTIONS(242), + [anon_sym_rerank] = ACTIONS(242), + [anon_sym_60] = ACTIONS(242), + [anon_sym_fix] = ACTIONS(242), + [anon_sym_61] = ACTIONS(242), + [anon_sym_QMARK] = ACTIONS(242), + [anon_sym_reduce] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_scan] = ACTIONS(248), + [anon_sym_BSLASH] = ACTIONS(248), + [anon_sym_each] = ACTIONS(248), + [anon_sym_62] = ACTIONS(248), + [anon_sym_rows] = ACTIONS(248), + [anon_sym_63] = ACTIONS(248), + [anon_sym_repeat] = ACTIONS(248), + [anon_sym_64] = ACTIONS(248), + [anon_sym_dip] = ACTIONS(248), + [anon_sym_65] = ACTIONS(248), + [anon_sym_gap] = ACTIONS(248), + [anon_sym_66] = ACTIONS(248), + [anon_sym_invert] = ACTIONS(248), + [anon_sym_67] = ACTIONS(248), + [anon_sym_spawn] = ACTIONS(248), + [anon_sym_pack] = ACTIONS(248), + [anon_sym_68] = ACTIONS(248), + [anon_sym_rectify] = ACTIONS(248), + [anon_sym_69] = ACTIONS(248), + [anon_sym_this] = ACTIONS(248), + [anon_sym_70] = ACTIONS(248), + [anon_sym_recur] = ACTIONS(248), + [anon_sym_71] = ACTIONS(248), + [anon_sym_fold] = ACTIONS(251), + [anon_sym_72] = ACTIONS(251), + [anon_sym_table] = ACTIONS(251), + [anon_sym_73] = ACTIONS(251), + [anon_sym_cross] = ACTIONS(251), + [anon_sym_74] = ACTIONS(251), + [anon_sym_group] = ACTIONS(251), + [anon_sym_75] = ACTIONS(251), + [anon_sym_partition] = ACTIONS(251), + [anon_sym_76] = ACTIONS(251), + [anon_sym_both] = ACTIONS(251), + [anon_sym_77] = ACTIONS(251), + [anon_sym_bracket] = ACTIONS(251), + [anon_sym_78] = ACTIONS(251), + [anon_sym_fork] = ACTIONS(251), + [anon_sym_79] = ACTIONS(251), + [anon_sym_under] = ACTIONS(251), + [anon_sym_80] = ACTIONS(251), + [anon_sym_fill] = ACTIONS(251), + [anon_sym_81] = ACTIONS(251), + [anon_sym_try] = ACTIONS(254), + [anon_sym_82] = ACTIONS(251), + [anon_sym_do] = ACTIONS(254), + [anon_sym_83] = ACTIONS(251), + [anon_sym_all] = ACTIONS(251), + [anon_sym_84] = ACTIONS(251), + [anon_sym_setinv] = ACTIONS(251), + [anon_sym_setunder] = ACTIONS(251), + [anon_sym_85] = ACTIONS(257), + [anon_sym_86] = ACTIONS(257), + [anon_sym_87] = ACTIONS(257), + [anon_sym_88] = ACTIONS(257), + [anon_sym_89] = ACTIONS(257), + [anon_sym_90] = ACTIONS(257), + [anon_sym_91] = ACTIONS(257), + [anon_sym_92] = ACTIONS(257), [sym__endOfLine] = ACTIONS(5), }, [15] = { [sym_segment] = STATE(222), - [sym_term] = STATE(26), - [sym_inlineFunction] = STATE(222), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_signature] = STATE(56), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_signature] = STATE(70), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(52), [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(184), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), + }, + [16] = { + [sym_segment] = STATE(210), + [sym_term] = STATE(16), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), + [aux_sym_array_repeat1] = STATE(78), + [ts_builtin_sym_end] = ACTIONS(154), [aux_sym_number_token1] = ACTIONS(7), [sym_fraction] = ACTIONS(9), [anon_sym_os] = ACTIONS(11), @@ -10246,10319 +10497,10318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_character_token1] = ACTIONS(15), [sym_string] = ACTIONS(17), [sym_multiLineString] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(136), [sym_identifier] = ACTIONS(21), [sym_identifierDeprecated] = ACTIONS(21), [sym_system] = ACTIONS(17), [sym_comment] = ACTIONS(23), - [sym_openParen] = ACTIONS(238), + [sym_openParen] = ACTIONS(27), [sym_openCurly] = ACTIONS(29), [sym_openBracket] = ACTIONS(31), + [sym_underscore] = ACTIONS(160), [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym__endOfLine] = ACTIONS(5), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), + [sym__endOfLine] = ACTIONS(154), }, - [16] = { - [sym_segment] = STATE(142), + [17] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(33), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(240), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, - [17] = { - [sym_segment] = STATE(142), + [18] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(242), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(22), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(262), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(264), }, - [18] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [19] = { + [sym_segment] = STATE(118), + [sym_term] = STATE(10), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_closeParen] = ACTIONS(168), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_underscore] = ACTIONS(170), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(28), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(266), }, - [19] = { - [sym_term] = STATE(189), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(81), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [20] = { + [sym_term] = STATE(183), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(76), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(32), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_switchFunctions_repeat1] = STATE(33), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, - [20] = { - [sym_segment] = STATE(142), + [21] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(35), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(312), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, - [21] = { - [sym_segment] = STATE(142), + [22] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(284), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), - }, - [22] = { - [sym_term] = STATE(189), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(81), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), - [sym_constant] = STATE(188), - [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), - [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(22), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(286), - [sym_fraction] = ACTIONS(289), - [anon_sym_os] = ACTIONS(292), - [anon_sym_Family] = ACTIONS(292), - [anon_sym_Arch] = ACTIONS(292), - [anon_sym_ExeExt] = ACTIONS(292), - [anon_sym_PllExt] = ACTIONS(292), - [anon_sym_Sep] = ACTIONS(292), - [anon_sym_NUmProcs] = ACTIONS(292), - [anon_sym_] = ACTIONS(295), - [aux_sym_character_token1] = ACTIONS(298), - [sym_string] = ACTIONS(301), - [sym_multiLineString] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(304), - [sym_identifier] = ACTIONS(307), - [sym_identifierDeprecated] = ACTIONS(307), - [sym_system] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(310), - [sym_openCurly] = ACTIONS(313), - [sym_openBracket] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_eta] = ACTIONS(322), - [anon_sym_2] = ACTIONS(325), - [anon_sym_pi] = ACTIONS(325), - [anon_sym_3] = ACTIONS(325), - [anon_sym_tau] = ACTIONS(322), - [anon_sym_4] = ACTIONS(325), - [anon_sym_infinity] = ACTIONS(322), - [anon_sym_5] = ACTIONS(322), - [anon_sym_e] = ACTIONS(325), - [anon_sym_NaN] = ACTIONS(325), - [anon_sym_NumProcs] = ACTIONS(325), - [anon_sym_DOT] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_identity] = ACTIONS(328), - [anon_sym_id] = ACTIONS(331), - [anon_sym_6] = ACTIONS(328), - [anon_sym_not] = ACTIONS(328), - [anon_sym_7] = ACTIONS(328), - [anon_sym_sign] = ACTIONS(328), - [anon_sym_8] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_9] = ACTIONS(331), - [anon_sym_absolutevalue] = ACTIONS(328), - [anon_sym_10] = ACTIONS(328), - [anon_sym_sqrt] = ACTIONS(328), - [anon_sym_11] = ACTIONS(328), - [anon_sym_sine] = ACTIONS(328), - [anon_sym_12] = ACTIONS(328), - [anon_sym_floor] = ACTIONS(328), - [anon_sym_13] = ACTIONS(328), - [anon_sym_ceiling] = ACTIONS(328), - [anon_sym_14] = ACTIONS(328), - [anon_sym_round] = ACTIONS(328), - [anon_sym_15] = ACTIONS(328), - [anon_sym_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_16] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_17] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_18] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_19] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_20] = ACTIONS(328), - [anon_sym_modulus] = ACTIONS(328), - [anon_sym_21] = ACTIONS(328), - [anon_sym_power] = ACTIONS(328), - [anon_sym_22] = ACTIONS(328), - [anon_sym_logarithm] = ACTIONS(328), - [anon_sym_23] = ACTIONS(328), - [anon_sym_minimum] = ACTIONS(328), - [anon_sym_24] = ACTIONS(328), - [anon_sym_maximum] = ACTIONS(328), - [anon_sym_25] = ACTIONS(328), - [anon_sym_atangent] = ACTIONS(328), - [anon_sym_26] = ACTIONS(328), - [anon_sym_length] = ACTIONS(328), - [anon_sym_27] = ACTIONS(328), - [anon_sym_shape] = ACTIONS(328), - [anon_sym_28] = ACTIONS(328), - [anon_sym_range] = ACTIONS(328), - [anon_sym_29] = ACTIONS(328), - [anon_sym_first] = ACTIONS(328), - [anon_sym_30] = ACTIONS(328), - [anon_sym_reverse] = ACTIONS(328), - [anon_sym_31] = ACTIONS(328), - [anon_sym_deshape] = ACTIONS(328), - [anon_sym_32] = ACTIONS(328), - [anon_sym_bits] = ACTIONS(328), - [anon_sym_33] = ACTIONS(328), - [anon_sym_transpose] = ACTIONS(328), - [anon_sym_34] = ACTIONS(328), - [anon_sym_rise] = ACTIONS(328), - [anon_sym_35] = ACTIONS(328), - [anon_sym_fall] = ACTIONS(328), - [anon_sym_36] = ACTIONS(328), - [anon_sym_where] = ACTIONS(328), - [anon_sym_37] = ACTIONS(328), - [anon_sym_classify] = ACTIONS(328), - [anon_sym_38] = ACTIONS(328), - [anon_sym_deduplicate] = ACTIONS(328), - [anon_sym_39] = ACTIONS(328), - [anon_sym_box] = ACTIONS(328), - [anon_sym_40] = ACTIONS(328), - [anon_sym_unbox] = ACTIONS(328), - [anon_sym_41] = ACTIONS(328), - [anon_sym_match] = ACTIONS(328), - [anon_sym_42] = ACTIONS(328), - [anon_sym_couple] = ACTIONS(328), - [anon_sym_43] = ACTIONS(328), - [anon_sym_join] = ACTIONS(328), - [anon_sym_44] = ACTIONS(328), - [anon_sym_select] = ACTIONS(328), - [anon_sym_45] = ACTIONS(328), - [anon_sym_pick] = ACTIONS(328), - [anon_sym_46] = ACTIONS(328), - [anon_sym_reshape] = ACTIONS(328), - [anon_sym_47] = ACTIONS(328), - [anon_sym_take] = ACTIONS(328), - [anon_sym_48] = ACTIONS(328), - [anon_sym_drop] = ACTIONS(328), - [anon_sym_49] = ACTIONS(328), - [anon_sym_rotate] = ACTIONS(328), - [anon_sym_50] = ACTIONS(328), - [anon_sym_windows] = ACTIONS(328), - [anon_sym_51] = ACTIONS(328), - [anon_sym_keep] = ACTIONS(328), - [anon_sym_52] = ACTIONS(328), - [anon_sym_find] = ACTIONS(328), - [anon_sym_53] = ACTIONS(328), - [anon_sym_member] = ACTIONS(328), - [anon_sym_54] = ACTIONS(328), - [anon_sym_indexof] = ACTIONS(328), - [anon_sym_55] = ACTIONS(328), - [anon_sym_assert] = ACTIONS(328), - [anon_sym_56] = ACTIONS(328), - [anon_sym_wait] = ACTIONS(328), - [anon_sym_parse] = ACTIONS(328), - [anon_sym_random] = ACTIONS(328), - [anon_sym_57] = ACTIONS(328), - [anon_sym_gen] = ACTIONS(328), - [anon_sym_deal] = ACTIONS(328), - [anon_sym_tag] = ACTIONS(328), - [anon_sym_now] = ACTIONS(328), - [anon_sym_type] = ACTIONS(328), - [anon_sym_58] = ACTIONS(328), - [anon_sym_dump] = ACTIONS(328), - [anon_sym_regex] = ACTIONS(328), - [anon_sym_utf] = ACTIONS(328), - [anon_sym_send] = ACTIONS(328), - [anon_sym_recv] = ACTIONS(328), - [anon_sym_tryrecv] = ACTIONS(328), - [anon_sym_complex] = ACTIONS(328), - [anon_sym_59] = ACTIONS(328), - [anon_sym_rerank] = ACTIONS(328), - [anon_sym_60] = ACTIONS(328), - [anon_sym_fix] = ACTIONS(328), - [anon_sym_61] = ACTIONS(328), - [anon_sym_reduce] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_scan] = ACTIONS(334), - [anon_sym_BSLASH] = ACTIONS(334), - [anon_sym_each] = ACTIONS(334), - [anon_sym_62] = ACTIONS(334), - [anon_sym_rows] = ACTIONS(334), - [anon_sym_63] = ACTIONS(334), - [anon_sym_repeat] = ACTIONS(334), - [anon_sym_64] = ACTIONS(334), - [anon_sym_dip] = ACTIONS(334), - [anon_sym_65] = ACTIONS(334), - [anon_sym_gap] = ACTIONS(334), - [anon_sym_66] = ACTIONS(334), - [anon_sym_invert] = ACTIONS(334), - [anon_sym_67] = ACTIONS(334), - [anon_sym_spawn] = ACTIONS(334), - [anon_sym_pack] = ACTIONS(334), - [anon_sym_68] = ACTIONS(334), - [anon_sym_rectify] = ACTIONS(334), - [anon_sym_69] = ACTIONS(334), - [anon_sym_this] = ACTIONS(334), - [anon_sym_70] = ACTIONS(334), - [anon_sym_recur] = ACTIONS(334), - [anon_sym_71] = ACTIONS(334), - [anon_sym_fold] = ACTIONS(337), - [anon_sym_72] = ACTIONS(337), - [anon_sym_table] = ACTIONS(337), - [anon_sym_73] = ACTIONS(337), - [anon_sym_cross] = ACTIONS(337), - [anon_sym_74] = ACTIONS(337), - [anon_sym_group] = ACTIONS(337), - [anon_sym_75] = ACTIONS(337), - [anon_sym_partition] = ACTIONS(337), - [anon_sym_76] = ACTIONS(337), - [anon_sym_both] = ACTIONS(337), - [anon_sym_77] = ACTIONS(337), - [anon_sym_bracket] = ACTIONS(337), - [anon_sym_78] = ACTIONS(337), - [anon_sym_fork] = ACTIONS(337), - [anon_sym_79] = ACTIONS(337), - [anon_sym_under] = ACTIONS(337), - [anon_sym_80] = ACTIONS(337), - [anon_sym_fill] = ACTIONS(337), - [anon_sym_81] = ACTIONS(337), - [anon_sym_try] = ACTIONS(340), - [anon_sym_82] = ACTIONS(337), - [anon_sym_do] = ACTIONS(340), - [anon_sym_83] = ACTIONS(337), - [anon_sym_all] = ACTIONS(337), - [anon_sym_84] = ACTIONS(337), - [anon_sym_setinv] = ACTIONS(337), - [anon_sym_setunder] = ACTIONS(337), - [anon_sym_85] = ACTIONS(343), - [anon_sym_86] = ACTIONS(343), - [anon_sym_87] = ACTIONS(343), - [anon_sym_88] = ACTIONS(343), - [anon_sym_89] = ACTIONS(343), - [anon_sym_90] = ACTIONS(343), - [anon_sym_91] = ACTIONS(343), - [anon_sym_92] = ACTIONS(343), - [anon_sym_93] = ACTIONS(343), - [anon_sym_94] = ACTIONS(343), - [anon_sym_95] = ACTIONS(343), - [anon_sym_96] = ACTIONS(343), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(312), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [23] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(28), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(346), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(348), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(314), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), }, [24] = { - [sym_term] = STATE(183), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(77), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_segment] = STATE(118), + [sym_term] = STATE(10), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(23), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), + }, + [25] = { + [sym_term] = STATE(208), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(81), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(22), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_switchFunctions_repeat1] = STATE(20), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, - [25] = { - [sym_segment] = STATE(142), + [26] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(30), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(346), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(350), - }, - [26] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(26), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_deprecated] = STATE(102), [aux_sym_array_repeat1] = STATE(80), - [ts_builtin_sym_end] = ACTIONS(168), - [aux_sym_number_token1] = ACTIONS(7), - [sym_fraction] = ACTIONS(9), - [anon_sym_os] = ACTIONS(11), - [anon_sym_Family] = ACTIONS(11), - [anon_sym_Arch] = ACTIONS(11), - [anon_sym_ExeExt] = ACTIONS(11), - [anon_sym_PllExt] = ACTIONS(11), - [anon_sym_Sep] = ACTIONS(11), - [anon_sym_NUmProcs] = ACTIONS(11), - [anon_sym_] = ACTIONS(13), - [aux_sym_character_token1] = ACTIONS(15), - [sym_string] = ACTIONS(17), - [sym_multiLineString] = ACTIONS(17), - [sym_identifier] = ACTIONS(21), - [sym_identifierDeprecated] = ACTIONS(21), - [sym_system] = ACTIONS(17), - [sym_comment] = ACTIONS(23), - [sym_openParen] = ACTIONS(27), - [sym_openCurly] = ACTIONS(29), - [sym_openBracket] = ACTIONS(31), - [sym_underscore] = ACTIONS(170), - [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym__endOfLine] = ACTIONS(168), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(316), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), }, [27] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(17), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(352), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [28] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(352), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [29] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(34), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(42), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(320), }, [30] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(40), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(318), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(322), }, [31] = { - [sym_segment] = STATE(142), - [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(41), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(354), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(356), + [sym_term] = STATE(184), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(77), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), + [sym_constant] = STATE(188), + [sym_function] = STATE(203), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), + [sym_deprecated] = STATE(203), + [aux_sym_switchFunctions_repeat1] = STATE(33), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), + [sym__endOfLine] = ACTIONS(5), }, [32] = { - [sym_term] = STATE(178), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(79), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(208), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(81), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(22), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_switchFunctions_repeat1] = STATE(36), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [33] = { - [sym_segment] = STATE(142), + [sym_term] = STATE(208), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(81), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), + [sym_constant] = STATE(188), + [sym_function] = STATE(203), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), + [sym_deprecated] = STATE(203), + [aux_sym_switchFunctions_repeat1] = STATE(33), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(324), + [sym_fraction] = ACTIONS(327), + [anon_sym_os] = ACTIONS(330), + [anon_sym_Family] = ACTIONS(330), + [anon_sym_Arch] = ACTIONS(330), + [anon_sym_ExeExt] = ACTIONS(330), + [anon_sym_PllExt] = ACTIONS(330), + [anon_sym_Sep] = ACTIONS(330), + [anon_sym_NUmProcs] = ACTIONS(330), + [anon_sym_] = ACTIONS(333), + [aux_sym_character_token1] = ACTIONS(336), + [sym_string] = ACTIONS(339), + [sym_multiLineString] = ACTIONS(339), + [anon_sym_PIPE] = ACTIONS(342), + [sym_identifier] = ACTIONS(345), + [sym_identifierDeprecated] = ACTIONS(345), + [sym_system] = ACTIONS(339), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(348), + [sym_openCurly] = ACTIONS(351), + [sym_openBracket] = ACTIONS(354), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(360), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(363), + [anon_sym_eta] = ACTIONS(366), + [anon_sym_2] = ACTIONS(369), + [anon_sym_pi] = ACTIONS(369), + [anon_sym_3] = ACTIONS(369), + [anon_sym_tau] = ACTIONS(366), + [anon_sym_4] = ACTIONS(369), + [anon_sym_infinity] = ACTIONS(366), + [anon_sym_5] = ACTIONS(366), + [anon_sym_e] = ACTIONS(369), + [anon_sym_NaN] = ACTIONS(369), + [anon_sym_NumProcs] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(372), + [anon_sym_identity] = ACTIONS(372), + [anon_sym_id] = ACTIONS(375), + [anon_sym_6] = ACTIONS(372), + [anon_sym_not] = ACTIONS(372), + [anon_sym_7] = ACTIONS(372), + [anon_sym_sign] = ACTIONS(372), + [anon_sym_8] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(372), + [anon_sym_9] = ACTIONS(375), + [anon_sym_absolutevalue] = ACTIONS(372), + [anon_sym_10] = ACTIONS(372), + [anon_sym_sqrt] = ACTIONS(372), + [anon_sym_11] = ACTIONS(372), + [anon_sym_sine] = ACTIONS(372), + [anon_sym_12] = ACTIONS(372), + [anon_sym_floor] = ACTIONS(372), + [anon_sym_13] = ACTIONS(372), + [anon_sym_ceiling] = ACTIONS(372), + [anon_sym_14] = ACTIONS(372), + [anon_sym_round] = ACTIONS(372), + [anon_sym_15] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_16] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_17] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_18] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(372), + [anon_sym_STAR] = ACTIONS(372), + [anon_sym_19] = ACTIONS(372), + [anon_sym_PERCENT] = ACTIONS(372), + [anon_sym_20] = ACTIONS(372), + [anon_sym_modulus] = ACTIONS(372), + [anon_sym_21] = ACTIONS(372), + [anon_sym_power] = ACTIONS(372), + [anon_sym_22] = ACTIONS(372), + [anon_sym_logarithm] = ACTIONS(372), + [anon_sym_23] = ACTIONS(372), + [anon_sym_minimum] = ACTIONS(372), + [anon_sym_24] = ACTIONS(372), + [anon_sym_maximum] = ACTIONS(372), + [anon_sym_25] = ACTIONS(372), + [anon_sym_atangent] = ACTIONS(372), + [anon_sym_26] = ACTIONS(372), + [anon_sym_length] = ACTIONS(372), + [anon_sym_27] = ACTIONS(372), + [anon_sym_shape] = ACTIONS(372), + [anon_sym_28] = ACTIONS(372), + [anon_sym_range] = ACTIONS(372), + [anon_sym_29] = ACTIONS(372), + [anon_sym_first] = ACTIONS(372), + [anon_sym_30] = ACTIONS(372), + [anon_sym_reverse] = ACTIONS(372), + [anon_sym_31] = ACTIONS(372), + [anon_sym_deshape] = ACTIONS(372), + [anon_sym_32] = ACTIONS(372), + [anon_sym_bits] = ACTIONS(372), + [anon_sym_33] = ACTIONS(372), + [anon_sym_transpose] = ACTIONS(372), + [anon_sym_34] = ACTIONS(372), + [anon_sym_rise] = ACTIONS(372), + [anon_sym_35] = ACTIONS(372), + [anon_sym_fall] = ACTIONS(372), + [anon_sym_36] = ACTIONS(372), + [anon_sym_where] = ACTIONS(372), + [anon_sym_37] = ACTIONS(372), + [anon_sym_classify] = ACTIONS(372), + [anon_sym_38] = ACTIONS(372), + [anon_sym_deduplicate] = ACTIONS(372), + [anon_sym_39] = ACTIONS(372), + [anon_sym_box] = ACTIONS(372), + [anon_sym_40] = ACTIONS(372), + [anon_sym_unbox] = ACTIONS(372), + [anon_sym_41] = ACTIONS(372), + [anon_sym_match] = ACTIONS(372), + [anon_sym_42] = ACTIONS(372), + [anon_sym_couple] = ACTIONS(372), + [anon_sym_43] = ACTIONS(372), + [anon_sym_join] = ACTIONS(372), + [anon_sym_44] = ACTIONS(372), + [anon_sym_select] = ACTIONS(372), + [anon_sym_45] = ACTIONS(372), + [anon_sym_pick] = ACTIONS(372), + [anon_sym_46] = ACTIONS(372), + [anon_sym_reshape] = ACTIONS(372), + [anon_sym_47] = ACTIONS(372), + [anon_sym_take] = ACTIONS(372), + [anon_sym_48] = ACTIONS(372), + [anon_sym_drop] = ACTIONS(372), + [anon_sym_49] = ACTIONS(372), + [anon_sym_rotate] = ACTIONS(372), + [anon_sym_50] = ACTIONS(372), + [anon_sym_windows] = ACTIONS(372), + [anon_sym_51] = ACTIONS(372), + [anon_sym_keep] = ACTIONS(372), + [anon_sym_52] = ACTIONS(372), + [anon_sym_find] = ACTIONS(372), + [anon_sym_53] = ACTIONS(372), + [anon_sym_member] = ACTIONS(372), + [anon_sym_54] = ACTIONS(372), + [anon_sym_indexof] = ACTIONS(372), + [anon_sym_55] = ACTIONS(372), + [anon_sym_assert] = ACTIONS(372), + [anon_sym_56] = ACTIONS(372), + [anon_sym_wait] = ACTIONS(372), + [anon_sym_parse] = ACTIONS(372), + [anon_sym_random] = ACTIONS(372), + [anon_sym_57] = ACTIONS(372), + [anon_sym_gen] = ACTIONS(372), + [anon_sym_deal] = ACTIONS(372), + [anon_sym_tag] = ACTIONS(372), + [anon_sym_now] = ACTIONS(372), + [anon_sym_type] = ACTIONS(372), + [anon_sym_58] = ACTIONS(372), + [anon_sym_dump] = ACTIONS(372), + [anon_sym_regex] = ACTIONS(372), + [anon_sym_utf] = ACTIONS(372), + [anon_sym_send] = ACTIONS(372), + [anon_sym_recv] = ACTIONS(372), + [anon_sym_tryrecv] = ACTIONS(372), + [anon_sym_complex] = ACTIONS(372), + [anon_sym_59] = ACTIONS(372), + [anon_sym_rerank] = ACTIONS(372), + [anon_sym_60] = ACTIONS(372), + [anon_sym_fix] = ACTIONS(372), + [anon_sym_61] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(378), + [anon_sym_SLASH] = ACTIONS(378), + [anon_sym_scan] = ACTIONS(378), + [anon_sym_BSLASH] = ACTIONS(378), + [anon_sym_each] = ACTIONS(378), + [anon_sym_62] = ACTIONS(378), + [anon_sym_rows] = ACTIONS(378), + [anon_sym_63] = ACTIONS(378), + [anon_sym_repeat] = ACTIONS(378), + [anon_sym_64] = ACTIONS(378), + [anon_sym_dip] = ACTIONS(378), + [anon_sym_65] = ACTIONS(378), + [anon_sym_gap] = ACTIONS(378), + [anon_sym_66] = ACTIONS(378), + [anon_sym_invert] = ACTIONS(378), + [anon_sym_67] = ACTIONS(378), + [anon_sym_spawn] = ACTIONS(378), + [anon_sym_pack] = ACTIONS(378), + [anon_sym_68] = ACTIONS(378), + [anon_sym_rectify] = ACTIONS(378), + [anon_sym_69] = ACTIONS(378), + [anon_sym_this] = ACTIONS(378), + [anon_sym_70] = ACTIONS(378), + [anon_sym_recur] = ACTIONS(378), + [anon_sym_71] = ACTIONS(378), + [anon_sym_fold] = ACTIONS(381), + [anon_sym_72] = ACTIONS(381), + [anon_sym_table] = ACTIONS(381), + [anon_sym_73] = ACTIONS(381), + [anon_sym_cross] = ACTIONS(381), + [anon_sym_74] = ACTIONS(381), + [anon_sym_group] = ACTIONS(381), + [anon_sym_75] = ACTIONS(381), + [anon_sym_partition] = ACTIONS(381), + [anon_sym_76] = ACTIONS(381), + [anon_sym_both] = ACTIONS(381), + [anon_sym_77] = ACTIONS(381), + [anon_sym_bracket] = ACTIONS(381), + [anon_sym_78] = ACTIONS(381), + [anon_sym_fork] = ACTIONS(381), + [anon_sym_79] = ACTIONS(381), + [anon_sym_under] = ACTIONS(381), + [anon_sym_80] = ACTIONS(381), + [anon_sym_fill] = ACTIONS(381), + [anon_sym_81] = ACTIONS(381), + [anon_sym_try] = ACTIONS(384), + [anon_sym_82] = ACTIONS(381), + [anon_sym_do] = ACTIONS(384), + [anon_sym_83] = ACTIONS(381), + [anon_sym_all] = ACTIONS(381), + [anon_sym_84] = ACTIONS(381), + [anon_sym_setinv] = ACTIONS(381), + [anon_sym_setunder] = ACTIONS(381), + [anon_sym_85] = ACTIONS(387), + [anon_sym_86] = ACTIONS(387), + [anon_sym_87] = ACTIONS(387), + [anon_sym_88] = ACTIONS(387), + [anon_sym_89] = ACTIONS(387), + [anon_sym_90] = ACTIONS(387), + [anon_sym_91] = ACTIONS(387), + [anon_sym_92] = ACTIONS(387), + [sym__endOfLine] = ACTIONS(5), + }, + [34] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(358), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(260), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, - [34] = { - [sym_segment] = STATE(142), + [35] = { + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(314), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, - [35] = { + [36] = { [sym_term] = STATE(181), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(74), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_signature] = STATE(73), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(22), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_switchFunctions_repeat1] = STATE(33), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), - [sym__endOfLine] = ACTIONS(5), - }, - [36] = { - [sym_segment] = STATE(142), - [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(358), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [37] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(21), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(360), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [38] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(240), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(26), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(392), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [39] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(360), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(17), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [40] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(20), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(360), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(392), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [41] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(360), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(27), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [42] = { - [sym_term] = STATE(189), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_signature] = STATE(81), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), - [sym_constant] = STATE(188), - [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), - [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(24), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_segment] = STATE(118), + [sym_term] = STATE(10), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [43] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(9), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(240), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(14), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(390), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [44] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(36), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(240), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(34), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(390), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [45] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(38), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(362), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(364), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_array_repeat2] = STATE(37), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(396), }, [46] = { - [sym_segment] = STATE(142), + [sym_segment] = STATE(118), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), [aux_sym_array_repeat2] = STATE(43), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(362), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(366), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(394), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(398), }, [47] = { - [sym_segment] = STATE(142), - [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(210), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_array_repeat2] = STATE(39), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(354), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(368), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_closeParen] = ACTIONS(154), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [sym_underscore] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [48] = { - [sym_term] = STATE(189), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), + [sym_term] = STATE(208), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), [sym_signature] = STATE(81), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_switchFunctions_repeat1] = STATE(35), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_switchFunctions_repeat1] = STATE(31), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(280), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [49] = { [sym_segment] = STATE(132), [sym_term] = STATE(10), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(236), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_closeCurly] = ACTIONS(168), - [sym_openBracket] = ACTIONS(146), - [sym_closeBracket] = ACTIONS(168), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(186), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_closeCurly] = ACTIONS(154), + [sym_openBracket] = ACTIONS(158), + [sym_closeBracket] = ACTIONS(154), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [50] = { - [sym_segment] = STATE(215), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(225), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [51] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(218), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_closeParen] = ACTIONS(168), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(168), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(56), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), }, [52] = { - [sym_segment] = STATE(244), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(224), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [53] = { - [sym_segment] = STATE(215), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(248), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [54] = { - [sym_segment] = STATE(207), - [sym_term] = STATE(26), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_segment] = STATE(210), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), [aux_sym_array_repeat1] = STATE(80), - [ts_builtin_sym_end] = ACTIONS(168), - [aux_sym_number_token1] = ACTIONS(7), - [sym_fraction] = ACTIONS(9), - [anon_sym_os] = ACTIONS(11), - [anon_sym_Family] = ACTIONS(11), - [anon_sym_Arch] = ACTIONS(11), - [anon_sym_ExeExt] = ACTIONS(11), - [anon_sym_PllExt] = ACTIONS(11), - [anon_sym_Sep] = ACTIONS(11), - [anon_sym_NUmProcs] = ACTIONS(11), - [anon_sym_] = ACTIONS(13), - [aux_sym_character_token1] = ACTIONS(15), - [sym_string] = ACTIONS(17), - [sym_multiLineString] = ACTIONS(17), - [sym_identifier] = ACTIONS(21), - [sym_identifierDeprecated] = ACTIONS(21), - [sym_system] = ACTIONS(17), - [sym_comment] = ACTIONS(23), - [sym_openParen] = ACTIONS(27), - [sym_openCurly] = ACTIONS(29), - [sym_openBracket] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym__endOfLine] = ACTIONS(168), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_closeParen] = ACTIONS(154), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(154), }, [55] = { - [sym_segment] = STATE(235), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(230), + [sym_term] = STATE(5), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(50), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [56] = { - [sym_segment] = STATE(209), - [sym_term] = STATE(26), - [sym_inlineFunction] = STATE(209), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), + [sym_segment] = STATE(220), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), + [sym__endOfLine] = ACTIONS(5), + }, + [57] = { + [sym_segment] = STATE(237), + [sym_term] = STATE(16), + [sym_inlineFunction] = STATE(237), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), + [aux_sym_array_repeat1] = STATE(78), [aux_sym_number_token1] = ACTIONS(7), [sym_fraction] = ACTIONS(9), [anon_sym_os] = ACTIONS(11), @@ -20576,5995 +20826,5495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifierDeprecated] = ACTIONS(21), [sym_system] = ACTIONS(17), [sym_comment] = ACTIONS(23), - [sym_openParen] = ACTIONS(238), + [sym_openParen] = ACTIONS(190), [sym_openCurly] = ACTIONS(29), [sym_openBracket] = ACTIONS(31), [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), - [sym__endOfLine] = ACTIONS(5), - }, - [57] = { - [sym_segment] = STATE(221), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), [sym__endOfLine] = ACTIONS(5), }, [58] = { - [sym_segment] = STATE(227), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(213), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), + [sym_deprecated] = STATE(102), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [59] = { - [sym_segment] = STATE(245), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(230), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(370), - [sym_fraction] = ACTIONS(373), - [anon_sym_os] = ACTIONS(376), - [anon_sym_Family] = ACTIONS(376), - [anon_sym_Arch] = ACTIONS(376), - [anon_sym_ExeExt] = ACTIONS(376), - [anon_sym_PllExt] = ACTIONS(376), - [anon_sym_Sep] = ACTIONS(376), - [anon_sym_NUmProcs] = ACTIONS(376), - [anon_sym_] = ACTIONS(379), - [aux_sym_character_token1] = ACTIONS(382), - [sym_string] = ACTIONS(385), - [sym_multiLineString] = ACTIONS(385), - [sym_identifier] = ACTIONS(388), - [sym_identifierDeprecated] = ACTIONS(388), - [sym_system] = ACTIONS(385), - [sym_comment] = ACTIONS(391), - [sym_openParen] = ACTIONS(394), - [sym_openCurly] = ACTIONS(397), - [sym_openBracket] = ACTIONS(400), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_eta] = ACTIONS(406), - [anon_sym_2] = ACTIONS(409), - [anon_sym_pi] = ACTIONS(409), - [anon_sym_3] = ACTIONS(409), - [anon_sym_tau] = ACTIONS(406), - [anon_sym_4] = ACTIONS(409), - [anon_sym_infinity] = ACTIONS(406), - [anon_sym_5] = ACTIONS(406), - [anon_sym_e] = ACTIONS(409), - [anon_sym_NaN] = ACTIONS(409), - [anon_sym_NumProcs] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(412), - [anon_sym_COMMA] = ACTIONS(412), - [anon_sym_COLON] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(412), - [anon_sym_identity] = ACTIONS(412), - [anon_sym_id] = ACTIONS(415), - [anon_sym_6] = ACTIONS(412), - [anon_sym_not] = ACTIONS(412), - [anon_sym_7] = ACTIONS(412), - [anon_sym_sign] = ACTIONS(412), - [anon_sym_8] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_9] = ACTIONS(415), - [anon_sym_absolutevalue] = ACTIONS(412), - [anon_sym_10] = ACTIONS(412), - [anon_sym_sqrt] = ACTIONS(412), - [anon_sym_11] = ACTIONS(412), - [anon_sym_sine] = ACTIONS(412), - [anon_sym_12] = ACTIONS(412), - [anon_sym_floor] = ACTIONS(412), - [anon_sym_13] = ACTIONS(412), - [anon_sym_ceiling] = ACTIONS(412), - [anon_sym_14] = ACTIONS(412), - [anon_sym_round] = ACTIONS(412), - [anon_sym_15] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_BANG_EQ] = ACTIONS(412), - [anon_sym_16] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_LT_EQ] = ACTIONS(412), - [anon_sym_17] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_GT_EQ] = ACTIONS(412), - [anon_sym_18] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_19] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_20] = ACTIONS(412), - [anon_sym_modulus] = ACTIONS(412), - [anon_sym_21] = ACTIONS(412), - [anon_sym_power] = ACTIONS(412), - [anon_sym_22] = ACTIONS(412), - [anon_sym_logarithm] = ACTIONS(412), - [anon_sym_23] = ACTIONS(412), - [anon_sym_minimum] = ACTIONS(412), - [anon_sym_24] = ACTIONS(412), - [anon_sym_maximum] = ACTIONS(412), - [anon_sym_25] = ACTIONS(412), - [anon_sym_atangent] = ACTIONS(412), - [anon_sym_26] = ACTIONS(412), - [anon_sym_length] = ACTIONS(412), - [anon_sym_27] = ACTIONS(412), - [anon_sym_shape] = ACTIONS(412), - [anon_sym_28] = ACTIONS(412), - [anon_sym_range] = ACTIONS(412), - [anon_sym_29] = ACTIONS(412), - [anon_sym_first] = ACTIONS(412), - [anon_sym_30] = ACTIONS(412), - [anon_sym_reverse] = ACTIONS(412), - [anon_sym_31] = ACTIONS(412), - [anon_sym_deshape] = ACTIONS(412), - [anon_sym_32] = ACTIONS(412), - [anon_sym_bits] = ACTIONS(412), - [anon_sym_33] = ACTIONS(412), - [anon_sym_transpose] = ACTIONS(412), - [anon_sym_34] = ACTIONS(412), - [anon_sym_rise] = ACTIONS(412), - [anon_sym_35] = ACTIONS(412), - [anon_sym_fall] = ACTIONS(412), - [anon_sym_36] = ACTIONS(412), - [anon_sym_where] = ACTIONS(412), - [anon_sym_37] = ACTIONS(412), - [anon_sym_classify] = ACTIONS(412), - [anon_sym_38] = ACTIONS(412), - [anon_sym_deduplicate] = ACTIONS(412), - [anon_sym_39] = ACTIONS(412), - [anon_sym_box] = ACTIONS(412), - [anon_sym_40] = ACTIONS(412), - [anon_sym_unbox] = ACTIONS(412), - [anon_sym_41] = ACTIONS(412), - [anon_sym_match] = ACTIONS(412), - [anon_sym_42] = ACTIONS(412), - [anon_sym_couple] = ACTIONS(412), - [anon_sym_43] = ACTIONS(412), - [anon_sym_join] = ACTIONS(412), - [anon_sym_44] = ACTIONS(412), - [anon_sym_select] = ACTIONS(412), - [anon_sym_45] = ACTIONS(412), - [anon_sym_pick] = ACTIONS(412), - [anon_sym_46] = ACTIONS(412), - [anon_sym_reshape] = ACTIONS(412), - [anon_sym_47] = ACTIONS(412), - [anon_sym_take] = ACTIONS(412), - [anon_sym_48] = ACTIONS(412), - [anon_sym_drop] = ACTIONS(412), - [anon_sym_49] = ACTIONS(412), - [anon_sym_rotate] = ACTIONS(412), - [anon_sym_50] = ACTIONS(412), - [anon_sym_windows] = ACTIONS(412), - [anon_sym_51] = ACTIONS(412), - [anon_sym_keep] = ACTIONS(412), - [anon_sym_52] = ACTIONS(412), - [anon_sym_find] = ACTIONS(412), - [anon_sym_53] = ACTIONS(412), - [anon_sym_member] = ACTIONS(412), - [anon_sym_54] = ACTIONS(412), - [anon_sym_indexof] = ACTIONS(412), - [anon_sym_55] = ACTIONS(412), - [anon_sym_assert] = ACTIONS(412), - [anon_sym_56] = ACTIONS(412), - [anon_sym_wait] = ACTIONS(412), - [anon_sym_parse] = ACTIONS(412), - [anon_sym_random] = ACTIONS(412), - [anon_sym_57] = ACTIONS(412), - [anon_sym_gen] = ACTIONS(412), - [anon_sym_deal] = ACTIONS(412), - [anon_sym_tag] = ACTIONS(412), - [anon_sym_now] = ACTIONS(412), - [anon_sym_type] = ACTIONS(412), - [anon_sym_58] = ACTIONS(412), - [anon_sym_dump] = ACTIONS(412), - [anon_sym_regex] = ACTIONS(412), - [anon_sym_utf] = ACTIONS(412), - [anon_sym_send] = ACTIONS(412), - [anon_sym_recv] = ACTIONS(412), - [anon_sym_tryrecv] = ACTIONS(412), - [anon_sym_complex] = ACTIONS(412), - [anon_sym_59] = ACTIONS(412), - [anon_sym_rerank] = ACTIONS(412), - [anon_sym_60] = ACTIONS(412), - [anon_sym_fix] = ACTIONS(412), - [anon_sym_61] = ACTIONS(412), - [anon_sym_reduce] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_scan] = ACTIONS(418), - [anon_sym_BSLASH] = ACTIONS(418), - [anon_sym_each] = ACTIONS(418), - [anon_sym_62] = ACTIONS(418), - [anon_sym_rows] = ACTIONS(418), - [anon_sym_63] = ACTIONS(418), - [anon_sym_repeat] = ACTIONS(418), - [anon_sym_64] = ACTIONS(418), - [anon_sym_dip] = ACTIONS(418), - [anon_sym_65] = ACTIONS(418), - [anon_sym_gap] = ACTIONS(418), - [anon_sym_66] = ACTIONS(418), - [anon_sym_invert] = ACTIONS(418), - [anon_sym_67] = ACTIONS(418), - [anon_sym_spawn] = ACTIONS(418), - [anon_sym_pack] = ACTIONS(418), - [anon_sym_68] = ACTIONS(418), - [anon_sym_rectify] = ACTIONS(418), - [anon_sym_69] = ACTIONS(418), - [anon_sym_this] = ACTIONS(418), - [anon_sym_70] = ACTIONS(418), - [anon_sym_recur] = ACTIONS(418), - [anon_sym_71] = ACTIONS(418), - [anon_sym_fold] = ACTIONS(421), - [anon_sym_72] = ACTIONS(421), - [anon_sym_table] = ACTIONS(421), - [anon_sym_73] = ACTIONS(421), - [anon_sym_cross] = ACTIONS(421), - [anon_sym_74] = ACTIONS(421), - [anon_sym_group] = ACTIONS(421), - [anon_sym_75] = ACTIONS(421), - [anon_sym_partition] = ACTIONS(421), - [anon_sym_76] = ACTIONS(421), - [anon_sym_both] = ACTIONS(421), - [anon_sym_77] = ACTIONS(421), - [anon_sym_bracket] = ACTIONS(421), - [anon_sym_78] = ACTIONS(421), - [anon_sym_fork] = ACTIONS(421), - [anon_sym_79] = ACTIONS(421), - [anon_sym_under] = ACTIONS(421), - [anon_sym_80] = ACTIONS(421), - [anon_sym_fill] = ACTIONS(421), - [anon_sym_81] = ACTIONS(421), - [anon_sym_try] = ACTIONS(424), - [anon_sym_82] = ACTIONS(421), - [anon_sym_do] = ACTIONS(424), - [anon_sym_83] = ACTIONS(421), - [anon_sym_all] = ACTIONS(421), - [anon_sym_84] = ACTIONS(421), - [anon_sym_setinv] = ACTIONS(421), - [anon_sym_setunder] = ACTIONS(421), - [anon_sym_85] = ACTIONS(427), - [anon_sym_86] = ACTIONS(427), - [anon_sym_87] = ACTIONS(427), - [anon_sym_88] = ACTIONS(427), - [anon_sym_89] = ACTIONS(427), - [anon_sym_90] = ACTIONS(427), - [anon_sym_91] = ACTIONS(427), - [anon_sym_92] = ACTIONS(427), - [anon_sym_93] = ACTIONS(427), - [anon_sym_94] = ACTIONS(427), - [anon_sym_95] = ACTIONS(427), - [anon_sym_96] = ACTIONS(427), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [60] = { - [sym_segment] = STATE(228), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(247), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(400), + [sym_fraction] = ACTIONS(403), + [anon_sym_os] = ACTIONS(406), + [anon_sym_Family] = ACTIONS(406), + [anon_sym_Arch] = ACTIONS(406), + [anon_sym_ExeExt] = ACTIONS(406), + [anon_sym_PllExt] = ACTIONS(406), + [anon_sym_Sep] = ACTIONS(406), + [anon_sym_NUmProcs] = ACTIONS(406), + [anon_sym_] = ACTIONS(409), + [aux_sym_character_token1] = ACTIONS(412), + [sym_string] = ACTIONS(415), + [sym_multiLineString] = ACTIONS(415), + [sym_identifier] = ACTIONS(418), + [sym_identifierDeprecated] = ACTIONS(418), + [sym_system] = ACTIONS(415), + [sym_comment] = ACTIONS(421), + [sym_openParen] = ACTIONS(424), + [sym_openCurly] = ACTIONS(427), + [sym_openBracket] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(436), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(439), + [anon_sym_eta] = ACTIONS(442), + [anon_sym_2] = ACTIONS(445), + [anon_sym_pi] = ACTIONS(445), + [anon_sym_3] = ACTIONS(445), + [anon_sym_tau] = ACTIONS(442), + [anon_sym_4] = ACTIONS(445), + [anon_sym_infinity] = ACTIONS(442), + [anon_sym_5] = ACTIONS(442), + [anon_sym_e] = ACTIONS(445), + [anon_sym_NaN] = ACTIONS(445), + [anon_sym_NumProcs] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(448), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_COLON] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_identity] = ACTIONS(448), + [anon_sym_id] = ACTIONS(451), + [anon_sym_6] = ACTIONS(448), + [anon_sym_not] = ACTIONS(448), + [anon_sym_7] = ACTIONS(448), + [anon_sym_sign] = ACTIONS(448), + [anon_sym_8] = ACTIONS(448), + [anon_sym_BQUOTE] = ACTIONS(448), + [anon_sym_9] = ACTIONS(451), + [anon_sym_absolutevalue] = ACTIONS(448), + [anon_sym_10] = ACTIONS(448), + [anon_sym_sqrt] = ACTIONS(448), + [anon_sym_11] = ACTIONS(448), + [anon_sym_sine] = ACTIONS(448), + [anon_sym_12] = ACTIONS(448), + [anon_sym_floor] = ACTIONS(448), + [anon_sym_13] = ACTIONS(448), + [anon_sym_ceiling] = ACTIONS(448), + [anon_sym_14] = ACTIONS(448), + [anon_sym_round] = ACTIONS(448), + [anon_sym_15] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(448), + [anon_sym_16] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(448), + [anon_sym_17] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_18] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(448), + [anon_sym_19] = ACTIONS(448), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_20] = ACTIONS(448), + [anon_sym_modulus] = ACTIONS(448), + [anon_sym_21] = ACTIONS(448), + [anon_sym_power] = ACTIONS(448), + [anon_sym_22] = ACTIONS(448), + [anon_sym_logarithm] = ACTIONS(448), + [anon_sym_23] = ACTIONS(448), + [anon_sym_minimum] = ACTIONS(448), + [anon_sym_24] = ACTIONS(448), + [anon_sym_maximum] = ACTIONS(448), + [anon_sym_25] = ACTIONS(448), + [anon_sym_atangent] = ACTIONS(448), + [anon_sym_26] = ACTIONS(448), + [anon_sym_length] = ACTIONS(448), + [anon_sym_27] = ACTIONS(448), + [anon_sym_shape] = ACTIONS(448), + [anon_sym_28] = ACTIONS(448), + [anon_sym_range] = ACTIONS(448), + [anon_sym_29] = ACTIONS(448), + [anon_sym_first] = ACTIONS(448), + [anon_sym_30] = ACTIONS(448), + [anon_sym_reverse] = ACTIONS(448), + [anon_sym_31] = ACTIONS(448), + [anon_sym_deshape] = ACTIONS(448), + [anon_sym_32] = ACTIONS(448), + [anon_sym_bits] = ACTIONS(448), + [anon_sym_33] = ACTIONS(448), + [anon_sym_transpose] = ACTIONS(448), + [anon_sym_34] = ACTIONS(448), + [anon_sym_rise] = ACTIONS(448), + [anon_sym_35] = ACTIONS(448), + [anon_sym_fall] = ACTIONS(448), + [anon_sym_36] = ACTIONS(448), + [anon_sym_where] = ACTIONS(448), + [anon_sym_37] = ACTIONS(448), + [anon_sym_classify] = ACTIONS(448), + [anon_sym_38] = ACTIONS(448), + [anon_sym_deduplicate] = ACTIONS(448), + [anon_sym_39] = ACTIONS(448), + [anon_sym_box] = ACTIONS(448), + [anon_sym_40] = ACTIONS(448), + [anon_sym_unbox] = ACTIONS(448), + [anon_sym_41] = ACTIONS(448), + [anon_sym_match] = ACTIONS(448), + [anon_sym_42] = ACTIONS(448), + [anon_sym_couple] = ACTIONS(448), + [anon_sym_43] = ACTIONS(448), + [anon_sym_join] = ACTIONS(448), + [anon_sym_44] = ACTIONS(448), + [anon_sym_select] = ACTIONS(448), + [anon_sym_45] = ACTIONS(448), + [anon_sym_pick] = ACTIONS(448), + [anon_sym_46] = ACTIONS(448), + [anon_sym_reshape] = ACTIONS(448), + [anon_sym_47] = ACTIONS(448), + [anon_sym_take] = ACTIONS(448), + [anon_sym_48] = ACTIONS(448), + [anon_sym_drop] = ACTIONS(448), + [anon_sym_49] = ACTIONS(448), + [anon_sym_rotate] = ACTIONS(448), + [anon_sym_50] = ACTIONS(448), + [anon_sym_windows] = ACTIONS(448), + [anon_sym_51] = ACTIONS(448), + [anon_sym_keep] = ACTIONS(448), + [anon_sym_52] = ACTIONS(448), + [anon_sym_find] = ACTIONS(448), + [anon_sym_53] = ACTIONS(448), + [anon_sym_member] = ACTIONS(448), + [anon_sym_54] = ACTIONS(448), + [anon_sym_indexof] = ACTIONS(448), + [anon_sym_55] = ACTIONS(448), + [anon_sym_assert] = ACTIONS(448), + [anon_sym_56] = ACTIONS(448), + [anon_sym_wait] = ACTIONS(448), + [anon_sym_parse] = ACTIONS(448), + [anon_sym_random] = ACTIONS(448), + [anon_sym_57] = ACTIONS(448), + [anon_sym_gen] = ACTIONS(448), + [anon_sym_deal] = ACTIONS(448), + [anon_sym_tag] = ACTIONS(448), + [anon_sym_now] = ACTIONS(448), + [anon_sym_type] = ACTIONS(448), + [anon_sym_58] = ACTIONS(448), + [anon_sym_dump] = ACTIONS(448), + [anon_sym_regex] = ACTIONS(448), + [anon_sym_utf] = ACTIONS(448), + [anon_sym_send] = ACTIONS(448), + [anon_sym_recv] = ACTIONS(448), + [anon_sym_tryrecv] = ACTIONS(448), + [anon_sym_complex] = ACTIONS(448), + [anon_sym_59] = ACTIONS(448), + [anon_sym_rerank] = ACTIONS(448), + [anon_sym_60] = ACTIONS(448), + [anon_sym_fix] = ACTIONS(448), + [anon_sym_61] = ACTIONS(448), + [anon_sym_QMARK] = ACTIONS(448), + [anon_sym_reduce] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_scan] = ACTIONS(454), + [anon_sym_BSLASH] = ACTIONS(454), + [anon_sym_each] = ACTIONS(454), + [anon_sym_62] = ACTIONS(454), + [anon_sym_rows] = ACTIONS(454), + [anon_sym_63] = ACTIONS(454), + [anon_sym_repeat] = ACTIONS(454), + [anon_sym_64] = ACTIONS(454), + [anon_sym_dip] = ACTIONS(454), + [anon_sym_65] = ACTIONS(454), + [anon_sym_gap] = ACTIONS(454), + [anon_sym_66] = ACTIONS(454), + [anon_sym_invert] = ACTIONS(454), + [anon_sym_67] = ACTIONS(454), + [anon_sym_spawn] = ACTIONS(454), + [anon_sym_pack] = ACTIONS(454), + [anon_sym_68] = ACTIONS(454), + [anon_sym_rectify] = ACTIONS(454), + [anon_sym_69] = ACTIONS(454), + [anon_sym_this] = ACTIONS(454), + [anon_sym_70] = ACTIONS(454), + [anon_sym_recur] = ACTIONS(454), + [anon_sym_71] = ACTIONS(454), + [anon_sym_fold] = ACTIONS(457), + [anon_sym_72] = ACTIONS(457), + [anon_sym_table] = ACTIONS(457), + [anon_sym_73] = ACTIONS(457), + [anon_sym_cross] = ACTIONS(457), + [anon_sym_74] = ACTIONS(457), + [anon_sym_group] = ACTIONS(457), + [anon_sym_75] = ACTIONS(457), + [anon_sym_partition] = ACTIONS(457), + [anon_sym_76] = ACTIONS(457), + [anon_sym_both] = ACTIONS(457), + [anon_sym_77] = ACTIONS(457), + [anon_sym_bracket] = ACTIONS(457), + [anon_sym_78] = ACTIONS(457), + [anon_sym_fork] = ACTIONS(457), + [anon_sym_79] = ACTIONS(457), + [anon_sym_under] = ACTIONS(457), + [anon_sym_80] = ACTIONS(457), + [anon_sym_fill] = ACTIONS(457), + [anon_sym_81] = ACTIONS(457), + [anon_sym_try] = ACTIONS(460), + [anon_sym_82] = ACTIONS(457), + [anon_sym_do] = ACTIONS(460), + [anon_sym_83] = ACTIONS(457), + [anon_sym_all] = ACTIONS(457), + [anon_sym_84] = ACTIONS(457), + [anon_sym_setinv] = ACTIONS(457), + [anon_sym_setunder] = ACTIONS(457), + [anon_sym_85] = ACTIONS(463), + [anon_sym_86] = ACTIONS(463), + [anon_sym_87] = ACTIONS(463), + [anon_sym_88] = ACTIONS(463), + [anon_sym_89] = ACTIONS(463), + [anon_sym_90] = ACTIONS(463), + [anon_sym_91] = ACTIONS(463), + [anon_sym_92] = ACTIONS(463), [sym__endOfLine] = ACTIONS(5), }, [61] = { - [sym_segment] = STATE(216), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(221), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [62] = { - [sym_segment] = STATE(228), - [sym_term] = STATE(7), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(61), + [sym_segment] = STATE(210), + [sym_term] = STATE(16), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), - [sym__endOfLine] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(154), + [aux_sym_number_token1] = ACTIONS(7), + [sym_fraction] = ACTIONS(9), + [anon_sym_os] = ACTIONS(11), + [anon_sym_Family] = ACTIONS(11), + [anon_sym_Arch] = ACTIONS(11), + [anon_sym_ExeExt] = ACTIONS(11), + [anon_sym_PllExt] = ACTIONS(11), + [anon_sym_Sep] = ACTIONS(11), + [anon_sym_NUmProcs] = ACTIONS(11), + [anon_sym_] = ACTIONS(13), + [aux_sym_character_token1] = ACTIONS(15), + [sym_string] = ACTIONS(17), + [sym_multiLineString] = ACTIONS(17), + [sym_identifier] = ACTIONS(21), + [sym_identifierDeprecated] = ACTIONS(21), + [sym_system] = ACTIONS(17), + [sym_comment] = ACTIONS(23), + [sym_openParen] = ACTIONS(27), + [sym_openCurly] = ACTIONS(29), + [sym_openBracket] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), + [sym__endOfLine] = ACTIONS(154), }, [63] = { - [sym_segment] = STATE(223), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(246), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [64] = { - [sym_segment] = STATE(221), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(212), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [65] = { - [sym_segment] = STATE(227), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(237), + [sym_term] = STATE(47), + [sym_inlineFunction] = STATE(237), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(188), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [66] = { - [sym_segment] = STATE(224), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(212), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [67] = { - [sym_segment] = STATE(243), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(226), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(52), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [68] = { - [sym_segment] = STATE(209), - [sym_term] = STATE(18), - [sym_inlineFunction] = STATE(209), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(218), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(172), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [69] = { - [sym_segment] = STATE(224), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(213), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(55), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [70] = { - [sym_segment] = STATE(217), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(224), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [71] = { - [sym_segment] = STATE(211), - [sym_term] = STATE(18), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_segment] = STATE(214), + [sym_term] = STATE(47), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_module_repeat1] = STATE(59), - [aux_sym_array_repeat1] = STATE(78), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), - [sym_comment] = ACTIONS(140), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_deprecated] = STATE(102), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_array_repeat1] = STATE(80), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(150), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [72] = { - [sym_term] = STATE(106), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), + [sym_term] = STATE(108), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), [sym_modifier1] = STATE(83), [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), + [sym_deprecated] = STATE(102), [aux_sym_array_repeat1] = STATE(72), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [73] = { - [sym_term] = STATE(119), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), - [aux_sym_array_repeat1] = STATE(73), - [aux_sym_number_token1] = ACTIONS(7), - [sym_fraction] = ACTIONS(9), - [anon_sym_os] = ACTIONS(11), - [anon_sym_Family] = ACTIONS(11), - [anon_sym_Arch] = ACTIONS(11), - [anon_sym_ExeExt] = ACTIONS(11), - [anon_sym_PllExt] = ACTIONS(11), - [anon_sym_Sep] = ACTIONS(11), - [anon_sym_NUmProcs] = ACTIONS(11), - [anon_sym_] = ACTIONS(13), - [aux_sym_character_token1] = ACTIONS(15), - [sym_string] = ACTIONS(17), - [sym_multiLineString] = ACTIONS(17), - [sym_identifier] = ACTIONS(21), - [sym_identifierDeprecated] = ACTIONS(21), - [sym_system] = ACTIONS(17), + [sym_term] = STATE(180), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), + [sym_constant] = STATE(188), + [sym_function] = STATE(203), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), + [sym_deprecated] = STATE(203), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(27), - [sym_openCurly] = ACTIONS(29), - [sym_openBracket] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [74] = { - [sym_term] = STATE(179), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(205), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [75] = { - [sym_term] = STATE(197), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(205), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_array_repeat1] = STATE(76), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_array_repeat1] = STATE(75), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [76] = { - [sym_term] = STATE(197), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(182), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_array_repeat1] = STATE(76), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [77] = { - [sym_term] = STATE(180), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(185), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [78] = { - [sym_term] = STATE(106), - [sym_switchFunctions] = STATE(88), - [sym_array] = STATE(88), - [sym_number] = STATE(88), - [sym_otherConstant] = STATE(88), - [sym_character] = STATE(88), - [sym_placeHolder] = STATE(88), - [sym_compound] = STATE(88), - [sym_primitive] = STATE(88), - [sym_constant] = STATE(91), - [sym_function] = STATE(101), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(101), - [aux_sym_array_repeat1] = STATE(72), - [aux_sym_number_token1] = ACTIONS(124), - [sym_fraction] = ACTIONS(126), - [anon_sym_os] = ACTIONS(128), - [anon_sym_Family] = ACTIONS(128), - [anon_sym_Arch] = ACTIONS(128), - [anon_sym_ExeExt] = ACTIONS(128), - [anon_sym_PllExt] = ACTIONS(128), - [anon_sym_Sep] = ACTIONS(128), - [anon_sym_NUmProcs] = ACTIONS(128), - [anon_sym_] = ACTIONS(130), - [aux_sym_character_token1] = ACTIONS(132), - [sym_string] = ACTIONS(134), - [sym_multiLineString] = ACTIONS(134), - [sym_identifier] = ACTIONS(138), - [sym_identifierDeprecated] = ACTIONS(138), - [sym_system] = ACTIONS(134), + [sym_term] = STATE(119), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), + [aux_sym_array_repeat1] = STATE(79), + [aux_sym_number_token1] = ACTIONS(7), + [sym_fraction] = ACTIONS(9), + [anon_sym_os] = ACTIONS(11), + [anon_sym_Family] = ACTIONS(11), + [anon_sym_Arch] = ACTIONS(11), + [anon_sym_ExeExt] = ACTIONS(11), + [anon_sym_PllExt] = ACTIONS(11), + [anon_sym_Sep] = ACTIONS(11), + [anon_sym_NUmProcs] = ACTIONS(11), + [anon_sym_] = ACTIONS(13), + [aux_sym_character_token1] = ACTIONS(15), + [sym_string] = ACTIONS(17), + [sym_multiLineString] = ACTIONS(17), + [sym_identifier] = ACTIONS(21), + [sym_identifierDeprecated] = ACTIONS(21), + [sym_system] = ACTIONS(17), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(142), - [sym_openCurly] = ACTIONS(144), - [sym_openBracket] = ACTIONS(146), - [anon_sym_CARET] = ACTIONS(148), - [anon_sym_eta] = ACTIONS(150), - [anon_sym_2] = ACTIONS(152), - [anon_sym_pi] = ACTIONS(152), - [anon_sym_3] = ACTIONS(152), - [anon_sym_tau] = ACTIONS(150), - [anon_sym_4] = ACTIONS(152), - [anon_sym_infinity] = ACTIONS(150), - [anon_sym_5] = ACTIONS(150), - [anon_sym_e] = ACTIONS(152), - [anon_sym_NaN] = ACTIONS(152), - [anon_sym_NumProcs] = ACTIONS(152), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(158), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_scan] = ACTIONS(158), - [anon_sym_BSLASH] = ACTIONS(158), - [anon_sym_each] = ACTIONS(158), - [anon_sym_62] = ACTIONS(158), - [anon_sym_rows] = ACTIONS(158), - [anon_sym_63] = ACTIONS(158), - [anon_sym_repeat] = ACTIONS(158), - [anon_sym_64] = ACTIONS(158), - [anon_sym_dip] = ACTIONS(158), - [anon_sym_65] = ACTIONS(158), - [anon_sym_gap] = ACTIONS(158), - [anon_sym_66] = ACTIONS(158), - [anon_sym_invert] = ACTIONS(158), - [anon_sym_67] = ACTIONS(158), - [anon_sym_spawn] = ACTIONS(158), - [anon_sym_pack] = ACTIONS(158), - [anon_sym_68] = ACTIONS(158), - [anon_sym_rectify] = ACTIONS(158), - [anon_sym_69] = ACTIONS(158), - [anon_sym_this] = ACTIONS(158), - [anon_sym_70] = ACTIONS(158), - [anon_sym_recur] = ACTIONS(158), - [anon_sym_71] = ACTIONS(158), - [anon_sym_fold] = ACTIONS(160), - [anon_sym_72] = ACTIONS(160), - [anon_sym_table] = ACTIONS(160), - [anon_sym_73] = ACTIONS(160), - [anon_sym_cross] = ACTIONS(160), - [anon_sym_74] = ACTIONS(160), - [anon_sym_group] = ACTIONS(160), - [anon_sym_75] = ACTIONS(160), - [anon_sym_partition] = ACTIONS(160), - [anon_sym_76] = ACTIONS(160), - [anon_sym_both] = ACTIONS(160), - [anon_sym_77] = ACTIONS(160), - [anon_sym_bracket] = ACTIONS(160), - [anon_sym_78] = ACTIONS(160), - [anon_sym_fork] = ACTIONS(160), - [anon_sym_79] = ACTIONS(160), - [anon_sym_under] = ACTIONS(160), - [anon_sym_80] = ACTIONS(160), - [anon_sym_fill] = ACTIONS(160), - [anon_sym_81] = ACTIONS(160), - [anon_sym_try] = ACTIONS(162), - [anon_sym_82] = ACTIONS(160), - [anon_sym_do] = ACTIONS(162), - [anon_sym_83] = ACTIONS(160), - [anon_sym_all] = ACTIONS(160), - [anon_sym_84] = ACTIONS(160), - [anon_sym_setinv] = ACTIONS(160), - [anon_sym_setunder] = ACTIONS(160), - [anon_sym_85] = ACTIONS(164), - [anon_sym_86] = ACTIONS(164), - [anon_sym_87] = ACTIONS(164), - [anon_sym_88] = ACTIONS(164), - [anon_sym_89] = ACTIONS(164), - [anon_sym_90] = ACTIONS(164), - [anon_sym_91] = ACTIONS(164), - [anon_sym_92] = ACTIONS(164), - [anon_sym_93] = ACTIONS(164), - [anon_sym_94] = ACTIONS(164), - [anon_sym_95] = ACTIONS(164), - [anon_sym_96] = ACTIONS(164), + [sym_openParen] = ACTIONS(27), + [sym_openCurly] = ACTIONS(29), + [sym_openBracket] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), [sym__endOfLine] = ACTIONS(5), }, [79] = { - [sym_term] = STATE(182), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), - [sym_constant] = STATE(188), - [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), - [sym_deprecated] = STATE(203), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), - [sym__endOfLine] = ACTIONS(5), - }, - [80] = { [sym_term] = STATE(119), - [sym_switchFunctions] = STATE(123), - [sym_array] = STATE(123), - [sym_number] = STATE(123), - [sym_otherConstant] = STATE(123), - [sym_character] = STATE(123), - [sym_placeHolder] = STATE(123), - [sym_compound] = STATE(123), - [sym_primitive] = STATE(123), - [sym_constant] = STATE(116), - [sym_function] = STATE(117), - [sym_modifier1] = STATE(110), - [sym_modifier2] = STATE(109), - [sym_deprecated] = STATE(117), - [aux_sym_array_repeat1] = STATE(73), + [sym_switchFunctions] = STATE(127), + [sym_array] = STATE(127), + [sym_number] = STATE(127), + [sym_otherConstant] = STATE(127), + [sym_character] = STATE(127), + [sym_placeHolder] = STATE(127), + [sym_formatter] = STATE(127), + [sym_compound] = STATE(127), + [sym_primitive] = STATE(127), + [sym_constant] = STATE(117), + [sym_function] = STATE(143), + [sym_modifier1] = STATE(111), + [sym_modifier2] = STATE(110), + [sym_deprecated] = STATE(143), + [aux_sym_array_repeat1] = STATE(79), [aux_sym_number_token1] = ACTIONS(7), [sym_fraction] = ACTIONS(9), [anon_sym_os] = ACTIONS(11), @@ -26586,2625 +26336,958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_openCurly] = ACTIONS(29), [sym_openBracket] = ACTIONS(31), [anon_sym_CARET] = ACTIONS(33), - [anon_sym_eta] = ACTIONS(35), - [anon_sym_2] = ACTIONS(37), - [anon_sym_pi] = ACTIONS(37), - [anon_sym_3] = ACTIONS(37), - [anon_sym_tau] = ACTIONS(35), - [anon_sym_4] = ACTIONS(37), - [anon_sym_infinity] = ACTIONS(35), - [anon_sym_5] = ACTIONS(35), - [anon_sym_e] = ACTIONS(37), - [anon_sym_NaN] = ACTIONS(37), - [anon_sym_NumProcs] = ACTIONS(37), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(43), - [anon_sym_SLASH] = ACTIONS(43), - [anon_sym_scan] = ACTIONS(43), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_each] = ACTIONS(43), - [anon_sym_62] = ACTIONS(43), - [anon_sym_rows] = ACTIONS(43), - [anon_sym_63] = ACTIONS(43), - [anon_sym_repeat] = ACTIONS(43), - [anon_sym_64] = ACTIONS(43), - [anon_sym_dip] = ACTIONS(43), - [anon_sym_65] = ACTIONS(43), - [anon_sym_gap] = ACTIONS(43), - [anon_sym_66] = ACTIONS(43), - [anon_sym_invert] = ACTIONS(43), - [anon_sym_67] = ACTIONS(43), - [anon_sym_spawn] = ACTIONS(43), - [anon_sym_pack] = ACTIONS(43), - [anon_sym_68] = ACTIONS(43), - [anon_sym_rectify] = ACTIONS(43), - [anon_sym_69] = ACTIONS(43), - [anon_sym_this] = ACTIONS(43), - [anon_sym_70] = ACTIONS(43), - [anon_sym_recur] = ACTIONS(43), - [anon_sym_71] = ACTIONS(43), - [anon_sym_fold] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), - [anon_sym_table] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), - [anon_sym_cross] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), - [anon_sym_group] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), - [anon_sym_partition] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), - [anon_sym_both] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), - [anon_sym_bracket] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), - [anon_sym_fork] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), - [anon_sym_under] = ACTIONS(45), - [anon_sym_80] = ACTIONS(45), - [anon_sym_fill] = ACTIONS(45), - [anon_sym_81] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_82] = ACTIONS(45), - [anon_sym_do] = ACTIONS(47), - [anon_sym_83] = ACTIONS(45), - [anon_sym_all] = ACTIONS(45), - [anon_sym_84] = ACTIONS(45), - [anon_sym_setinv] = ACTIONS(45), - [anon_sym_setunder] = ACTIONS(45), - [anon_sym_85] = ACTIONS(49), - [anon_sym_86] = ACTIONS(49), - [anon_sym_87] = ACTIONS(49), - [anon_sym_88] = ACTIONS(49), - [anon_sym_89] = ACTIONS(49), - [anon_sym_90] = ACTIONS(49), - [anon_sym_91] = ACTIONS(49), - [anon_sym_92] = ACTIONS(49), - [anon_sym_93] = ACTIONS(49), - [anon_sym_94] = ACTIONS(49), - [anon_sym_95] = ACTIONS(49), - [anon_sym_96] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(37), + [anon_sym_eta] = ACTIONS(39), + [anon_sym_2] = ACTIONS(41), + [anon_sym_pi] = ACTIONS(41), + [anon_sym_3] = ACTIONS(41), + [anon_sym_tau] = ACTIONS(39), + [anon_sym_4] = ACTIONS(41), + [anon_sym_infinity] = ACTIONS(39), + [anon_sym_5] = ACTIONS(39), + [anon_sym_e] = ACTIONS(41), + [anon_sym_NaN] = ACTIONS(41), + [anon_sym_NumProcs] = ACTIONS(41), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(47), + [anon_sym_SLASH] = ACTIONS(47), + [anon_sym_scan] = ACTIONS(47), + [anon_sym_BSLASH] = ACTIONS(47), + [anon_sym_each] = ACTIONS(47), + [anon_sym_62] = ACTIONS(47), + [anon_sym_rows] = ACTIONS(47), + [anon_sym_63] = ACTIONS(47), + [anon_sym_repeat] = ACTIONS(47), + [anon_sym_64] = ACTIONS(47), + [anon_sym_dip] = ACTIONS(47), + [anon_sym_65] = ACTIONS(47), + [anon_sym_gap] = ACTIONS(47), + [anon_sym_66] = ACTIONS(47), + [anon_sym_invert] = ACTIONS(47), + [anon_sym_67] = ACTIONS(47), + [anon_sym_spawn] = ACTIONS(47), + [anon_sym_pack] = ACTIONS(47), + [anon_sym_68] = ACTIONS(47), + [anon_sym_rectify] = ACTIONS(47), + [anon_sym_69] = ACTIONS(47), + [anon_sym_this] = ACTIONS(47), + [anon_sym_70] = ACTIONS(47), + [anon_sym_recur] = ACTIONS(47), + [anon_sym_71] = ACTIONS(47), + [anon_sym_fold] = ACTIONS(49), + [anon_sym_72] = ACTIONS(49), + [anon_sym_table] = ACTIONS(49), + [anon_sym_73] = ACTIONS(49), + [anon_sym_cross] = ACTIONS(49), + [anon_sym_74] = ACTIONS(49), + [anon_sym_group] = ACTIONS(49), + [anon_sym_75] = ACTIONS(49), + [anon_sym_partition] = ACTIONS(49), + [anon_sym_76] = ACTIONS(49), + [anon_sym_both] = ACTIONS(49), + [anon_sym_77] = ACTIONS(49), + [anon_sym_bracket] = ACTIONS(49), + [anon_sym_78] = ACTIONS(49), + [anon_sym_fork] = ACTIONS(49), + [anon_sym_79] = ACTIONS(49), + [anon_sym_under] = ACTIONS(49), + [anon_sym_80] = ACTIONS(49), + [anon_sym_fill] = ACTIONS(49), + [anon_sym_81] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_82] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_83] = ACTIONS(49), + [anon_sym_all] = ACTIONS(49), + [anon_sym_84] = ACTIONS(49), + [anon_sym_setinv] = ACTIONS(49), + [anon_sym_setunder] = ACTIONS(49), + [anon_sym_85] = ACTIONS(53), + [anon_sym_86] = ACTIONS(53), + [anon_sym_87] = ACTIONS(53), + [anon_sym_88] = ACTIONS(53), + [anon_sym_89] = ACTIONS(53), + [anon_sym_90] = ACTIONS(53), + [anon_sym_91] = ACTIONS(53), + [anon_sym_92] = ACTIONS(53), + [sym__endOfLine] = ACTIONS(5), + }, + [80] = { + [sym_term] = STATE(108), + [sym_switchFunctions] = STATE(89), + [sym_array] = STATE(89), + [sym_number] = STATE(89), + [sym_otherConstant] = STATE(89), + [sym_character] = STATE(89), + [sym_placeHolder] = STATE(89), + [sym_formatter] = STATE(89), + [sym_compound] = STATE(89), + [sym_primitive] = STATE(89), + [sym_constant] = STATE(92), + [sym_function] = STATE(102), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(102), + [aux_sym_array_repeat1] = STATE(72), + [aux_sym_number_token1] = ACTIONS(134), + [sym_fraction] = ACTIONS(136), + [anon_sym_os] = ACTIONS(138), + [anon_sym_Family] = ACTIONS(138), + [anon_sym_Arch] = ACTIONS(138), + [anon_sym_ExeExt] = ACTIONS(138), + [anon_sym_PllExt] = ACTIONS(138), + [anon_sym_Sep] = ACTIONS(138), + [anon_sym_NUmProcs] = ACTIONS(138), + [anon_sym_] = ACTIONS(140), + [aux_sym_character_token1] = ACTIONS(142), + [sym_string] = ACTIONS(144), + [sym_multiLineString] = ACTIONS(144), + [sym_identifier] = ACTIONS(148), + [sym_identifierDeprecated] = ACTIONS(148), + [sym_system] = ACTIONS(144), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(152), + [sym_openCurly] = ACTIONS(156), + [sym_openBracket] = ACTIONS(158), + [anon_sym_CARET] = ACTIONS(162), + [anon_sym_SQUOTE] = ACTIONS(164), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(166), + [anon_sym_eta] = ACTIONS(168), + [anon_sym_2] = ACTIONS(170), + [anon_sym_pi] = ACTIONS(170), + [anon_sym_3] = ACTIONS(170), + [anon_sym_tau] = ACTIONS(168), + [anon_sym_4] = ACTIONS(170), + [anon_sym_infinity] = ACTIONS(168), + [anon_sym_5] = ACTIONS(168), + [anon_sym_e] = ACTIONS(170), + [anon_sym_NaN] = ACTIONS(170), + [anon_sym_NumProcs] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(176), + [anon_sym_scan] = ACTIONS(176), + [anon_sym_BSLASH] = ACTIONS(176), + [anon_sym_each] = ACTIONS(176), + [anon_sym_62] = ACTIONS(176), + [anon_sym_rows] = ACTIONS(176), + [anon_sym_63] = ACTIONS(176), + [anon_sym_repeat] = ACTIONS(176), + [anon_sym_64] = ACTIONS(176), + [anon_sym_dip] = ACTIONS(176), + [anon_sym_65] = ACTIONS(176), + [anon_sym_gap] = ACTIONS(176), + [anon_sym_66] = ACTIONS(176), + [anon_sym_invert] = ACTIONS(176), + [anon_sym_67] = ACTIONS(176), + [anon_sym_spawn] = ACTIONS(176), + [anon_sym_pack] = ACTIONS(176), + [anon_sym_68] = ACTIONS(176), + [anon_sym_rectify] = ACTIONS(176), + [anon_sym_69] = ACTIONS(176), + [anon_sym_this] = ACTIONS(176), + [anon_sym_70] = ACTIONS(176), + [anon_sym_recur] = ACTIONS(176), + [anon_sym_71] = ACTIONS(176), + [anon_sym_fold] = ACTIONS(178), + [anon_sym_72] = ACTIONS(178), + [anon_sym_table] = ACTIONS(178), + [anon_sym_73] = ACTIONS(178), + [anon_sym_cross] = ACTIONS(178), + [anon_sym_74] = ACTIONS(178), + [anon_sym_group] = ACTIONS(178), + [anon_sym_75] = ACTIONS(178), + [anon_sym_partition] = ACTIONS(178), + [anon_sym_76] = ACTIONS(178), + [anon_sym_both] = ACTIONS(178), + [anon_sym_77] = ACTIONS(178), + [anon_sym_bracket] = ACTIONS(178), + [anon_sym_78] = ACTIONS(178), + [anon_sym_fork] = ACTIONS(178), + [anon_sym_79] = ACTIONS(178), + [anon_sym_under] = ACTIONS(178), + [anon_sym_80] = ACTIONS(178), + [anon_sym_fill] = ACTIONS(178), + [anon_sym_81] = ACTIONS(178), + [anon_sym_try] = ACTIONS(180), + [anon_sym_82] = ACTIONS(178), + [anon_sym_do] = ACTIONS(180), + [anon_sym_83] = ACTIONS(178), + [anon_sym_all] = ACTIONS(178), + [anon_sym_84] = ACTIONS(178), + [anon_sym_setinv] = ACTIONS(178), + [anon_sym_setunder] = ACTIONS(178), + [anon_sym_85] = ACTIONS(182), + [anon_sym_86] = ACTIONS(182), + [anon_sym_87] = ACTIONS(182), + [anon_sym_88] = ACTIONS(182), + [anon_sym_89] = ACTIONS(182), + [anon_sym_90] = ACTIONS(182), + [anon_sym_91] = ACTIONS(182), + [anon_sym_92] = ACTIONS(182), [sym__endOfLine] = ACTIONS(5), }, [81] = { - [sym_term] = STATE(186), - [sym_switchFunctions] = STATE(193), - [sym_array] = STATE(193), - [sym_number] = STATE(193), - [sym_otherConstant] = STATE(193), - [sym_character] = STATE(193), - [sym_placeHolder] = STATE(193), - [sym_compound] = STATE(193), - [sym_primitive] = STATE(193), + [sym_term] = STATE(204), + [sym_switchFunctions] = STATE(191), + [sym_array] = STATE(191), + [sym_number] = STATE(191), + [sym_otherConstant] = STATE(191), + [sym_character] = STATE(191), + [sym_placeHolder] = STATE(191), + [sym_formatter] = STATE(191), + [sym_compound] = STATE(191), + [sym_primitive] = STATE(191), [sym_constant] = STATE(188), [sym_function] = STATE(203), - [sym_modifier1] = STATE(168), - [sym_modifier2] = STATE(169), + [sym_modifier1] = STATE(172), + [sym_modifier2] = STATE(171), [sym_deprecated] = STATE(203), - [aux_sym_array_repeat1] = STATE(75), - [aux_sym_number_token1] = ACTIONS(244), - [sym_fraction] = ACTIONS(246), - [anon_sym_os] = ACTIONS(248), - [anon_sym_Family] = ACTIONS(248), - [anon_sym_Arch] = ACTIONS(248), - [anon_sym_ExeExt] = ACTIONS(248), - [anon_sym_PllExt] = ACTIONS(248), - [anon_sym_Sep] = ACTIONS(248), - [anon_sym_NUmProcs] = ACTIONS(248), - [anon_sym_] = ACTIONS(250), - [aux_sym_character_token1] = ACTIONS(252), - [sym_string] = ACTIONS(254), - [sym_multiLineString] = ACTIONS(254), - [sym_identifier] = ACTIONS(258), - [sym_identifierDeprecated] = ACTIONS(258), - [sym_system] = ACTIONS(254), + [aux_sym_array_repeat1] = STATE(74), + [aux_sym_number_token1] = ACTIONS(268), + [sym_fraction] = ACTIONS(270), + [anon_sym_os] = ACTIONS(272), + [anon_sym_Family] = ACTIONS(272), + [anon_sym_Arch] = ACTIONS(272), + [anon_sym_ExeExt] = ACTIONS(272), + [anon_sym_PllExt] = ACTIONS(272), + [anon_sym_Sep] = ACTIONS(272), + [anon_sym_NUmProcs] = ACTIONS(272), + [anon_sym_] = ACTIONS(274), + [aux_sym_character_token1] = ACTIONS(276), + [sym_string] = ACTIONS(278), + [sym_multiLineString] = ACTIONS(278), + [sym_identifier] = ACTIONS(282), + [sym_identifierDeprecated] = ACTIONS(282), + [sym_system] = ACTIONS(278), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(260), - [sym_openCurly] = ACTIONS(262), - [sym_openBracket] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_eta] = ACTIONS(268), - [anon_sym_2] = ACTIONS(270), - [anon_sym_pi] = ACTIONS(270), - [anon_sym_3] = ACTIONS(270), - [anon_sym_tau] = ACTIONS(268), - [anon_sym_4] = ACTIONS(270), - [anon_sym_infinity] = ACTIONS(268), - [anon_sym_5] = ACTIONS(268), - [anon_sym_e] = ACTIONS(270), - [anon_sym_NaN] = ACTIONS(270), - [anon_sym_NumProcs] = ACTIONS(270), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(274), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [anon_sym_reduce] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_scan] = ACTIONS(276), - [anon_sym_BSLASH] = ACTIONS(276), - [anon_sym_each] = ACTIONS(276), - [anon_sym_62] = ACTIONS(276), - [anon_sym_rows] = ACTIONS(276), - [anon_sym_63] = ACTIONS(276), - [anon_sym_repeat] = ACTIONS(276), - [anon_sym_64] = ACTIONS(276), - [anon_sym_dip] = ACTIONS(276), - [anon_sym_65] = ACTIONS(276), - [anon_sym_gap] = ACTIONS(276), - [anon_sym_66] = ACTIONS(276), - [anon_sym_invert] = ACTIONS(276), - [anon_sym_67] = ACTIONS(276), - [anon_sym_spawn] = ACTIONS(276), - [anon_sym_pack] = ACTIONS(276), - [anon_sym_68] = ACTIONS(276), - [anon_sym_rectify] = ACTIONS(276), - [anon_sym_69] = ACTIONS(276), - [anon_sym_this] = ACTIONS(276), - [anon_sym_70] = ACTIONS(276), - [anon_sym_recur] = ACTIONS(276), - [anon_sym_71] = ACTIONS(276), - [anon_sym_fold] = ACTIONS(278), - [anon_sym_72] = ACTIONS(278), - [anon_sym_table] = ACTIONS(278), - [anon_sym_73] = ACTIONS(278), - [anon_sym_cross] = ACTIONS(278), - [anon_sym_74] = ACTIONS(278), - [anon_sym_group] = ACTIONS(278), - [anon_sym_75] = ACTIONS(278), - [anon_sym_partition] = ACTIONS(278), - [anon_sym_76] = ACTIONS(278), - [anon_sym_both] = ACTIONS(278), - [anon_sym_77] = ACTIONS(278), - [anon_sym_bracket] = ACTIONS(278), - [anon_sym_78] = ACTIONS(278), - [anon_sym_fork] = ACTIONS(278), - [anon_sym_79] = ACTIONS(278), - [anon_sym_under] = ACTIONS(278), - [anon_sym_80] = ACTIONS(278), - [anon_sym_fill] = ACTIONS(278), - [anon_sym_81] = ACTIONS(278), - [anon_sym_try] = ACTIONS(280), - [anon_sym_82] = ACTIONS(278), - [anon_sym_do] = ACTIONS(280), - [anon_sym_83] = ACTIONS(278), - [anon_sym_all] = ACTIONS(278), - [anon_sym_84] = ACTIONS(278), - [anon_sym_setinv] = ACTIONS(278), - [anon_sym_setunder] = ACTIONS(278), - [anon_sym_85] = ACTIONS(282), - [anon_sym_86] = ACTIONS(282), - [anon_sym_87] = ACTIONS(282), - [anon_sym_88] = ACTIONS(282), - [anon_sym_89] = ACTIONS(282), - [anon_sym_90] = ACTIONS(282), - [anon_sym_91] = ACTIONS(282), - [anon_sym_92] = ACTIONS(282), - [anon_sym_93] = ACTIONS(282), - [anon_sym_94] = ACTIONS(282), - [anon_sym_95] = ACTIONS(282), - [anon_sym_96] = ACTIONS(282), + [sym_openParen] = ACTIONS(284), + [sym_openCurly] = ACTIONS(286), + [sym_openBracket] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(290), + [anon_sym_SQUOTE] = ACTIONS(292), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(294), + [anon_sym_eta] = ACTIONS(296), + [anon_sym_2] = ACTIONS(298), + [anon_sym_pi] = ACTIONS(298), + [anon_sym_3] = ACTIONS(298), + [anon_sym_tau] = ACTIONS(296), + [anon_sym_4] = ACTIONS(298), + [anon_sym_infinity] = ACTIONS(296), + [anon_sym_5] = ACTIONS(296), + [anon_sym_e] = ACTIONS(298), + [anon_sym_NaN] = ACTIONS(298), + [anon_sym_NumProcs] = ACTIONS(298), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(302), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [anon_sym_reduce] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_scan] = ACTIONS(304), + [anon_sym_BSLASH] = ACTIONS(304), + [anon_sym_each] = ACTIONS(304), + [anon_sym_62] = ACTIONS(304), + [anon_sym_rows] = ACTIONS(304), + [anon_sym_63] = ACTIONS(304), + [anon_sym_repeat] = ACTIONS(304), + [anon_sym_64] = ACTIONS(304), + [anon_sym_dip] = ACTIONS(304), + [anon_sym_65] = ACTIONS(304), + [anon_sym_gap] = ACTIONS(304), + [anon_sym_66] = ACTIONS(304), + [anon_sym_invert] = ACTIONS(304), + [anon_sym_67] = ACTIONS(304), + [anon_sym_spawn] = ACTIONS(304), + [anon_sym_pack] = ACTIONS(304), + [anon_sym_68] = ACTIONS(304), + [anon_sym_rectify] = ACTIONS(304), + [anon_sym_69] = ACTIONS(304), + [anon_sym_this] = ACTIONS(304), + [anon_sym_70] = ACTIONS(304), + [anon_sym_recur] = ACTIONS(304), + [anon_sym_71] = ACTIONS(304), + [anon_sym_fold] = ACTIONS(306), + [anon_sym_72] = ACTIONS(306), + [anon_sym_table] = ACTIONS(306), + [anon_sym_73] = ACTIONS(306), + [anon_sym_cross] = ACTIONS(306), + [anon_sym_74] = ACTIONS(306), + [anon_sym_group] = ACTIONS(306), + [anon_sym_75] = ACTIONS(306), + [anon_sym_partition] = ACTIONS(306), + [anon_sym_76] = ACTIONS(306), + [anon_sym_both] = ACTIONS(306), + [anon_sym_77] = ACTIONS(306), + [anon_sym_bracket] = ACTIONS(306), + [anon_sym_78] = ACTIONS(306), + [anon_sym_fork] = ACTIONS(306), + [anon_sym_79] = ACTIONS(306), + [anon_sym_under] = ACTIONS(306), + [anon_sym_80] = ACTIONS(306), + [anon_sym_fill] = ACTIONS(306), + [anon_sym_81] = ACTIONS(306), + [anon_sym_try] = ACTIONS(308), + [anon_sym_82] = ACTIONS(306), + [anon_sym_do] = ACTIONS(308), + [anon_sym_83] = ACTIONS(306), + [anon_sym_all] = ACTIONS(306), + [anon_sym_84] = ACTIONS(306), + [anon_sym_setinv] = ACTIONS(306), + [anon_sym_setunder] = ACTIONS(306), + [anon_sym_85] = ACTIONS(310), + [anon_sym_86] = ACTIONS(310), + [anon_sym_87] = ACTIONS(310), + [anon_sym_88] = ACTIONS(310), + [anon_sym_89] = ACTIONS(310), + [anon_sym_90] = ACTIONS(310), + [anon_sym_91] = ACTIONS(310), + [anon_sym_92] = ACTIONS(310), [sym__endOfLine] = ACTIONS(5), }, [82] = { - [sym_inlineFunction] = STATE(87), - [sym_function] = STATE(87), - [aux_sym_number_token1] = ACTIONS(430), - [sym_fraction] = ACTIONS(432), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [anon_sym_NUmProcs] = ACTIONS(430), - [anon_sym_] = ACTIONS(432), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_identifierDeprecated] = ACTIONS(430), - [sym_system] = ACTIONS(436), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(438), - [sym_closeParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_closeCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_closeBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_2] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_3] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_4] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_62] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_63] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_67] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_68] = ACTIONS(432), - [anon_sym_rectify] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_this] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_recur] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_82] = ACTIONS(432), - [anon_sym_do] = ACTIONS(430), - [anon_sym_83] = ACTIONS(432), - [anon_sym_all] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_setinv] = ACTIONS(432), - [anon_sym_setunder] = ACTIONS(432), - [anon_sym_85] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), - [anon_sym_94] = ACTIONS(432), - [anon_sym_95] = ACTIONS(432), - [anon_sym_96] = ACTIONS(432), - [sym__endOfLine] = ACTIONS(432), + [sym_inlineFunction] = STATE(105), + [sym_function] = STATE(105), + [aux_sym_number_token1] = ACTIONS(466), + [sym_fraction] = ACTIONS(468), + [anon_sym_os] = ACTIONS(466), + [anon_sym_Family] = ACTIONS(466), + [anon_sym_Arch] = ACTIONS(466), + [anon_sym_ExeExt] = ACTIONS(466), + [anon_sym_PllExt] = ACTIONS(466), + [anon_sym_Sep] = ACTIONS(466), + [anon_sym_NUmProcs] = ACTIONS(466), + [anon_sym_] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(468), + [sym_string] = ACTIONS(468), + [sym_multiLineString] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [sym_identifierDeprecated] = ACTIONS(466), + [sym_system] = ACTIONS(472), + [sym_comment] = ACTIONS(466), + [sym_openParen] = ACTIONS(474), + [sym_closeParen] = ACTIONS(468), + [sym_openCurly] = ACTIONS(468), + [sym_closeCurly] = ACTIONS(468), + [sym_openBracket] = ACTIONS(468), + [sym_closeBracket] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(468), + [anon_sym_eta] = ACTIONS(468), + [anon_sym_2] = ACTIONS(466), + [anon_sym_pi] = ACTIONS(466), + [anon_sym_3] = ACTIONS(466), + [anon_sym_tau] = ACTIONS(468), + [anon_sym_4] = ACTIONS(466), + [anon_sym_infinity] = ACTIONS(468), + [anon_sym_5] = ACTIONS(468), + [anon_sym_e] = ACTIONS(466), + [anon_sym_NaN] = ACTIONS(466), + [anon_sym_NumProcs] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_scan] = ACTIONS(468), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_each] = ACTIONS(468), + [anon_sym_62] = ACTIONS(468), + [anon_sym_rows] = ACTIONS(468), + [anon_sym_63] = ACTIONS(468), + [anon_sym_repeat] = ACTIONS(468), + [anon_sym_64] = ACTIONS(468), + [anon_sym_dip] = ACTIONS(468), + [anon_sym_65] = ACTIONS(468), + [anon_sym_gap] = ACTIONS(468), + [anon_sym_66] = ACTIONS(468), + [anon_sym_invert] = ACTIONS(468), + [anon_sym_67] = ACTIONS(468), + [anon_sym_spawn] = ACTIONS(468), + [anon_sym_pack] = ACTIONS(468), + [anon_sym_68] = ACTIONS(468), + [anon_sym_rectify] = ACTIONS(468), + [anon_sym_69] = ACTIONS(468), + [anon_sym_this] = ACTIONS(468), + [anon_sym_70] = ACTIONS(468), + [anon_sym_recur] = ACTIONS(468), + [anon_sym_71] = ACTIONS(468), + [anon_sym_fold] = ACTIONS(468), + [anon_sym_72] = ACTIONS(468), + [anon_sym_table] = ACTIONS(468), + [anon_sym_73] = ACTIONS(468), + [anon_sym_cross] = ACTIONS(468), + [anon_sym_74] = ACTIONS(468), + [anon_sym_group] = ACTIONS(468), + [anon_sym_75] = ACTIONS(468), + [anon_sym_partition] = ACTIONS(468), + [anon_sym_76] = ACTIONS(468), + [anon_sym_both] = ACTIONS(468), + [anon_sym_77] = ACTIONS(468), + [anon_sym_bracket] = ACTIONS(468), + [anon_sym_78] = ACTIONS(468), + [anon_sym_fork] = ACTIONS(468), + [anon_sym_79] = ACTIONS(468), + [anon_sym_under] = ACTIONS(468), + [anon_sym_80] = ACTIONS(468), + [anon_sym_fill] = ACTIONS(468), + [anon_sym_81] = ACTIONS(468), + [anon_sym_try] = ACTIONS(466), + [anon_sym_82] = ACTIONS(468), + [anon_sym_do] = ACTIONS(466), + [anon_sym_83] = ACTIONS(468), + [anon_sym_all] = ACTIONS(468), + [anon_sym_84] = ACTIONS(468), + [anon_sym_setinv] = ACTIONS(468), + [anon_sym_setunder] = ACTIONS(468), + [anon_sym_85] = ACTIONS(468), + [anon_sym_86] = ACTIONS(468), + [anon_sym_87] = ACTIONS(468), + [anon_sym_88] = ACTIONS(468), + [anon_sym_89] = ACTIONS(468), + [anon_sym_90] = ACTIONS(468), + [anon_sym_91] = ACTIONS(468), + [anon_sym_92] = ACTIONS(468), + [sym__endOfLine] = ACTIONS(468), }, [83] = { - [sym_inlineFunction] = STATE(104), - [sym_function] = STATE(104), - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(446), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(438), - [sym_closeParen] = ACTIONS(442), - [sym_openCurly] = ACTIONS(442), - [sym_closeCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_closeBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), - }, - [84] = { - [sym_inlineFunction] = STATE(82), - [sym_function] = STATE(82), - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [sym_identifier] = ACTIONS(448), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(450), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(438), - [sym_closeParen] = ACTIONS(442), - [sym_openCurly] = ACTIONS(442), - [sym_closeCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_closeBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_identity] = ACTIONS(154), - [anon_sym_id] = ACTIONS(156), - [anon_sym_6] = ACTIONS(154), - [anon_sym_not] = ACTIONS(154), - [anon_sym_7] = ACTIONS(154), - [anon_sym_sign] = ACTIONS(154), - [anon_sym_8] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_9] = ACTIONS(156), - [anon_sym_absolutevalue] = ACTIONS(154), - [anon_sym_10] = ACTIONS(154), - [anon_sym_sqrt] = ACTIONS(154), - [anon_sym_11] = ACTIONS(154), - [anon_sym_sine] = ACTIONS(154), - [anon_sym_12] = ACTIONS(154), - [anon_sym_floor] = ACTIONS(154), - [anon_sym_13] = ACTIONS(154), - [anon_sym_ceiling] = ACTIONS(154), - [anon_sym_14] = ACTIONS(154), - [anon_sym_round] = ACTIONS(154), - [anon_sym_15] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_BANG_EQ] = ACTIONS(154), - [anon_sym_16] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_17] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [anon_sym_18] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_19] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_20] = ACTIONS(154), - [anon_sym_modulus] = ACTIONS(154), - [anon_sym_21] = ACTIONS(154), - [anon_sym_power] = ACTIONS(154), - [anon_sym_22] = ACTIONS(154), - [anon_sym_logarithm] = ACTIONS(154), - [anon_sym_23] = ACTIONS(154), - [anon_sym_minimum] = ACTIONS(154), - [anon_sym_24] = ACTIONS(154), - [anon_sym_maximum] = ACTIONS(154), - [anon_sym_25] = ACTIONS(154), - [anon_sym_atangent] = ACTIONS(154), - [anon_sym_26] = ACTIONS(154), - [anon_sym_length] = ACTIONS(154), - [anon_sym_27] = ACTIONS(154), - [anon_sym_shape] = ACTIONS(154), - [anon_sym_28] = ACTIONS(154), - [anon_sym_range] = ACTIONS(154), - [anon_sym_29] = ACTIONS(154), - [anon_sym_first] = ACTIONS(154), - [anon_sym_30] = ACTIONS(154), - [anon_sym_reverse] = ACTIONS(154), - [anon_sym_31] = ACTIONS(154), - [anon_sym_deshape] = ACTIONS(154), - [anon_sym_32] = ACTIONS(154), - [anon_sym_bits] = ACTIONS(154), - [anon_sym_33] = ACTIONS(154), - [anon_sym_transpose] = ACTIONS(154), - [anon_sym_34] = ACTIONS(154), - [anon_sym_rise] = ACTIONS(154), - [anon_sym_35] = ACTIONS(154), - [anon_sym_fall] = ACTIONS(154), - [anon_sym_36] = ACTIONS(154), - [anon_sym_where] = ACTIONS(154), - [anon_sym_37] = ACTIONS(154), - [anon_sym_classify] = ACTIONS(154), - [anon_sym_38] = ACTIONS(154), - [anon_sym_deduplicate] = ACTIONS(154), - [anon_sym_39] = ACTIONS(154), - [anon_sym_box] = ACTIONS(154), - [anon_sym_40] = ACTIONS(154), - [anon_sym_unbox] = ACTIONS(154), - [anon_sym_41] = ACTIONS(154), - [anon_sym_match] = ACTIONS(154), - [anon_sym_42] = ACTIONS(154), - [anon_sym_couple] = ACTIONS(154), - [anon_sym_43] = ACTIONS(154), - [anon_sym_join] = ACTIONS(154), - [anon_sym_44] = ACTIONS(154), - [anon_sym_select] = ACTIONS(154), - [anon_sym_45] = ACTIONS(154), - [anon_sym_pick] = ACTIONS(154), - [anon_sym_46] = ACTIONS(154), - [anon_sym_reshape] = ACTIONS(154), - [anon_sym_47] = ACTIONS(154), - [anon_sym_take] = ACTIONS(154), - [anon_sym_48] = ACTIONS(154), - [anon_sym_drop] = ACTIONS(154), - [anon_sym_49] = ACTIONS(154), - [anon_sym_rotate] = ACTIONS(154), - [anon_sym_50] = ACTIONS(154), - [anon_sym_windows] = ACTIONS(154), - [anon_sym_51] = ACTIONS(154), - [anon_sym_keep] = ACTIONS(154), - [anon_sym_52] = ACTIONS(154), - [anon_sym_find] = ACTIONS(154), - [anon_sym_53] = ACTIONS(154), - [anon_sym_member] = ACTIONS(154), - [anon_sym_54] = ACTIONS(154), - [anon_sym_indexof] = ACTIONS(154), - [anon_sym_55] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(154), - [anon_sym_56] = ACTIONS(154), - [anon_sym_wait] = ACTIONS(154), - [anon_sym_parse] = ACTIONS(154), - [anon_sym_random] = ACTIONS(154), - [anon_sym_57] = ACTIONS(154), - [anon_sym_gen] = ACTIONS(154), - [anon_sym_deal] = ACTIONS(154), - [anon_sym_tag] = ACTIONS(154), - [anon_sym_now] = ACTIONS(154), - [anon_sym_type] = ACTIONS(154), - [anon_sym_58] = ACTIONS(154), - [anon_sym_dump] = ACTIONS(154), - [anon_sym_regex] = ACTIONS(154), - [anon_sym_utf] = ACTIONS(154), - [anon_sym_send] = ACTIONS(154), - [anon_sym_recv] = ACTIONS(154), - [anon_sym_tryrecv] = ACTIONS(154), - [anon_sym_complex] = ACTIONS(154), - [anon_sym_59] = ACTIONS(154), - [anon_sym_rerank] = ACTIONS(154), - [anon_sym_60] = ACTIONS(154), - [anon_sym_fix] = ACTIONS(154), - [anon_sym_61] = ACTIONS(154), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), - }, - [85] = { - [aux_sym_number_token1] = ACTIONS(452), - [sym_fraction] = ACTIONS(454), - [anon_sym_os] = ACTIONS(452), - [anon_sym_Family] = ACTIONS(452), - [anon_sym_Arch] = ACTIONS(452), - [anon_sym_ExeExt] = ACTIONS(452), - [anon_sym_PllExt] = ACTIONS(452), - [anon_sym_Sep] = ACTIONS(452), - [anon_sym_NUmProcs] = ACTIONS(452), - [anon_sym_] = ACTIONS(454), - [aux_sym_character_token1] = ACTIONS(454), - [sym_string] = ACTIONS(454), - [sym_multiLineString] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(454), - [sym_identifier] = ACTIONS(452), - [sym_identifierDeprecated] = ACTIONS(452), - [sym_system] = ACTIONS(454), - [sym_comment] = ACTIONS(452), - [sym_openParen] = ACTIONS(454), - [sym_closeParen] = ACTIONS(454), - [sym_openCurly] = ACTIONS(454), - [sym_closeCurly] = ACTIONS(454), - [sym_openBracket] = ACTIONS(454), - [sym_closeBracket] = ACTIONS(454), - [sym_underscore] = ACTIONS(454), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_eta] = ACTIONS(454), - [anon_sym_2] = ACTIONS(452), - [anon_sym_pi] = ACTIONS(452), - [anon_sym_3] = ACTIONS(452), - [anon_sym_tau] = ACTIONS(454), - [anon_sym_4] = ACTIONS(452), - [anon_sym_infinity] = ACTIONS(454), - [anon_sym_5] = ACTIONS(454), - [anon_sym_e] = ACTIONS(452), - [anon_sym_NaN] = ACTIONS(452), - [anon_sym_NumProcs] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_identity] = ACTIONS(454), - [anon_sym_id] = ACTIONS(452), - [anon_sym_6] = ACTIONS(454), - [anon_sym_not] = ACTIONS(454), - [anon_sym_7] = ACTIONS(454), - [anon_sym_sign] = ACTIONS(454), - [anon_sym_8] = ACTIONS(454), - [anon_sym_BQUOTE] = ACTIONS(454), - [anon_sym_9] = ACTIONS(452), - [anon_sym_absolutevalue] = ACTIONS(454), - [anon_sym_10] = ACTIONS(454), - [anon_sym_sqrt] = ACTIONS(454), - [anon_sym_11] = ACTIONS(454), - [anon_sym_sine] = ACTIONS(454), - [anon_sym_12] = ACTIONS(454), - [anon_sym_floor] = ACTIONS(454), - [anon_sym_13] = ACTIONS(454), - [anon_sym_ceiling] = ACTIONS(454), - [anon_sym_14] = ACTIONS(454), - [anon_sym_round] = ACTIONS(454), - [anon_sym_15] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_16] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_17] = ACTIONS(454), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_18] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_19] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_20] = ACTIONS(454), - [anon_sym_modulus] = ACTIONS(454), - [anon_sym_21] = ACTIONS(454), - [anon_sym_power] = ACTIONS(454), - [anon_sym_22] = ACTIONS(454), - [anon_sym_logarithm] = ACTIONS(454), - [anon_sym_23] = ACTIONS(454), - [anon_sym_minimum] = ACTIONS(454), - [anon_sym_24] = ACTIONS(454), - [anon_sym_maximum] = ACTIONS(454), - [anon_sym_25] = ACTIONS(454), - [anon_sym_atangent] = ACTIONS(454), - [anon_sym_26] = ACTIONS(454), - [anon_sym_length] = ACTIONS(454), - [anon_sym_27] = ACTIONS(454), - [anon_sym_shape] = ACTIONS(454), - [anon_sym_28] = ACTIONS(454), - [anon_sym_range] = ACTIONS(454), - [anon_sym_29] = ACTIONS(454), - [anon_sym_first] = ACTIONS(454), - [anon_sym_30] = ACTIONS(454), - [anon_sym_reverse] = ACTIONS(454), - [anon_sym_31] = ACTIONS(454), - [anon_sym_deshape] = ACTIONS(454), - [anon_sym_32] = ACTIONS(454), - [anon_sym_bits] = ACTIONS(454), - [anon_sym_33] = ACTIONS(454), - [anon_sym_transpose] = ACTIONS(454), - [anon_sym_34] = ACTIONS(454), - [anon_sym_rise] = ACTIONS(454), - [anon_sym_35] = ACTIONS(454), - [anon_sym_fall] = ACTIONS(454), - [anon_sym_36] = ACTIONS(454), - [anon_sym_where] = ACTIONS(454), - [anon_sym_37] = ACTIONS(454), - [anon_sym_classify] = ACTIONS(454), - [anon_sym_38] = ACTIONS(454), - [anon_sym_deduplicate] = ACTIONS(454), - [anon_sym_39] = ACTIONS(454), - [anon_sym_box] = ACTIONS(454), - [anon_sym_40] = ACTIONS(454), - [anon_sym_unbox] = ACTIONS(454), - [anon_sym_41] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_42] = ACTIONS(454), - [anon_sym_couple] = ACTIONS(454), - [anon_sym_43] = ACTIONS(454), - [anon_sym_join] = ACTIONS(454), - [anon_sym_44] = ACTIONS(454), - [anon_sym_select] = ACTIONS(454), - [anon_sym_45] = ACTIONS(454), - [anon_sym_pick] = ACTIONS(454), - [anon_sym_46] = ACTIONS(454), - [anon_sym_reshape] = ACTIONS(454), - [anon_sym_47] = ACTIONS(454), - [anon_sym_take] = ACTIONS(454), - [anon_sym_48] = ACTIONS(454), - [anon_sym_drop] = ACTIONS(454), - [anon_sym_49] = ACTIONS(454), - [anon_sym_rotate] = ACTIONS(454), - [anon_sym_50] = ACTIONS(454), - [anon_sym_windows] = ACTIONS(454), - [anon_sym_51] = ACTIONS(454), - [anon_sym_keep] = ACTIONS(454), - [anon_sym_52] = ACTIONS(454), - [anon_sym_find] = ACTIONS(454), - [anon_sym_53] = ACTIONS(454), - [anon_sym_member] = ACTIONS(454), - [anon_sym_54] = ACTIONS(454), - [anon_sym_indexof] = ACTIONS(454), - [anon_sym_55] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(454), - [anon_sym_56] = ACTIONS(454), - [anon_sym_wait] = ACTIONS(454), - [anon_sym_parse] = ACTIONS(454), - [anon_sym_random] = ACTIONS(454), - [anon_sym_57] = ACTIONS(454), - [anon_sym_gen] = ACTIONS(454), - [anon_sym_deal] = ACTIONS(454), - [anon_sym_tag] = ACTIONS(454), - [anon_sym_now] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_58] = ACTIONS(454), - [anon_sym_dump] = ACTIONS(454), - [anon_sym_regex] = ACTIONS(454), - [anon_sym_utf] = ACTIONS(454), - [anon_sym_send] = ACTIONS(454), - [anon_sym_recv] = ACTIONS(454), - [anon_sym_tryrecv] = ACTIONS(454), - [anon_sym_complex] = ACTIONS(454), - [anon_sym_59] = ACTIONS(454), - [anon_sym_rerank] = ACTIONS(454), - [anon_sym_60] = ACTIONS(454), - [anon_sym_fix] = ACTIONS(454), - [anon_sym_61] = ACTIONS(454), - [anon_sym_reduce] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_scan] = ACTIONS(454), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_each] = ACTIONS(454), - [anon_sym_62] = ACTIONS(454), - [anon_sym_rows] = ACTIONS(454), - [anon_sym_63] = ACTIONS(454), - [anon_sym_repeat] = ACTIONS(454), - [anon_sym_64] = ACTIONS(454), - [anon_sym_dip] = ACTIONS(454), - [anon_sym_65] = ACTIONS(454), - [anon_sym_gap] = ACTIONS(454), - [anon_sym_66] = ACTIONS(454), - [anon_sym_invert] = ACTIONS(454), - [anon_sym_67] = ACTIONS(454), - [anon_sym_spawn] = ACTIONS(454), - [anon_sym_pack] = ACTIONS(454), - [anon_sym_68] = ACTIONS(454), - [anon_sym_rectify] = ACTIONS(454), - [anon_sym_69] = ACTIONS(454), - [anon_sym_this] = ACTIONS(454), - [anon_sym_70] = ACTIONS(454), - [anon_sym_recur] = ACTIONS(454), - [anon_sym_71] = ACTIONS(454), - [anon_sym_fold] = ACTIONS(454), - [anon_sym_72] = ACTIONS(454), - [anon_sym_table] = ACTIONS(454), - [anon_sym_73] = ACTIONS(454), - [anon_sym_cross] = ACTIONS(454), - [anon_sym_74] = ACTIONS(454), - [anon_sym_group] = ACTIONS(454), - [anon_sym_75] = ACTIONS(454), - [anon_sym_partition] = ACTIONS(454), - [anon_sym_76] = ACTIONS(454), - [anon_sym_both] = ACTIONS(454), - [anon_sym_77] = ACTIONS(454), - [anon_sym_bracket] = ACTIONS(454), - [anon_sym_78] = ACTIONS(454), - [anon_sym_fork] = ACTIONS(454), - [anon_sym_79] = ACTIONS(454), - [anon_sym_under] = ACTIONS(454), - [anon_sym_80] = ACTIONS(454), - [anon_sym_fill] = ACTIONS(454), - [anon_sym_81] = ACTIONS(454), - [anon_sym_try] = ACTIONS(452), - [anon_sym_82] = ACTIONS(454), - [anon_sym_do] = ACTIONS(452), - [anon_sym_83] = ACTIONS(454), - [anon_sym_all] = ACTIONS(454), - [anon_sym_84] = ACTIONS(454), - [anon_sym_setinv] = ACTIONS(454), - [anon_sym_setunder] = ACTIONS(454), - [anon_sym_85] = ACTIONS(454), - [anon_sym_86] = ACTIONS(454), - [anon_sym_87] = ACTIONS(454), - [anon_sym_88] = ACTIONS(454), - [anon_sym_89] = ACTIONS(454), - [anon_sym_90] = ACTIONS(454), - [anon_sym_91] = ACTIONS(454), - [anon_sym_92] = ACTIONS(454), - [anon_sym_93] = ACTIONS(454), - [anon_sym_94] = ACTIONS(454), - [anon_sym_95] = ACTIONS(454), - [anon_sym_96] = ACTIONS(454), - [sym__endOfLine] = ACTIONS(454), - }, - [86] = { - [aux_sym_number_token1] = ACTIONS(456), - [sym_fraction] = ACTIONS(458), - [anon_sym_os] = ACTIONS(456), - [anon_sym_Family] = ACTIONS(456), - [anon_sym_Arch] = ACTIONS(456), - [anon_sym_ExeExt] = ACTIONS(456), - [anon_sym_PllExt] = ACTIONS(456), - [anon_sym_Sep] = ACTIONS(456), - [anon_sym_NUmProcs] = ACTIONS(456), - [anon_sym_] = ACTIONS(458), - [aux_sym_character_token1] = ACTIONS(458), - [sym_string] = ACTIONS(458), - [sym_multiLineString] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(458), - [sym_identifier] = ACTIONS(456), - [sym_identifierDeprecated] = ACTIONS(456), - [sym_system] = ACTIONS(458), - [sym_comment] = ACTIONS(456), - [sym_openParen] = ACTIONS(458), - [sym_closeParen] = ACTIONS(458), - [sym_openCurly] = ACTIONS(458), - [sym_closeCurly] = ACTIONS(458), - [sym_openBracket] = ACTIONS(458), - [sym_closeBracket] = ACTIONS(458), - [sym_underscore] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(458), - [anon_sym_eta] = ACTIONS(458), - [anon_sym_2] = ACTIONS(456), - [anon_sym_pi] = ACTIONS(456), - [anon_sym_3] = ACTIONS(456), - [anon_sym_tau] = ACTIONS(458), - [anon_sym_4] = ACTIONS(456), - [anon_sym_infinity] = ACTIONS(458), - [anon_sym_5] = ACTIONS(458), - [anon_sym_e] = ACTIONS(456), - [anon_sym_NaN] = ACTIONS(456), - [anon_sym_NumProcs] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_identity] = ACTIONS(458), - [anon_sym_id] = ACTIONS(456), - [anon_sym_6] = ACTIONS(458), - [anon_sym_not] = ACTIONS(458), - [anon_sym_7] = ACTIONS(458), - [anon_sym_sign] = ACTIONS(458), - [anon_sym_8] = ACTIONS(458), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_9] = ACTIONS(456), - [anon_sym_absolutevalue] = ACTIONS(458), - [anon_sym_10] = ACTIONS(458), - [anon_sym_sqrt] = ACTIONS(458), - [anon_sym_11] = ACTIONS(458), - [anon_sym_sine] = ACTIONS(458), - [anon_sym_12] = ACTIONS(458), - [anon_sym_floor] = ACTIONS(458), - [anon_sym_13] = ACTIONS(458), - [anon_sym_ceiling] = ACTIONS(458), - [anon_sym_14] = ACTIONS(458), - [anon_sym_round] = ACTIONS(458), - [anon_sym_15] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_16] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_17] = ACTIONS(458), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_18] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_19] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [anon_sym_20] = ACTIONS(458), - [anon_sym_modulus] = ACTIONS(458), - [anon_sym_21] = ACTIONS(458), - [anon_sym_power] = ACTIONS(458), - [anon_sym_22] = ACTIONS(458), - [anon_sym_logarithm] = ACTIONS(458), - [anon_sym_23] = ACTIONS(458), - [anon_sym_minimum] = ACTIONS(458), - [anon_sym_24] = ACTIONS(458), - [anon_sym_maximum] = ACTIONS(458), - [anon_sym_25] = ACTIONS(458), - [anon_sym_atangent] = ACTIONS(458), - [anon_sym_26] = ACTIONS(458), - [anon_sym_length] = ACTIONS(458), - [anon_sym_27] = ACTIONS(458), - [anon_sym_shape] = ACTIONS(458), - [anon_sym_28] = ACTIONS(458), - [anon_sym_range] = ACTIONS(458), - [anon_sym_29] = ACTIONS(458), - [anon_sym_first] = ACTIONS(458), - [anon_sym_30] = ACTIONS(458), - [anon_sym_reverse] = ACTIONS(458), - [anon_sym_31] = ACTIONS(458), - [anon_sym_deshape] = ACTIONS(458), - [anon_sym_32] = ACTIONS(458), - [anon_sym_bits] = ACTIONS(458), - [anon_sym_33] = ACTIONS(458), - [anon_sym_transpose] = ACTIONS(458), - [anon_sym_34] = ACTIONS(458), - [anon_sym_rise] = ACTIONS(458), - [anon_sym_35] = ACTIONS(458), - [anon_sym_fall] = ACTIONS(458), - [anon_sym_36] = ACTIONS(458), - [anon_sym_where] = ACTIONS(458), - [anon_sym_37] = ACTIONS(458), - [anon_sym_classify] = ACTIONS(458), - [anon_sym_38] = ACTIONS(458), - [anon_sym_deduplicate] = ACTIONS(458), - [anon_sym_39] = ACTIONS(458), - [anon_sym_box] = ACTIONS(458), - [anon_sym_40] = ACTIONS(458), - [anon_sym_unbox] = ACTIONS(458), - [anon_sym_41] = ACTIONS(458), - [anon_sym_match] = ACTIONS(458), - [anon_sym_42] = ACTIONS(458), - [anon_sym_couple] = ACTIONS(458), - [anon_sym_43] = ACTIONS(458), - [anon_sym_join] = ACTIONS(458), - [anon_sym_44] = ACTIONS(458), - [anon_sym_select] = ACTIONS(458), - [anon_sym_45] = ACTIONS(458), - [anon_sym_pick] = ACTIONS(458), - [anon_sym_46] = ACTIONS(458), - [anon_sym_reshape] = ACTIONS(458), - [anon_sym_47] = ACTIONS(458), - [anon_sym_take] = ACTIONS(458), - [anon_sym_48] = ACTIONS(458), - [anon_sym_drop] = ACTIONS(458), - [anon_sym_49] = ACTIONS(458), - [anon_sym_rotate] = ACTIONS(458), - [anon_sym_50] = ACTIONS(458), - [anon_sym_windows] = ACTIONS(458), - [anon_sym_51] = ACTIONS(458), - [anon_sym_keep] = ACTIONS(458), - [anon_sym_52] = ACTIONS(458), - [anon_sym_find] = ACTIONS(458), - [anon_sym_53] = ACTIONS(458), - [anon_sym_member] = ACTIONS(458), - [anon_sym_54] = ACTIONS(458), - [anon_sym_indexof] = ACTIONS(458), - [anon_sym_55] = ACTIONS(458), - [anon_sym_assert] = ACTIONS(458), - [anon_sym_56] = ACTIONS(458), - [anon_sym_wait] = ACTIONS(458), - [anon_sym_parse] = ACTIONS(458), - [anon_sym_random] = ACTIONS(458), - [anon_sym_57] = ACTIONS(458), - [anon_sym_gen] = ACTIONS(458), - [anon_sym_deal] = ACTIONS(458), - [anon_sym_tag] = ACTIONS(458), - [anon_sym_now] = ACTIONS(458), - [anon_sym_type] = ACTIONS(458), - [anon_sym_58] = ACTIONS(458), - [anon_sym_dump] = ACTIONS(458), - [anon_sym_regex] = ACTIONS(458), - [anon_sym_utf] = ACTIONS(458), - [anon_sym_send] = ACTIONS(458), - [anon_sym_recv] = ACTIONS(458), - [anon_sym_tryrecv] = ACTIONS(458), - [anon_sym_complex] = ACTIONS(458), - [anon_sym_59] = ACTIONS(458), - [anon_sym_rerank] = ACTIONS(458), - [anon_sym_60] = ACTIONS(458), - [anon_sym_fix] = ACTIONS(458), - [anon_sym_61] = ACTIONS(458), - [anon_sym_reduce] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(458), - [anon_sym_scan] = ACTIONS(458), - [anon_sym_BSLASH] = ACTIONS(458), - [anon_sym_each] = ACTIONS(458), - [anon_sym_62] = ACTIONS(458), - [anon_sym_rows] = ACTIONS(458), - [anon_sym_63] = ACTIONS(458), - [anon_sym_repeat] = ACTIONS(458), - [anon_sym_64] = ACTIONS(458), - [anon_sym_dip] = ACTIONS(458), - [anon_sym_65] = ACTIONS(458), - [anon_sym_gap] = ACTIONS(458), - [anon_sym_66] = ACTIONS(458), - [anon_sym_invert] = ACTIONS(458), - [anon_sym_67] = ACTIONS(458), - [anon_sym_spawn] = ACTIONS(458), - [anon_sym_pack] = ACTIONS(458), - [anon_sym_68] = ACTIONS(458), - [anon_sym_rectify] = ACTIONS(458), - [anon_sym_69] = ACTIONS(458), - [anon_sym_this] = ACTIONS(458), - [anon_sym_70] = ACTIONS(458), - [anon_sym_recur] = ACTIONS(458), - [anon_sym_71] = ACTIONS(458), - [anon_sym_fold] = ACTIONS(458), - [anon_sym_72] = ACTIONS(458), - [anon_sym_table] = ACTIONS(458), - [anon_sym_73] = ACTIONS(458), - [anon_sym_cross] = ACTIONS(458), - [anon_sym_74] = ACTIONS(458), - [anon_sym_group] = ACTIONS(458), - [anon_sym_75] = ACTIONS(458), - [anon_sym_partition] = ACTIONS(458), - [anon_sym_76] = ACTIONS(458), - [anon_sym_both] = ACTIONS(458), - [anon_sym_77] = ACTIONS(458), - [anon_sym_bracket] = ACTIONS(458), - [anon_sym_78] = ACTIONS(458), - [anon_sym_fork] = ACTIONS(458), - [anon_sym_79] = ACTIONS(458), - [anon_sym_under] = ACTIONS(458), - [anon_sym_80] = ACTIONS(458), - [anon_sym_fill] = ACTIONS(458), - [anon_sym_81] = ACTIONS(458), - [anon_sym_try] = ACTIONS(456), - [anon_sym_82] = ACTIONS(458), - [anon_sym_do] = ACTIONS(456), - [anon_sym_83] = ACTIONS(458), - [anon_sym_all] = ACTIONS(458), - [anon_sym_84] = ACTIONS(458), - [anon_sym_setinv] = ACTIONS(458), - [anon_sym_setunder] = ACTIONS(458), - [anon_sym_85] = ACTIONS(458), - [anon_sym_86] = ACTIONS(458), - [anon_sym_87] = ACTIONS(458), - [anon_sym_88] = ACTIONS(458), - [anon_sym_89] = ACTIONS(458), - [anon_sym_90] = ACTIONS(458), - [anon_sym_91] = ACTIONS(458), - [anon_sym_92] = ACTIONS(458), - [anon_sym_93] = ACTIONS(458), - [anon_sym_94] = ACTIONS(458), - [anon_sym_95] = ACTIONS(458), - [anon_sym_96] = ACTIONS(458), - [sym__endOfLine] = ACTIONS(458), - }, - [87] = { - [aux_sym_number_token1] = ACTIONS(460), - [sym_fraction] = ACTIONS(462), - [anon_sym_os] = ACTIONS(460), - [anon_sym_Family] = ACTIONS(460), - [anon_sym_Arch] = ACTIONS(460), - [anon_sym_ExeExt] = ACTIONS(460), - [anon_sym_PllExt] = ACTIONS(460), - [anon_sym_Sep] = ACTIONS(460), - [anon_sym_NUmProcs] = ACTIONS(460), - [anon_sym_] = ACTIONS(462), - [aux_sym_character_token1] = ACTIONS(462), - [sym_string] = ACTIONS(462), - [sym_multiLineString] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(462), - [sym_identifier] = ACTIONS(460), - [sym_identifierDeprecated] = ACTIONS(460), - [sym_system] = ACTIONS(462), - [sym_comment] = ACTIONS(460), - [sym_openParen] = ACTIONS(462), - [sym_closeParen] = ACTIONS(462), - [sym_openCurly] = ACTIONS(462), - [sym_closeCurly] = ACTIONS(462), - [sym_openBracket] = ACTIONS(462), - [sym_closeBracket] = ACTIONS(462), - [sym_underscore] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(462), - [anon_sym_eta] = ACTIONS(462), - [anon_sym_2] = ACTIONS(460), - [anon_sym_pi] = ACTIONS(460), - [anon_sym_3] = ACTIONS(460), - [anon_sym_tau] = ACTIONS(462), - [anon_sym_4] = ACTIONS(460), - [anon_sym_infinity] = ACTIONS(462), - [anon_sym_5] = ACTIONS(462), - [anon_sym_e] = ACTIONS(460), - [anon_sym_NaN] = ACTIONS(460), - [anon_sym_NumProcs] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_COLON] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_identity] = ACTIONS(462), - [anon_sym_id] = ACTIONS(460), - [anon_sym_6] = ACTIONS(462), - [anon_sym_not] = ACTIONS(462), - [anon_sym_7] = ACTIONS(462), - [anon_sym_sign] = ACTIONS(462), - [anon_sym_8] = ACTIONS(462), - [anon_sym_BQUOTE] = ACTIONS(462), - [anon_sym_9] = ACTIONS(460), - [anon_sym_absolutevalue] = ACTIONS(462), - [anon_sym_10] = ACTIONS(462), - [anon_sym_sqrt] = ACTIONS(462), - [anon_sym_11] = ACTIONS(462), - [anon_sym_sine] = ACTIONS(462), - [anon_sym_12] = ACTIONS(462), - [anon_sym_floor] = ACTIONS(462), - [anon_sym_13] = ACTIONS(462), - [anon_sym_ceiling] = ACTIONS(462), - [anon_sym_14] = ACTIONS(462), - [anon_sym_round] = ACTIONS(462), - [anon_sym_15] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_16] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_17] = ACTIONS(462), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_18] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_19] = ACTIONS(462), - [anon_sym_PERCENT] = ACTIONS(462), - [anon_sym_20] = ACTIONS(462), - [anon_sym_modulus] = ACTIONS(462), - [anon_sym_21] = ACTIONS(462), - [anon_sym_power] = ACTIONS(462), - [anon_sym_22] = ACTIONS(462), - [anon_sym_logarithm] = ACTIONS(462), - [anon_sym_23] = ACTIONS(462), - [anon_sym_minimum] = ACTIONS(462), - [anon_sym_24] = ACTIONS(462), - [anon_sym_maximum] = ACTIONS(462), - [anon_sym_25] = ACTIONS(462), - [anon_sym_atangent] = ACTIONS(462), - [anon_sym_26] = ACTIONS(462), - [anon_sym_length] = ACTIONS(462), - [anon_sym_27] = ACTIONS(462), - [anon_sym_shape] = ACTIONS(462), - [anon_sym_28] = ACTIONS(462), - [anon_sym_range] = ACTIONS(462), - [anon_sym_29] = ACTIONS(462), - [anon_sym_first] = ACTIONS(462), - [anon_sym_30] = ACTIONS(462), - [anon_sym_reverse] = ACTIONS(462), - [anon_sym_31] = ACTIONS(462), - [anon_sym_deshape] = ACTIONS(462), - [anon_sym_32] = ACTIONS(462), - [anon_sym_bits] = ACTIONS(462), - [anon_sym_33] = ACTIONS(462), - [anon_sym_transpose] = ACTIONS(462), - [anon_sym_34] = ACTIONS(462), - [anon_sym_rise] = ACTIONS(462), - [anon_sym_35] = ACTIONS(462), - [anon_sym_fall] = ACTIONS(462), - [anon_sym_36] = ACTIONS(462), - [anon_sym_where] = ACTIONS(462), - [anon_sym_37] = ACTIONS(462), - [anon_sym_classify] = ACTIONS(462), - [anon_sym_38] = ACTIONS(462), - [anon_sym_deduplicate] = ACTIONS(462), - [anon_sym_39] = ACTIONS(462), - [anon_sym_box] = ACTIONS(462), - [anon_sym_40] = ACTIONS(462), - [anon_sym_unbox] = ACTIONS(462), - [anon_sym_41] = ACTIONS(462), - [anon_sym_match] = ACTIONS(462), - [anon_sym_42] = ACTIONS(462), - [anon_sym_couple] = ACTIONS(462), - [anon_sym_43] = ACTIONS(462), - [anon_sym_join] = ACTIONS(462), - [anon_sym_44] = ACTIONS(462), - [anon_sym_select] = ACTIONS(462), - [anon_sym_45] = ACTIONS(462), - [anon_sym_pick] = ACTIONS(462), - [anon_sym_46] = ACTIONS(462), - [anon_sym_reshape] = ACTIONS(462), - [anon_sym_47] = ACTIONS(462), - [anon_sym_take] = ACTIONS(462), - [anon_sym_48] = ACTIONS(462), - [anon_sym_drop] = ACTIONS(462), - [anon_sym_49] = ACTIONS(462), - [anon_sym_rotate] = ACTIONS(462), - [anon_sym_50] = ACTIONS(462), - [anon_sym_windows] = ACTIONS(462), - [anon_sym_51] = ACTIONS(462), - [anon_sym_keep] = ACTIONS(462), - [anon_sym_52] = ACTIONS(462), - [anon_sym_find] = ACTIONS(462), - [anon_sym_53] = ACTIONS(462), - [anon_sym_member] = ACTIONS(462), - [anon_sym_54] = ACTIONS(462), - [anon_sym_indexof] = ACTIONS(462), - [anon_sym_55] = ACTIONS(462), - [anon_sym_assert] = ACTIONS(462), - [anon_sym_56] = ACTIONS(462), - [anon_sym_wait] = ACTIONS(462), - [anon_sym_parse] = ACTIONS(462), - [anon_sym_random] = ACTIONS(462), - [anon_sym_57] = ACTIONS(462), - [anon_sym_gen] = ACTIONS(462), - [anon_sym_deal] = ACTIONS(462), - [anon_sym_tag] = ACTIONS(462), - [anon_sym_now] = ACTIONS(462), - [anon_sym_type] = ACTIONS(462), - [anon_sym_58] = ACTIONS(462), - [anon_sym_dump] = ACTIONS(462), - [anon_sym_regex] = ACTIONS(462), - [anon_sym_utf] = ACTIONS(462), - [anon_sym_send] = ACTIONS(462), - [anon_sym_recv] = ACTIONS(462), - [anon_sym_tryrecv] = ACTIONS(462), - [anon_sym_complex] = ACTIONS(462), - [anon_sym_59] = ACTIONS(462), - [anon_sym_rerank] = ACTIONS(462), - [anon_sym_60] = ACTIONS(462), - [anon_sym_fix] = ACTIONS(462), - [anon_sym_61] = ACTIONS(462), - [anon_sym_reduce] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [anon_sym_scan] = ACTIONS(462), - [anon_sym_BSLASH] = ACTIONS(462), - [anon_sym_each] = ACTIONS(462), - [anon_sym_62] = ACTIONS(462), - [anon_sym_rows] = ACTIONS(462), - [anon_sym_63] = ACTIONS(462), - [anon_sym_repeat] = ACTIONS(462), - [anon_sym_64] = ACTIONS(462), - [anon_sym_dip] = ACTIONS(462), - [anon_sym_65] = ACTIONS(462), - [anon_sym_gap] = ACTIONS(462), - [anon_sym_66] = ACTIONS(462), - [anon_sym_invert] = ACTIONS(462), - [anon_sym_67] = ACTIONS(462), - [anon_sym_spawn] = ACTIONS(462), - [anon_sym_pack] = ACTIONS(462), - [anon_sym_68] = ACTIONS(462), - [anon_sym_rectify] = ACTIONS(462), - [anon_sym_69] = ACTIONS(462), - [anon_sym_this] = ACTIONS(462), - [anon_sym_70] = ACTIONS(462), - [anon_sym_recur] = ACTIONS(462), - [anon_sym_71] = ACTIONS(462), - [anon_sym_fold] = ACTIONS(462), - [anon_sym_72] = ACTIONS(462), - [anon_sym_table] = ACTIONS(462), - [anon_sym_73] = ACTIONS(462), - [anon_sym_cross] = ACTIONS(462), - [anon_sym_74] = ACTIONS(462), - [anon_sym_group] = ACTIONS(462), - [anon_sym_75] = ACTIONS(462), - [anon_sym_partition] = ACTIONS(462), - [anon_sym_76] = ACTIONS(462), - [anon_sym_both] = ACTIONS(462), - [anon_sym_77] = ACTIONS(462), - [anon_sym_bracket] = ACTIONS(462), - [anon_sym_78] = ACTIONS(462), - [anon_sym_fork] = ACTIONS(462), - [anon_sym_79] = ACTIONS(462), - [anon_sym_under] = ACTIONS(462), - [anon_sym_80] = ACTIONS(462), - [anon_sym_fill] = ACTIONS(462), - [anon_sym_81] = ACTIONS(462), - [anon_sym_try] = ACTIONS(460), - [anon_sym_82] = ACTIONS(462), - [anon_sym_do] = ACTIONS(460), - [anon_sym_83] = ACTIONS(462), - [anon_sym_all] = ACTIONS(462), - [anon_sym_84] = ACTIONS(462), - [anon_sym_setinv] = ACTIONS(462), - [anon_sym_setunder] = ACTIONS(462), - [anon_sym_85] = ACTIONS(462), - [anon_sym_86] = ACTIONS(462), - [anon_sym_87] = ACTIONS(462), - [anon_sym_88] = ACTIONS(462), - [anon_sym_89] = ACTIONS(462), - [anon_sym_90] = ACTIONS(462), - [anon_sym_91] = ACTIONS(462), - [anon_sym_92] = ACTIONS(462), - [anon_sym_93] = ACTIONS(462), - [anon_sym_94] = ACTIONS(462), - [anon_sym_95] = ACTIONS(462), - [anon_sym_96] = ACTIONS(462), - [sym__endOfLine] = ACTIONS(462), - }, - [88] = { - [aux_sym_number_token1] = ACTIONS(464), - [sym_fraction] = ACTIONS(466), - [anon_sym_os] = ACTIONS(464), - [anon_sym_Family] = ACTIONS(464), - [anon_sym_Arch] = ACTIONS(464), - [anon_sym_ExeExt] = ACTIONS(464), - [anon_sym_PllExt] = ACTIONS(464), - [anon_sym_Sep] = ACTIONS(464), - [anon_sym_NUmProcs] = ACTIONS(464), - [anon_sym_] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(466), - [sym_string] = ACTIONS(466), - [sym_multiLineString] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(466), - [sym_identifier] = ACTIONS(464), - [sym_identifierDeprecated] = ACTIONS(464), - [sym_system] = ACTIONS(466), - [sym_comment] = ACTIONS(464), - [sym_openParen] = ACTIONS(466), - [sym_closeParen] = ACTIONS(466), - [sym_openCurly] = ACTIONS(466), - [sym_closeCurly] = ACTIONS(466), - [sym_openBracket] = ACTIONS(466), - [sym_closeBracket] = ACTIONS(466), - [sym_underscore] = ACTIONS(466), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_eta] = ACTIONS(466), - [anon_sym_2] = ACTIONS(464), - [anon_sym_pi] = ACTIONS(464), - [anon_sym_3] = ACTIONS(464), - [anon_sym_tau] = ACTIONS(466), - [anon_sym_4] = ACTIONS(464), - [anon_sym_infinity] = ACTIONS(466), - [anon_sym_5] = ACTIONS(466), - [anon_sym_e] = ACTIONS(464), - [anon_sym_NaN] = ACTIONS(464), - [anon_sym_NumProcs] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_identity] = ACTIONS(466), - [anon_sym_id] = ACTIONS(464), - [anon_sym_6] = ACTIONS(466), - [anon_sym_not] = ACTIONS(466), - [anon_sym_7] = ACTIONS(466), - [anon_sym_sign] = ACTIONS(466), - [anon_sym_8] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(466), - [anon_sym_10] = ACTIONS(466), - [anon_sym_sqrt] = ACTIONS(466), - [anon_sym_11] = ACTIONS(466), - [anon_sym_sine] = ACTIONS(466), - [anon_sym_12] = ACTIONS(466), - [anon_sym_floor] = ACTIONS(466), - [anon_sym_13] = ACTIONS(466), - [anon_sym_ceiling] = ACTIONS(466), - [anon_sym_14] = ACTIONS(466), - [anon_sym_round] = ACTIONS(466), - [anon_sym_15] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_16] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_17] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_18] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_19] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_20] = ACTIONS(466), - [anon_sym_modulus] = ACTIONS(466), - [anon_sym_21] = ACTIONS(466), - [anon_sym_power] = ACTIONS(466), - [anon_sym_22] = ACTIONS(466), - [anon_sym_logarithm] = ACTIONS(466), - [anon_sym_23] = ACTIONS(466), - [anon_sym_minimum] = ACTIONS(466), - [anon_sym_24] = ACTIONS(466), - [anon_sym_maximum] = ACTIONS(466), - [anon_sym_25] = ACTIONS(466), - [anon_sym_atangent] = ACTIONS(466), - [anon_sym_26] = ACTIONS(466), - [anon_sym_length] = ACTIONS(466), - [anon_sym_27] = ACTIONS(466), - [anon_sym_shape] = ACTIONS(466), - [anon_sym_28] = ACTIONS(466), - [anon_sym_range] = ACTIONS(466), - [anon_sym_29] = ACTIONS(466), - [anon_sym_first] = ACTIONS(466), - [anon_sym_30] = ACTIONS(466), - [anon_sym_reverse] = ACTIONS(466), - [anon_sym_31] = ACTIONS(466), - [anon_sym_deshape] = ACTIONS(466), - [anon_sym_32] = ACTIONS(466), - [anon_sym_bits] = ACTIONS(466), - [anon_sym_33] = ACTIONS(466), - [anon_sym_transpose] = ACTIONS(466), - [anon_sym_34] = ACTIONS(466), - [anon_sym_rise] = ACTIONS(466), - [anon_sym_35] = ACTIONS(466), - [anon_sym_fall] = ACTIONS(466), - [anon_sym_36] = ACTIONS(466), - [anon_sym_where] = ACTIONS(466), - [anon_sym_37] = ACTIONS(466), - [anon_sym_classify] = ACTIONS(466), - [anon_sym_38] = ACTIONS(466), - [anon_sym_deduplicate] = ACTIONS(466), - [anon_sym_39] = ACTIONS(466), - [anon_sym_box] = ACTIONS(466), - [anon_sym_40] = ACTIONS(466), - [anon_sym_unbox] = ACTIONS(466), - [anon_sym_41] = ACTIONS(466), - [anon_sym_match] = ACTIONS(466), - [anon_sym_42] = ACTIONS(466), - [anon_sym_couple] = ACTIONS(466), - [anon_sym_43] = ACTIONS(466), - [anon_sym_join] = ACTIONS(466), - [anon_sym_44] = ACTIONS(466), - [anon_sym_select] = ACTIONS(466), - [anon_sym_45] = ACTIONS(466), - [anon_sym_pick] = ACTIONS(466), - [anon_sym_46] = ACTIONS(466), - [anon_sym_reshape] = ACTIONS(466), - [anon_sym_47] = ACTIONS(466), - [anon_sym_take] = ACTIONS(466), - [anon_sym_48] = ACTIONS(466), - [anon_sym_drop] = ACTIONS(466), - [anon_sym_49] = ACTIONS(466), - [anon_sym_rotate] = ACTIONS(466), - [anon_sym_50] = ACTIONS(466), - [anon_sym_windows] = ACTIONS(466), - [anon_sym_51] = ACTIONS(466), - [anon_sym_keep] = ACTIONS(466), - [anon_sym_52] = ACTIONS(466), - [anon_sym_find] = ACTIONS(466), - [anon_sym_53] = ACTIONS(466), - [anon_sym_member] = ACTIONS(466), - [anon_sym_54] = ACTIONS(466), - [anon_sym_indexof] = ACTIONS(466), - [anon_sym_55] = ACTIONS(466), - [anon_sym_assert] = ACTIONS(466), - [anon_sym_56] = ACTIONS(466), - [anon_sym_wait] = ACTIONS(466), - [anon_sym_parse] = ACTIONS(466), - [anon_sym_random] = ACTIONS(466), - [anon_sym_57] = ACTIONS(466), - [anon_sym_gen] = ACTIONS(466), - [anon_sym_deal] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_now] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_58] = ACTIONS(466), - [anon_sym_dump] = ACTIONS(466), - [anon_sym_regex] = ACTIONS(466), - [anon_sym_utf] = ACTIONS(466), - [anon_sym_send] = ACTIONS(466), - [anon_sym_recv] = ACTIONS(466), - [anon_sym_tryrecv] = ACTIONS(466), - [anon_sym_complex] = ACTIONS(466), - [anon_sym_59] = ACTIONS(466), - [anon_sym_rerank] = ACTIONS(466), - [anon_sym_60] = ACTIONS(466), - [anon_sym_fix] = ACTIONS(466), - [anon_sym_61] = ACTIONS(466), - [anon_sym_reduce] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_scan] = ACTIONS(466), - [anon_sym_BSLASH] = ACTIONS(466), - [anon_sym_each] = ACTIONS(466), - [anon_sym_62] = ACTIONS(466), - [anon_sym_rows] = ACTIONS(466), - [anon_sym_63] = ACTIONS(466), - [anon_sym_repeat] = ACTIONS(466), - [anon_sym_64] = ACTIONS(466), - [anon_sym_dip] = ACTIONS(466), - [anon_sym_65] = ACTIONS(466), - [anon_sym_gap] = ACTIONS(466), - [anon_sym_66] = ACTIONS(466), - [anon_sym_invert] = ACTIONS(466), - [anon_sym_67] = ACTIONS(466), - [anon_sym_spawn] = ACTIONS(466), - [anon_sym_pack] = ACTIONS(466), - [anon_sym_68] = ACTIONS(466), - [anon_sym_rectify] = ACTIONS(466), - [anon_sym_69] = ACTIONS(466), - [anon_sym_this] = ACTIONS(466), - [anon_sym_70] = ACTIONS(466), - [anon_sym_recur] = ACTIONS(466), - [anon_sym_71] = ACTIONS(466), - [anon_sym_fold] = ACTIONS(466), - [anon_sym_72] = ACTIONS(466), - [anon_sym_table] = ACTIONS(466), - [anon_sym_73] = ACTIONS(466), - [anon_sym_cross] = ACTIONS(466), - [anon_sym_74] = ACTIONS(466), - [anon_sym_group] = ACTIONS(466), - [anon_sym_75] = ACTIONS(466), - [anon_sym_partition] = ACTIONS(466), - [anon_sym_76] = ACTIONS(466), - [anon_sym_both] = ACTIONS(466), - [anon_sym_77] = ACTIONS(466), - [anon_sym_bracket] = ACTIONS(466), - [anon_sym_78] = ACTIONS(466), - [anon_sym_fork] = ACTIONS(466), - [anon_sym_79] = ACTIONS(466), - [anon_sym_under] = ACTIONS(466), - [anon_sym_80] = ACTIONS(466), - [anon_sym_fill] = ACTIONS(466), - [anon_sym_81] = ACTIONS(466), - [anon_sym_try] = ACTIONS(464), - [anon_sym_82] = ACTIONS(466), - [anon_sym_do] = ACTIONS(464), - [anon_sym_83] = ACTIONS(466), - [anon_sym_all] = ACTIONS(466), - [anon_sym_84] = ACTIONS(466), - [anon_sym_setinv] = ACTIONS(466), - [anon_sym_setunder] = ACTIONS(466), - [anon_sym_85] = ACTIONS(466), - [anon_sym_86] = ACTIONS(466), - [anon_sym_87] = ACTIONS(466), - [anon_sym_88] = ACTIONS(466), - [anon_sym_89] = ACTIONS(466), - [anon_sym_90] = ACTIONS(466), - [anon_sym_91] = ACTIONS(466), - [anon_sym_92] = ACTIONS(466), - [anon_sym_93] = ACTIONS(466), - [anon_sym_94] = ACTIONS(466), - [anon_sym_95] = ACTIONS(466), - [anon_sym_96] = ACTIONS(466), - [sym__endOfLine] = ACTIONS(466), - }, - [89] = { - [aux_sym_number_token1] = ACTIONS(468), - [sym_fraction] = ACTIONS(470), - [anon_sym_os] = ACTIONS(468), - [anon_sym_Family] = ACTIONS(468), - [anon_sym_Arch] = ACTIONS(468), - [anon_sym_ExeExt] = ACTIONS(468), - [anon_sym_PllExt] = ACTIONS(468), - [anon_sym_Sep] = ACTIONS(468), - [anon_sym_NUmProcs] = ACTIONS(468), - [anon_sym_] = ACTIONS(470), - [aux_sym_character_token1] = ACTIONS(470), - [sym_string] = ACTIONS(470), - [sym_multiLineString] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [sym_identifier] = ACTIONS(468), - [sym_identifierDeprecated] = ACTIONS(468), - [sym_system] = ACTIONS(470), - [sym_comment] = ACTIONS(468), - [sym_openParen] = ACTIONS(470), - [sym_closeParen] = ACTIONS(470), - [sym_openCurly] = ACTIONS(470), - [sym_closeCurly] = ACTIONS(470), - [sym_openBracket] = ACTIONS(470), - [sym_closeBracket] = ACTIONS(470), - [sym_underscore] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(470), - [anon_sym_eta] = ACTIONS(470), - [anon_sym_2] = ACTIONS(468), - [anon_sym_pi] = ACTIONS(468), - [anon_sym_3] = ACTIONS(468), - [anon_sym_tau] = ACTIONS(470), - [anon_sym_4] = ACTIONS(468), - [anon_sym_infinity] = ACTIONS(470), - [anon_sym_5] = ACTIONS(470), - [anon_sym_e] = ACTIONS(468), - [anon_sym_NaN] = ACTIONS(468), - [anon_sym_NumProcs] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_identity] = ACTIONS(470), - [anon_sym_id] = ACTIONS(468), - [anon_sym_6] = ACTIONS(470), - [anon_sym_not] = ACTIONS(470), - [anon_sym_7] = ACTIONS(470), - [anon_sym_sign] = ACTIONS(470), - [anon_sym_8] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), - [anon_sym_9] = ACTIONS(468), - [anon_sym_absolutevalue] = ACTIONS(470), - [anon_sym_10] = ACTIONS(470), - [anon_sym_sqrt] = ACTIONS(470), - [anon_sym_11] = ACTIONS(470), - [anon_sym_sine] = ACTIONS(470), - [anon_sym_12] = ACTIONS(470), - [anon_sym_floor] = ACTIONS(470), - [anon_sym_13] = ACTIONS(470), - [anon_sym_ceiling] = ACTIONS(470), - [anon_sym_14] = ACTIONS(470), - [anon_sym_round] = ACTIONS(470), - [anon_sym_15] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_16] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_17] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_18] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(470), - [anon_sym_19] = ACTIONS(470), - [anon_sym_PERCENT] = ACTIONS(470), - [anon_sym_20] = ACTIONS(470), - [anon_sym_modulus] = ACTIONS(470), - [anon_sym_21] = ACTIONS(470), - [anon_sym_power] = ACTIONS(470), - [anon_sym_22] = ACTIONS(470), - [anon_sym_logarithm] = ACTIONS(470), - [anon_sym_23] = ACTIONS(470), - [anon_sym_minimum] = ACTIONS(470), - [anon_sym_24] = ACTIONS(470), - [anon_sym_maximum] = ACTIONS(470), - [anon_sym_25] = ACTIONS(470), - [anon_sym_atangent] = ACTIONS(470), - [anon_sym_26] = ACTIONS(470), - [anon_sym_length] = ACTIONS(470), - [anon_sym_27] = ACTIONS(470), - [anon_sym_shape] = ACTIONS(470), - [anon_sym_28] = ACTIONS(470), - [anon_sym_range] = ACTIONS(470), - [anon_sym_29] = ACTIONS(470), - [anon_sym_first] = ACTIONS(470), - [anon_sym_30] = ACTIONS(470), - [anon_sym_reverse] = ACTIONS(470), - [anon_sym_31] = ACTIONS(470), - [anon_sym_deshape] = ACTIONS(470), - [anon_sym_32] = ACTIONS(470), - [anon_sym_bits] = ACTIONS(470), - [anon_sym_33] = ACTIONS(470), - [anon_sym_transpose] = ACTIONS(470), - [anon_sym_34] = ACTIONS(470), - [anon_sym_rise] = ACTIONS(470), - [anon_sym_35] = ACTIONS(470), - [anon_sym_fall] = ACTIONS(470), - [anon_sym_36] = ACTIONS(470), - [anon_sym_where] = ACTIONS(470), - [anon_sym_37] = ACTIONS(470), - [anon_sym_classify] = ACTIONS(470), - [anon_sym_38] = ACTIONS(470), - [anon_sym_deduplicate] = ACTIONS(470), - [anon_sym_39] = ACTIONS(470), - [anon_sym_box] = ACTIONS(470), - [anon_sym_40] = ACTIONS(470), - [anon_sym_unbox] = ACTIONS(470), - [anon_sym_41] = ACTIONS(470), - [anon_sym_match] = ACTIONS(470), - [anon_sym_42] = ACTIONS(470), - [anon_sym_couple] = ACTIONS(470), - [anon_sym_43] = ACTIONS(470), - [anon_sym_join] = ACTIONS(470), - [anon_sym_44] = ACTIONS(470), - [anon_sym_select] = ACTIONS(470), - [anon_sym_45] = ACTIONS(470), - [anon_sym_pick] = ACTIONS(470), - [anon_sym_46] = ACTIONS(470), - [anon_sym_reshape] = ACTIONS(470), - [anon_sym_47] = ACTIONS(470), - [anon_sym_take] = ACTIONS(470), - [anon_sym_48] = ACTIONS(470), - [anon_sym_drop] = ACTIONS(470), - [anon_sym_49] = ACTIONS(470), - [anon_sym_rotate] = ACTIONS(470), - [anon_sym_50] = ACTIONS(470), - [anon_sym_windows] = ACTIONS(470), - [anon_sym_51] = ACTIONS(470), - [anon_sym_keep] = ACTIONS(470), - [anon_sym_52] = ACTIONS(470), - [anon_sym_find] = ACTIONS(470), - [anon_sym_53] = ACTIONS(470), - [anon_sym_member] = ACTIONS(470), - [anon_sym_54] = ACTIONS(470), - [anon_sym_indexof] = ACTIONS(470), - [anon_sym_55] = ACTIONS(470), - [anon_sym_assert] = ACTIONS(470), - [anon_sym_56] = ACTIONS(470), - [anon_sym_wait] = ACTIONS(470), - [anon_sym_parse] = ACTIONS(470), - [anon_sym_random] = ACTIONS(470), - [anon_sym_57] = ACTIONS(470), - [anon_sym_gen] = ACTIONS(470), - [anon_sym_deal] = ACTIONS(470), - [anon_sym_tag] = ACTIONS(470), - [anon_sym_now] = ACTIONS(470), - [anon_sym_type] = ACTIONS(470), - [anon_sym_58] = ACTIONS(470), - [anon_sym_dump] = ACTIONS(470), - [anon_sym_regex] = ACTIONS(470), - [anon_sym_utf] = ACTIONS(470), - [anon_sym_send] = ACTIONS(470), - [anon_sym_recv] = ACTIONS(470), - [anon_sym_tryrecv] = ACTIONS(470), - [anon_sym_complex] = ACTIONS(470), - [anon_sym_59] = ACTIONS(470), - [anon_sym_rerank] = ACTIONS(470), - [anon_sym_60] = ACTIONS(470), - [anon_sym_fix] = ACTIONS(470), - [anon_sym_61] = ACTIONS(470), - [anon_sym_reduce] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_scan] = ACTIONS(470), - [anon_sym_BSLASH] = ACTIONS(470), - [anon_sym_each] = ACTIONS(470), - [anon_sym_62] = ACTIONS(470), - [anon_sym_rows] = ACTIONS(470), - [anon_sym_63] = ACTIONS(470), - [anon_sym_repeat] = ACTIONS(470), - [anon_sym_64] = ACTIONS(470), - [anon_sym_dip] = ACTIONS(470), - [anon_sym_65] = ACTIONS(470), - [anon_sym_gap] = ACTIONS(470), - [anon_sym_66] = ACTIONS(470), - [anon_sym_invert] = ACTIONS(470), - [anon_sym_67] = ACTIONS(470), - [anon_sym_spawn] = ACTIONS(470), - [anon_sym_pack] = ACTIONS(470), - [anon_sym_68] = ACTIONS(470), - [anon_sym_rectify] = ACTIONS(470), - [anon_sym_69] = ACTIONS(470), - [anon_sym_this] = ACTIONS(470), - [anon_sym_70] = ACTIONS(470), - [anon_sym_recur] = ACTIONS(470), - [anon_sym_71] = ACTIONS(470), - [anon_sym_fold] = ACTIONS(470), - [anon_sym_72] = ACTIONS(470), - [anon_sym_table] = ACTIONS(470), - [anon_sym_73] = ACTIONS(470), - [anon_sym_cross] = ACTIONS(470), - [anon_sym_74] = ACTIONS(470), - [anon_sym_group] = ACTIONS(470), - [anon_sym_75] = ACTIONS(470), - [anon_sym_partition] = ACTIONS(470), - [anon_sym_76] = ACTIONS(470), - [anon_sym_both] = ACTIONS(470), - [anon_sym_77] = ACTIONS(470), - [anon_sym_bracket] = ACTIONS(470), - [anon_sym_78] = ACTIONS(470), - [anon_sym_fork] = ACTIONS(470), - [anon_sym_79] = ACTIONS(470), - [anon_sym_under] = ACTIONS(470), - [anon_sym_80] = ACTIONS(470), - [anon_sym_fill] = ACTIONS(470), - [anon_sym_81] = ACTIONS(470), - [anon_sym_try] = ACTIONS(468), - [anon_sym_82] = ACTIONS(470), - [anon_sym_do] = ACTIONS(468), - [anon_sym_83] = ACTIONS(470), - [anon_sym_all] = ACTIONS(470), - [anon_sym_84] = ACTIONS(470), - [anon_sym_setinv] = ACTIONS(470), - [anon_sym_setunder] = ACTIONS(470), - [anon_sym_85] = ACTIONS(470), - [anon_sym_86] = ACTIONS(470), - [anon_sym_87] = ACTIONS(470), - [anon_sym_88] = ACTIONS(470), - [anon_sym_89] = ACTIONS(470), - [anon_sym_90] = ACTIONS(470), - [anon_sym_91] = ACTIONS(470), - [anon_sym_92] = ACTIONS(470), - [anon_sym_93] = ACTIONS(470), - [anon_sym_94] = ACTIONS(470), - [anon_sym_95] = ACTIONS(470), - [anon_sym_96] = ACTIONS(470), - [sym__endOfLine] = ACTIONS(470), - }, - [90] = { - [aux_sym_number_token1] = ACTIONS(472), - [sym_fraction] = ACTIONS(474), - [anon_sym_os] = ACTIONS(472), - [anon_sym_Family] = ACTIONS(472), - [anon_sym_Arch] = ACTIONS(472), - [anon_sym_ExeExt] = ACTIONS(472), - [anon_sym_PllExt] = ACTIONS(472), - [anon_sym_Sep] = ACTIONS(472), - [anon_sym_NUmProcs] = ACTIONS(472), - [anon_sym_] = ACTIONS(474), - [aux_sym_character_token1] = ACTIONS(474), - [sym_string] = ACTIONS(474), - [sym_multiLineString] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(474), - [sym_identifier] = ACTIONS(472), - [sym_identifierDeprecated] = ACTIONS(472), - [sym_system] = ACTIONS(474), - [sym_comment] = ACTIONS(472), - [sym_openParen] = ACTIONS(474), - [sym_closeParen] = ACTIONS(474), - [sym_openCurly] = ACTIONS(474), - [sym_closeCurly] = ACTIONS(474), - [sym_openBracket] = ACTIONS(474), - [sym_closeBracket] = ACTIONS(474), - [sym_underscore] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_eta] = ACTIONS(474), - [anon_sym_2] = ACTIONS(472), - [anon_sym_pi] = ACTIONS(472), - [anon_sym_3] = ACTIONS(472), - [anon_sym_tau] = ACTIONS(474), - [anon_sym_4] = ACTIONS(472), - [anon_sym_infinity] = ACTIONS(474), - [anon_sym_5] = ACTIONS(474), - [anon_sym_e] = ACTIONS(472), - [anon_sym_NaN] = ACTIONS(472), - [anon_sym_NumProcs] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_identity] = ACTIONS(474), - [anon_sym_id] = ACTIONS(472), - [anon_sym_6] = ACTIONS(474), - [anon_sym_not] = ACTIONS(474), - [anon_sym_7] = ACTIONS(474), - [anon_sym_sign] = ACTIONS(474), - [anon_sym_8] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [anon_sym_9] = ACTIONS(472), - [anon_sym_absolutevalue] = ACTIONS(474), - [anon_sym_10] = ACTIONS(474), - [anon_sym_sqrt] = ACTIONS(474), - [anon_sym_11] = ACTIONS(474), - [anon_sym_sine] = ACTIONS(474), - [anon_sym_12] = ACTIONS(474), - [anon_sym_floor] = ACTIONS(474), - [anon_sym_13] = ACTIONS(474), - [anon_sym_ceiling] = ACTIONS(474), - [anon_sym_14] = ACTIONS(474), - [anon_sym_round] = ACTIONS(474), - [anon_sym_15] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_16] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_17] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_18] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_19] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_20] = ACTIONS(474), - [anon_sym_modulus] = ACTIONS(474), - [anon_sym_21] = ACTIONS(474), - [anon_sym_power] = ACTIONS(474), - [anon_sym_22] = ACTIONS(474), - [anon_sym_logarithm] = ACTIONS(474), - [anon_sym_23] = ACTIONS(474), - [anon_sym_minimum] = ACTIONS(474), - [anon_sym_24] = ACTIONS(474), - [anon_sym_maximum] = ACTIONS(474), - [anon_sym_25] = ACTIONS(474), - [anon_sym_atangent] = ACTIONS(474), - [anon_sym_26] = ACTIONS(474), - [anon_sym_length] = ACTIONS(474), - [anon_sym_27] = ACTIONS(474), - [anon_sym_shape] = ACTIONS(474), - [anon_sym_28] = ACTIONS(474), - [anon_sym_range] = ACTIONS(474), - [anon_sym_29] = ACTIONS(474), - [anon_sym_first] = ACTIONS(474), - [anon_sym_30] = ACTIONS(474), - [anon_sym_reverse] = ACTIONS(474), - [anon_sym_31] = ACTIONS(474), - [anon_sym_deshape] = ACTIONS(474), - [anon_sym_32] = ACTIONS(474), - [anon_sym_bits] = ACTIONS(474), - [anon_sym_33] = ACTIONS(474), - [anon_sym_transpose] = ACTIONS(474), - [anon_sym_34] = ACTIONS(474), - [anon_sym_rise] = ACTIONS(474), - [anon_sym_35] = ACTIONS(474), - [anon_sym_fall] = ACTIONS(474), - [anon_sym_36] = ACTIONS(474), - [anon_sym_where] = ACTIONS(474), - [anon_sym_37] = ACTIONS(474), - [anon_sym_classify] = ACTIONS(474), - [anon_sym_38] = ACTIONS(474), - [anon_sym_deduplicate] = ACTIONS(474), - [anon_sym_39] = ACTIONS(474), - [anon_sym_box] = ACTIONS(474), - [anon_sym_40] = ACTIONS(474), - [anon_sym_unbox] = ACTIONS(474), - [anon_sym_41] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_42] = ACTIONS(474), - [anon_sym_couple] = ACTIONS(474), - [anon_sym_43] = ACTIONS(474), - [anon_sym_join] = ACTIONS(474), - [anon_sym_44] = ACTIONS(474), - [anon_sym_select] = ACTIONS(474), - [anon_sym_45] = ACTIONS(474), - [anon_sym_pick] = ACTIONS(474), - [anon_sym_46] = ACTIONS(474), - [anon_sym_reshape] = ACTIONS(474), - [anon_sym_47] = ACTIONS(474), - [anon_sym_take] = ACTIONS(474), - [anon_sym_48] = ACTIONS(474), - [anon_sym_drop] = ACTIONS(474), - [anon_sym_49] = ACTIONS(474), - [anon_sym_rotate] = ACTIONS(474), - [anon_sym_50] = ACTIONS(474), - [anon_sym_windows] = ACTIONS(474), - [anon_sym_51] = ACTIONS(474), - [anon_sym_keep] = ACTIONS(474), - [anon_sym_52] = ACTIONS(474), - [anon_sym_find] = ACTIONS(474), - [anon_sym_53] = ACTIONS(474), - [anon_sym_member] = ACTIONS(474), - [anon_sym_54] = ACTIONS(474), - [anon_sym_indexof] = ACTIONS(474), - [anon_sym_55] = ACTIONS(474), - [anon_sym_assert] = ACTIONS(474), - [anon_sym_56] = ACTIONS(474), - [anon_sym_wait] = ACTIONS(474), - [anon_sym_parse] = ACTIONS(474), - [anon_sym_random] = ACTIONS(474), - [anon_sym_57] = ACTIONS(474), - [anon_sym_gen] = ACTIONS(474), - [anon_sym_deal] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_now] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_58] = ACTIONS(474), - [anon_sym_dump] = ACTIONS(474), - [anon_sym_regex] = ACTIONS(474), - [anon_sym_utf] = ACTIONS(474), - [anon_sym_send] = ACTIONS(474), - [anon_sym_recv] = ACTIONS(474), - [anon_sym_tryrecv] = ACTIONS(474), - [anon_sym_complex] = ACTIONS(474), - [anon_sym_59] = ACTIONS(474), - [anon_sym_rerank] = ACTIONS(474), - [anon_sym_60] = ACTIONS(474), - [anon_sym_fix] = ACTIONS(474), - [anon_sym_61] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_scan] = ACTIONS(474), - [anon_sym_BSLASH] = ACTIONS(474), - [anon_sym_each] = ACTIONS(474), - [anon_sym_62] = ACTIONS(474), - [anon_sym_rows] = ACTIONS(474), - [anon_sym_63] = ACTIONS(474), - [anon_sym_repeat] = ACTIONS(474), - [anon_sym_64] = ACTIONS(474), - [anon_sym_dip] = ACTIONS(474), - [anon_sym_65] = ACTIONS(474), - [anon_sym_gap] = ACTIONS(474), - [anon_sym_66] = ACTIONS(474), - [anon_sym_invert] = ACTIONS(474), - [anon_sym_67] = ACTIONS(474), - [anon_sym_spawn] = ACTIONS(474), - [anon_sym_pack] = ACTIONS(474), - [anon_sym_68] = ACTIONS(474), - [anon_sym_rectify] = ACTIONS(474), - [anon_sym_69] = ACTIONS(474), - [anon_sym_this] = ACTIONS(474), - [anon_sym_70] = ACTIONS(474), - [anon_sym_recur] = ACTIONS(474), - [anon_sym_71] = ACTIONS(474), - [anon_sym_fold] = ACTIONS(474), - [anon_sym_72] = ACTIONS(474), - [anon_sym_table] = ACTIONS(474), - [anon_sym_73] = ACTIONS(474), - [anon_sym_cross] = ACTIONS(474), - [anon_sym_74] = ACTIONS(474), - [anon_sym_group] = ACTIONS(474), - [anon_sym_75] = ACTIONS(474), - [anon_sym_partition] = ACTIONS(474), - [anon_sym_76] = ACTIONS(474), - [anon_sym_both] = ACTIONS(474), - [anon_sym_77] = ACTIONS(474), - [anon_sym_bracket] = ACTIONS(474), - [anon_sym_78] = ACTIONS(474), - [anon_sym_fork] = ACTIONS(474), - [anon_sym_79] = ACTIONS(474), - [anon_sym_under] = ACTIONS(474), - [anon_sym_80] = ACTIONS(474), - [anon_sym_fill] = ACTIONS(474), - [anon_sym_81] = ACTIONS(474), - [anon_sym_try] = ACTIONS(472), - [anon_sym_82] = ACTIONS(474), - [anon_sym_do] = ACTIONS(472), - [anon_sym_83] = ACTIONS(474), - [anon_sym_all] = ACTIONS(474), - [anon_sym_84] = ACTIONS(474), - [anon_sym_setinv] = ACTIONS(474), - [anon_sym_setunder] = ACTIONS(474), - [anon_sym_85] = ACTIONS(474), - [anon_sym_86] = ACTIONS(474), - [anon_sym_87] = ACTIONS(474), - [anon_sym_88] = ACTIONS(474), - [anon_sym_89] = ACTIONS(474), - [anon_sym_90] = ACTIONS(474), - [anon_sym_91] = ACTIONS(474), - [anon_sym_92] = ACTIONS(474), - [anon_sym_93] = ACTIONS(474), - [anon_sym_94] = ACTIONS(474), - [anon_sym_95] = ACTIONS(474), - [anon_sym_96] = ACTIONS(474), - [sym__endOfLine] = ACTIONS(474), - }, - [91] = { + [sym_inlineFunction] = STATE(106), + [sym_function] = STATE(106), [aux_sym_number_token1] = ACTIONS(476), [sym_fraction] = ACTIONS(478), [anon_sym_os] = ACTIONS(476), @@ -29219,11 +27302,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string] = ACTIONS(478), [sym_multiLineString] = ACTIONS(478), [anon_sym_PIPE] = ACTIONS(478), - [sym_identifier] = ACTIONS(476), + [sym_identifier] = ACTIONS(480), [sym_identifierDeprecated] = ACTIONS(476), - [sym_system] = ACTIONS(478), + [sym_system] = ACTIONS(482), [sym_comment] = ACTIONS(476), - [sym_openParen] = ACTIONS(478), + [sym_openParen] = ACTIONS(474), [sym_closeParen] = ACTIONS(478), [sym_openCurly] = ACTIONS(478), [sym_closeCurly] = ACTIONS(478), @@ -29231,6 +27314,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(478), [sym_underscore] = ACTIONS(478), [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), [anon_sym_eta] = ACTIONS(478), [anon_sym_2] = ACTIONS(476), [anon_sym_pi] = ACTIONS(476), @@ -29242,140 +27327,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e] = ACTIONS(476), [anon_sym_NaN] = ACTIONS(476), [anon_sym_NumProcs] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(478), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_identity] = ACTIONS(478), - [anon_sym_id] = ACTIONS(476), - [anon_sym_6] = ACTIONS(478), - [anon_sym_not] = ACTIONS(478), - [anon_sym_7] = ACTIONS(478), - [anon_sym_sign] = ACTIONS(478), - [anon_sym_8] = ACTIONS(478), - [anon_sym_BQUOTE] = ACTIONS(478), - [anon_sym_9] = ACTIONS(476), - [anon_sym_absolutevalue] = ACTIONS(478), - [anon_sym_10] = ACTIONS(478), - [anon_sym_sqrt] = ACTIONS(478), - [anon_sym_11] = ACTIONS(478), - [anon_sym_sine] = ACTIONS(478), - [anon_sym_12] = ACTIONS(478), - [anon_sym_floor] = ACTIONS(478), - [anon_sym_13] = ACTIONS(478), - [anon_sym_ceiling] = ACTIONS(478), - [anon_sym_14] = ACTIONS(478), - [anon_sym_round] = ACTIONS(478), - [anon_sym_15] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_16] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_17] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_18] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_19] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_20] = ACTIONS(478), - [anon_sym_modulus] = ACTIONS(478), - [anon_sym_21] = ACTIONS(478), - [anon_sym_power] = ACTIONS(478), - [anon_sym_22] = ACTIONS(478), - [anon_sym_logarithm] = ACTIONS(478), - [anon_sym_23] = ACTIONS(478), - [anon_sym_minimum] = ACTIONS(478), - [anon_sym_24] = ACTIONS(478), - [anon_sym_maximum] = ACTIONS(478), - [anon_sym_25] = ACTIONS(478), - [anon_sym_atangent] = ACTIONS(478), - [anon_sym_26] = ACTIONS(478), - [anon_sym_length] = ACTIONS(478), - [anon_sym_27] = ACTIONS(478), - [anon_sym_shape] = ACTIONS(478), - [anon_sym_28] = ACTIONS(478), - [anon_sym_range] = ACTIONS(478), - [anon_sym_29] = ACTIONS(478), - [anon_sym_first] = ACTIONS(478), - [anon_sym_30] = ACTIONS(478), - [anon_sym_reverse] = ACTIONS(478), - [anon_sym_31] = ACTIONS(478), - [anon_sym_deshape] = ACTIONS(478), - [anon_sym_32] = ACTIONS(478), - [anon_sym_bits] = ACTIONS(478), - [anon_sym_33] = ACTIONS(478), - [anon_sym_transpose] = ACTIONS(478), - [anon_sym_34] = ACTIONS(478), - [anon_sym_rise] = ACTIONS(478), - [anon_sym_35] = ACTIONS(478), - [anon_sym_fall] = ACTIONS(478), - [anon_sym_36] = ACTIONS(478), - [anon_sym_where] = ACTIONS(478), - [anon_sym_37] = ACTIONS(478), - [anon_sym_classify] = ACTIONS(478), - [anon_sym_38] = ACTIONS(478), - [anon_sym_deduplicate] = ACTIONS(478), - [anon_sym_39] = ACTIONS(478), - [anon_sym_box] = ACTIONS(478), - [anon_sym_40] = ACTIONS(478), - [anon_sym_unbox] = ACTIONS(478), - [anon_sym_41] = ACTIONS(478), - [anon_sym_match] = ACTIONS(478), - [anon_sym_42] = ACTIONS(478), - [anon_sym_couple] = ACTIONS(478), - [anon_sym_43] = ACTIONS(478), - [anon_sym_join] = ACTIONS(478), - [anon_sym_44] = ACTIONS(478), - [anon_sym_select] = ACTIONS(478), - [anon_sym_45] = ACTIONS(478), - [anon_sym_pick] = ACTIONS(478), - [anon_sym_46] = ACTIONS(478), - [anon_sym_reshape] = ACTIONS(478), - [anon_sym_47] = ACTIONS(478), - [anon_sym_take] = ACTIONS(478), - [anon_sym_48] = ACTIONS(478), - [anon_sym_drop] = ACTIONS(478), - [anon_sym_49] = ACTIONS(478), - [anon_sym_rotate] = ACTIONS(478), - [anon_sym_50] = ACTIONS(478), - [anon_sym_windows] = ACTIONS(478), - [anon_sym_51] = ACTIONS(478), - [anon_sym_keep] = ACTIONS(478), - [anon_sym_52] = ACTIONS(478), - [anon_sym_find] = ACTIONS(478), - [anon_sym_53] = ACTIONS(478), - [anon_sym_member] = ACTIONS(478), - [anon_sym_54] = ACTIONS(478), - [anon_sym_indexof] = ACTIONS(478), - [anon_sym_55] = ACTIONS(478), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_56] = ACTIONS(478), - [anon_sym_wait] = ACTIONS(478), - [anon_sym_parse] = ACTIONS(478), - [anon_sym_random] = ACTIONS(478), - [anon_sym_57] = ACTIONS(478), - [anon_sym_gen] = ACTIONS(478), - [anon_sym_deal] = ACTIONS(478), - [anon_sym_tag] = ACTIONS(478), - [anon_sym_now] = ACTIONS(478), - [anon_sym_type] = ACTIONS(478), - [anon_sym_58] = ACTIONS(478), - [anon_sym_dump] = ACTIONS(478), - [anon_sym_regex] = ACTIONS(478), - [anon_sym_utf] = ACTIONS(478), - [anon_sym_send] = ACTIONS(478), - [anon_sym_recv] = ACTIONS(478), - [anon_sym_tryrecv] = ACTIONS(478), - [anon_sym_complex] = ACTIONS(478), - [anon_sym_59] = ACTIONS(478), - [anon_sym_rerank] = ACTIONS(478), - [anon_sym_60] = ACTIONS(478), - [anon_sym_fix] = ACTIONS(478), - [anon_sym_61] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), [anon_sym_reduce] = ACTIONS(478), [anon_sym_SLASH] = ACTIONS(478), [anon_sym_scan] = ACTIONS(478), @@ -29437,491 +27523,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(478), [anon_sym_91] = ACTIONS(478), [anon_sym_92] = ACTIONS(478), - [anon_sym_93] = ACTIONS(478), - [anon_sym_94] = ACTIONS(478), - [anon_sym_95] = ACTIONS(478), - [anon_sym_96] = ACTIONS(478), [sym__endOfLine] = ACTIONS(478), }, - [92] = { - [aux_sym_number_token1] = ACTIONS(480), - [sym_fraction] = ACTIONS(482), - [anon_sym_os] = ACTIONS(480), - [anon_sym_Family] = ACTIONS(480), - [anon_sym_Arch] = ACTIONS(480), - [anon_sym_ExeExt] = ACTIONS(480), - [anon_sym_PllExt] = ACTIONS(480), - [anon_sym_Sep] = ACTIONS(480), - [anon_sym_NUmProcs] = ACTIONS(480), - [anon_sym_] = ACTIONS(482), - [aux_sym_character_token1] = ACTIONS(482), - [sym_string] = ACTIONS(482), - [sym_multiLineString] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(482), - [sym_identifier] = ACTIONS(480), - [sym_identifierDeprecated] = ACTIONS(480), - [sym_system] = ACTIONS(482), - [sym_comment] = ACTIONS(480), - [sym_openParen] = ACTIONS(482), - [sym_closeParen] = ACTIONS(482), - [sym_openCurly] = ACTIONS(482), - [sym_closeCurly] = ACTIONS(482), - [sym_openBracket] = ACTIONS(482), - [sym_closeBracket] = ACTIONS(482), - [sym_underscore] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(482), - [anon_sym_eta] = ACTIONS(482), - [anon_sym_2] = ACTIONS(480), - [anon_sym_pi] = ACTIONS(480), - [anon_sym_3] = ACTIONS(480), - [anon_sym_tau] = ACTIONS(482), - [anon_sym_4] = ACTIONS(480), - [anon_sym_infinity] = ACTIONS(482), - [anon_sym_5] = ACTIONS(482), - [anon_sym_e] = ACTIONS(480), - [anon_sym_NaN] = ACTIONS(480), - [anon_sym_NumProcs] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_COLON] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_identity] = ACTIONS(482), - [anon_sym_id] = ACTIONS(480), - [anon_sym_6] = ACTIONS(482), - [anon_sym_not] = ACTIONS(482), - [anon_sym_7] = ACTIONS(482), - [anon_sym_sign] = ACTIONS(482), - [anon_sym_8] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(482), - [anon_sym_9] = ACTIONS(480), - [anon_sym_absolutevalue] = ACTIONS(482), - [anon_sym_10] = ACTIONS(482), - [anon_sym_sqrt] = ACTIONS(482), - [anon_sym_11] = ACTIONS(482), - [anon_sym_sine] = ACTIONS(482), - [anon_sym_12] = ACTIONS(482), - [anon_sym_floor] = ACTIONS(482), - [anon_sym_13] = ACTIONS(482), - [anon_sym_ceiling] = ACTIONS(482), - [anon_sym_14] = ACTIONS(482), - [anon_sym_round] = ACTIONS(482), - [anon_sym_15] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_16] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_17] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_18] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_19] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_20] = ACTIONS(482), - [anon_sym_modulus] = ACTIONS(482), - [anon_sym_21] = ACTIONS(482), - [anon_sym_power] = ACTIONS(482), - [anon_sym_22] = ACTIONS(482), - [anon_sym_logarithm] = ACTIONS(482), - [anon_sym_23] = ACTIONS(482), - [anon_sym_minimum] = ACTIONS(482), - [anon_sym_24] = ACTIONS(482), - [anon_sym_maximum] = ACTIONS(482), - [anon_sym_25] = ACTIONS(482), - [anon_sym_atangent] = ACTIONS(482), - [anon_sym_26] = ACTIONS(482), - [anon_sym_length] = ACTIONS(482), - [anon_sym_27] = ACTIONS(482), - [anon_sym_shape] = ACTIONS(482), - [anon_sym_28] = ACTIONS(482), - [anon_sym_range] = ACTIONS(482), - [anon_sym_29] = ACTIONS(482), - [anon_sym_first] = ACTIONS(482), - [anon_sym_30] = ACTIONS(482), - [anon_sym_reverse] = ACTIONS(482), - [anon_sym_31] = ACTIONS(482), - [anon_sym_deshape] = ACTIONS(482), - [anon_sym_32] = ACTIONS(482), - [anon_sym_bits] = ACTIONS(482), - [anon_sym_33] = ACTIONS(482), - [anon_sym_transpose] = ACTIONS(482), - [anon_sym_34] = ACTIONS(482), - [anon_sym_rise] = ACTIONS(482), - [anon_sym_35] = ACTIONS(482), - [anon_sym_fall] = ACTIONS(482), - [anon_sym_36] = ACTIONS(482), - [anon_sym_where] = ACTIONS(482), - [anon_sym_37] = ACTIONS(482), - [anon_sym_classify] = ACTIONS(482), - [anon_sym_38] = ACTIONS(482), - [anon_sym_deduplicate] = ACTIONS(482), - [anon_sym_39] = ACTIONS(482), - [anon_sym_box] = ACTIONS(482), - [anon_sym_40] = ACTIONS(482), - [anon_sym_unbox] = ACTIONS(482), - [anon_sym_41] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [anon_sym_42] = ACTIONS(482), - [anon_sym_couple] = ACTIONS(482), - [anon_sym_43] = ACTIONS(482), - [anon_sym_join] = ACTIONS(482), - [anon_sym_44] = ACTIONS(482), - [anon_sym_select] = ACTIONS(482), - [anon_sym_45] = ACTIONS(482), - [anon_sym_pick] = ACTIONS(482), - [anon_sym_46] = ACTIONS(482), - [anon_sym_reshape] = ACTIONS(482), - [anon_sym_47] = ACTIONS(482), - [anon_sym_take] = ACTIONS(482), - [anon_sym_48] = ACTIONS(482), - [anon_sym_drop] = ACTIONS(482), - [anon_sym_49] = ACTIONS(482), - [anon_sym_rotate] = ACTIONS(482), - [anon_sym_50] = ACTIONS(482), - [anon_sym_windows] = ACTIONS(482), - [anon_sym_51] = ACTIONS(482), - [anon_sym_keep] = ACTIONS(482), - [anon_sym_52] = ACTIONS(482), - [anon_sym_find] = ACTIONS(482), - [anon_sym_53] = ACTIONS(482), - [anon_sym_member] = ACTIONS(482), - [anon_sym_54] = ACTIONS(482), - [anon_sym_indexof] = ACTIONS(482), - [anon_sym_55] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(482), - [anon_sym_56] = ACTIONS(482), - [anon_sym_wait] = ACTIONS(482), - [anon_sym_parse] = ACTIONS(482), - [anon_sym_random] = ACTIONS(482), - [anon_sym_57] = ACTIONS(482), - [anon_sym_gen] = ACTIONS(482), - [anon_sym_deal] = ACTIONS(482), - [anon_sym_tag] = ACTIONS(482), - [anon_sym_now] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_58] = ACTIONS(482), - [anon_sym_dump] = ACTIONS(482), - [anon_sym_regex] = ACTIONS(482), - [anon_sym_utf] = ACTIONS(482), - [anon_sym_send] = ACTIONS(482), - [anon_sym_recv] = ACTIONS(482), - [anon_sym_tryrecv] = ACTIONS(482), - [anon_sym_complex] = ACTIONS(482), - [anon_sym_59] = ACTIONS(482), - [anon_sym_rerank] = ACTIONS(482), - [anon_sym_60] = ACTIONS(482), - [anon_sym_fix] = ACTIONS(482), - [anon_sym_61] = ACTIONS(482), - [anon_sym_reduce] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_scan] = ACTIONS(482), - [anon_sym_BSLASH] = ACTIONS(482), - [anon_sym_each] = ACTIONS(482), - [anon_sym_62] = ACTIONS(482), - [anon_sym_rows] = ACTIONS(482), - [anon_sym_63] = ACTIONS(482), - [anon_sym_repeat] = ACTIONS(482), - [anon_sym_64] = ACTIONS(482), - [anon_sym_dip] = ACTIONS(482), - [anon_sym_65] = ACTIONS(482), - [anon_sym_gap] = ACTIONS(482), - [anon_sym_66] = ACTIONS(482), - [anon_sym_invert] = ACTIONS(482), - [anon_sym_67] = ACTIONS(482), - [anon_sym_spawn] = ACTIONS(482), - [anon_sym_pack] = ACTIONS(482), - [anon_sym_68] = ACTIONS(482), - [anon_sym_rectify] = ACTIONS(482), - [anon_sym_69] = ACTIONS(482), - [anon_sym_this] = ACTIONS(482), - [anon_sym_70] = ACTIONS(482), - [anon_sym_recur] = ACTIONS(482), - [anon_sym_71] = ACTIONS(482), - [anon_sym_fold] = ACTIONS(482), - [anon_sym_72] = ACTIONS(482), - [anon_sym_table] = ACTIONS(482), - [anon_sym_73] = ACTIONS(482), - [anon_sym_cross] = ACTIONS(482), - [anon_sym_74] = ACTIONS(482), - [anon_sym_group] = ACTIONS(482), - [anon_sym_75] = ACTIONS(482), - [anon_sym_partition] = ACTIONS(482), - [anon_sym_76] = ACTIONS(482), - [anon_sym_both] = ACTIONS(482), - [anon_sym_77] = ACTIONS(482), - [anon_sym_bracket] = ACTIONS(482), - [anon_sym_78] = ACTIONS(482), - [anon_sym_fork] = ACTIONS(482), - [anon_sym_79] = ACTIONS(482), - [anon_sym_under] = ACTIONS(482), - [anon_sym_80] = ACTIONS(482), - [anon_sym_fill] = ACTIONS(482), - [anon_sym_81] = ACTIONS(482), - [anon_sym_try] = ACTIONS(480), - [anon_sym_82] = ACTIONS(482), - [anon_sym_do] = ACTIONS(480), - [anon_sym_83] = ACTIONS(482), - [anon_sym_all] = ACTIONS(482), - [anon_sym_84] = ACTIONS(482), - [anon_sym_setinv] = ACTIONS(482), - [anon_sym_setunder] = ACTIONS(482), - [anon_sym_85] = ACTIONS(482), - [anon_sym_86] = ACTIONS(482), - [anon_sym_87] = ACTIONS(482), - [anon_sym_88] = ACTIONS(482), - [anon_sym_89] = ACTIONS(482), - [anon_sym_90] = ACTIONS(482), - [anon_sym_91] = ACTIONS(482), - [anon_sym_92] = ACTIONS(482), - [anon_sym_93] = ACTIONS(482), - [anon_sym_94] = ACTIONS(482), - [anon_sym_95] = ACTIONS(482), - [anon_sym_96] = ACTIONS(482), - [sym__endOfLine] = ACTIONS(482), - }, - [93] = { - [aux_sym_number_token1] = ACTIONS(484), - [sym_fraction] = ACTIONS(486), - [anon_sym_os] = ACTIONS(484), - [anon_sym_Family] = ACTIONS(484), - [anon_sym_Arch] = ACTIONS(484), - [anon_sym_ExeExt] = ACTIONS(484), - [anon_sym_PllExt] = ACTIONS(484), - [anon_sym_Sep] = ACTIONS(484), - [anon_sym_NUmProcs] = ACTIONS(484), - [anon_sym_] = ACTIONS(486), - [aux_sym_character_token1] = ACTIONS(486), - [sym_string] = ACTIONS(486), - [sym_multiLineString] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(486), + [84] = { + [sym_inlineFunction] = STATE(82), + [sym_function] = STATE(82), + [aux_sym_number_token1] = ACTIONS(476), + [sym_fraction] = ACTIONS(478), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [anon_sym_NUmProcs] = ACTIONS(476), + [anon_sym_] = ACTIONS(478), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), [sym_identifier] = ACTIONS(484), - [sym_identifierDeprecated] = ACTIONS(484), + [sym_identifierDeprecated] = ACTIONS(476), [sym_system] = ACTIONS(486), - [sym_comment] = ACTIONS(484), - [sym_openParen] = ACTIONS(486), - [sym_closeParen] = ACTIONS(486), - [sym_openCurly] = ACTIONS(486), - [sym_closeCurly] = ACTIONS(486), - [sym_openBracket] = ACTIONS(486), - [sym_closeBracket] = ACTIONS(486), - [sym_underscore] = ACTIONS(486), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_eta] = ACTIONS(486), - [anon_sym_2] = ACTIONS(484), - [anon_sym_pi] = ACTIONS(484), - [anon_sym_3] = ACTIONS(484), - [anon_sym_tau] = ACTIONS(486), - [anon_sym_4] = ACTIONS(484), - [anon_sym_infinity] = ACTIONS(486), - [anon_sym_5] = ACTIONS(486), - [anon_sym_e] = ACTIONS(484), - [anon_sym_NaN] = ACTIONS(484), - [anon_sym_NumProcs] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_identity] = ACTIONS(486), - [anon_sym_id] = ACTIONS(484), - [anon_sym_6] = ACTIONS(486), - [anon_sym_not] = ACTIONS(486), - [anon_sym_7] = ACTIONS(486), - [anon_sym_sign] = ACTIONS(486), - [anon_sym_8] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_9] = ACTIONS(484), - [anon_sym_absolutevalue] = ACTIONS(486), - [anon_sym_10] = ACTIONS(486), - [anon_sym_sqrt] = ACTIONS(486), - [anon_sym_11] = ACTIONS(486), - [anon_sym_sine] = ACTIONS(486), - [anon_sym_12] = ACTIONS(486), - [anon_sym_floor] = ACTIONS(486), - [anon_sym_13] = ACTIONS(486), - [anon_sym_ceiling] = ACTIONS(486), - [anon_sym_14] = ACTIONS(486), - [anon_sym_round] = ACTIONS(486), - [anon_sym_15] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_16] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_17] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_18] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_19] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_20] = ACTIONS(486), - [anon_sym_modulus] = ACTIONS(486), - [anon_sym_21] = ACTIONS(486), - [anon_sym_power] = ACTIONS(486), - [anon_sym_22] = ACTIONS(486), - [anon_sym_logarithm] = ACTIONS(486), - [anon_sym_23] = ACTIONS(486), - [anon_sym_minimum] = ACTIONS(486), - [anon_sym_24] = ACTIONS(486), - [anon_sym_maximum] = ACTIONS(486), - [anon_sym_25] = ACTIONS(486), - [anon_sym_atangent] = ACTIONS(486), - [anon_sym_26] = ACTIONS(486), - [anon_sym_length] = ACTIONS(486), - [anon_sym_27] = ACTIONS(486), - [anon_sym_shape] = ACTIONS(486), - [anon_sym_28] = ACTIONS(486), - [anon_sym_range] = ACTIONS(486), - [anon_sym_29] = ACTIONS(486), - [anon_sym_first] = ACTIONS(486), - [anon_sym_30] = ACTIONS(486), - [anon_sym_reverse] = ACTIONS(486), - [anon_sym_31] = ACTIONS(486), - [anon_sym_deshape] = ACTIONS(486), - [anon_sym_32] = ACTIONS(486), - [anon_sym_bits] = ACTIONS(486), - [anon_sym_33] = ACTIONS(486), - [anon_sym_transpose] = ACTIONS(486), - [anon_sym_34] = ACTIONS(486), - [anon_sym_rise] = ACTIONS(486), - [anon_sym_35] = ACTIONS(486), - [anon_sym_fall] = ACTIONS(486), - [anon_sym_36] = ACTIONS(486), - [anon_sym_where] = ACTIONS(486), - [anon_sym_37] = ACTIONS(486), - [anon_sym_classify] = ACTIONS(486), - [anon_sym_38] = ACTIONS(486), - [anon_sym_deduplicate] = ACTIONS(486), - [anon_sym_39] = ACTIONS(486), - [anon_sym_box] = ACTIONS(486), - [anon_sym_40] = ACTIONS(486), - [anon_sym_unbox] = ACTIONS(486), - [anon_sym_41] = ACTIONS(486), - [anon_sym_match] = ACTIONS(486), - [anon_sym_42] = ACTIONS(486), - [anon_sym_couple] = ACTIONS(486), - [anon_sym_43] = ACTIONS(486), - [anon_sym_join] = ACTIONS(486), - [anon_sym_44] = ACTIONS(486), - [anon_sym_select] = ACTIONS(486), - [anon_sym_45] = ACTIONS(486), - [anon_sym_pick] = ACTIONS(486), - [anon_sym_46] = ACTIONS(486), - [anon_sym_reshape] = ACTIONS(486), - [anon_sym_47] = ACTIONS(486), - [anon_sym_take] = ACTIONS(486), - [anon_sym_48] = ACTIONS(486), - [anon_sym_drop] = ACTIONS(486), - [anon_sym_49] = ACTIONS(486), - [anon_sym_rotate] = ACTIONS(486), - [anon_sym_50] = ACTIONS(486), - [anon_sym_windows] = ACTIONS(486), - [anon_sym_51] = ACTIONS(486), - [anon_sym_keep] = ACTIONS(486), - [anon_sym_52] = ACTIONS(486), - [anon_sym_find] = ACTIONS(486), - [anon_sym_53] = ACTIONS(486), - [anon_sym_member] = ACTIONS(486), - [anon_sym_54] = ACTIONS(486), - [anon_sym_indexof] = ACTIONS(486), - [anon_sym_55] = ACTIONS(486), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_56] = ACTIONS(486), - [anon_sym_wait] = ACTIONS(486), - [anon_sym_parse] = ACTIONS(486), - [anon_sym_random] = ACTIONS(486), - [anon_sym_57] = ACTIONS(486), - [anon_sym_gen] = ACTIONS(486), - [anon_sym_deal] = ACTIONS(486), - [anon_sym_tag] = ACTIONS(486), - [anon_sym_now] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_58] = ACTIONS(486), - [anon_sym_dump] = ACTIONS(486), - [anon_sym_regex] = ACTIONS(486), - [anon_sym_utf] = ACTIONS(486), - [anon_sym_send] = ACTIONS(486), - [anon_sym_recv] = ACTIONS(486), - [anon_sym_tryrecv] = ACTIONS(486), - [anon_sym_complex] = ACTIONS(486), - [anon_sym_59] = ACTIONS(486), - [anon_sym_rerank] = ACTIONS(486), - [anon_sym_60] = ACTIONS(486), - [anon_sym_fix] = ACTIONS(486), - [anon_sym_61] = ACTIONS(486), - [anon_sym_reduce] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_scan] = ACTIONS(486), - [anon_sym_BSLASH] = ACTIONS(486), - [anon_sym_each] = ACTIONS(486), - [anon_sym_62] = ACTIONS(486), - [anon_sym_rows] = ACTIONS(486), - [anon_sym_63] = ACTIONS(486), - [anon_sym_repeat] = ACTIONS(486), - [anon_sym_64] = ACTIONS(486), - [anon_sym_dip] = ACTIONS(486), - [anon_sym_65] = ACTIONS(486), - [anon_sym_gap] = ACTIONS(486), - [anon_sym_66] = ACTIONS(486), - [anon_sym_invert] = ACTIONS(486), - [anon_sym_67] = ACTIONS(486), - [anon_sym_spawn] = ACTIONS(486), - [anon_sym_pack] = ACTIONS(486), - [anon_sym_68] = ACTIONS(486), - [anon_sym_rectify] = ACTIONS(486), - [anon_sym_69] = ACTIONS(486), - [anon_sym_this] = ACTIONS(486), - [anon_sym_70] = ACTIONS(486), - [anon_sym_recur] = ACTIONS(486), - [anon_sym_71] = ACTIONS(486), - [anon_sym_fold] = ACTIONS(486), - [anon_sym_72] = ACTIONS(486), - [anon_sym_table] = ACTIONS(486), - [anon_sym_73] = ACTIONS(486), - [anon_sym_cross] = ACTIONS(486), - [anon_sym_74] = ACTIONS(486), - [anon_sym_group] = ACTIONS(486), - [anon_sym_75] = ACTIONS(486), - [anon_sym_partition] = ACTIONS(486), - [anon_sym_76] = ACTIONS(486), - [anon_sym_both] = ACTIONS(486), - [anon_sym_77] = ACTIONS(486), - [anon_sym_bracket] = ACTIONS(486), - [anon_sym_78] = ACTIONS(486), - [anon_sym_fork] = ACTIONS(486), - [anon_sym_79] = ACTIONS(486), - [anon_sym_under] = ACTIONS(486), - [anon_sym_80] = ACTIONS(486), - [anon_sym_fill] = ACTIONS(486), - [anon_sym_81] = ACTIONS(486), - [anon_sym_try] = ACTIONS(484), - [anon_sym_82] = ACTIONS(486), - [anon_sym_do] = ACTIONS(484), - [anon_sym_83] = ACTIONS(486), - [anon_sym_all] = ACTIONS(486), - [anon_sym_84] = ACTIONS(486), - [anon_sym_setinv] = ACTIONS(486), - [anon_sym_setunder] = ACTIONS(486), - [anon_sym_85] = ACTIONS(486), - [anon_sym_86] = ACTIONS(486), - [anon_sym_87] = ACTIONS(486), - [anon_sym_88] = ACTIONS(486), - [anon_sym_89] = ACTIONS(486), - [anon_sym_90] = ACTIONS(486), - [anon_sym_91] = ACTIONS(486), - [anon_sym_92] = ACTIONS(486), - [anon_sym_93] = ACTIONS(486), - [anon_sym_94] = ACTIONS(486), - [anon_sym_95] = ACTIONS(486), - [anon_sym_96] = ACTIONS(486), - [sym__endOfLine] = ACTIONS(486), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(474), + [sym_closeParen] = ACTIONS(478), + [sym_openCurly] = ACTIONS(478), + [sym_closeCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_closeBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_2] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_3] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_4] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_COLON] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(172), + [anon_sym_identity] = ACTIONS(172), + [anon_sym_id] = ACTIONS(174), + [anon_sym_6] = ACTIONS(172), + [anon_sym_not] = ACTIONS(172), + [anon_sym_7] = ACTIONS(172), + [anon_sym_sign] = ACTIONS(172), + [anon_sym_8] = ACTIONS(172), + [anon_sym_BQUOTE] = ACTIONS(172), + [anon_sym_9] = ACTIONS(174), + [anon_sym_absolutevalue] = ACTIONS(172), + [anon_sym_10] = ACTIONS(172), + [anon_sym_sqrt] = ACTIONS(172), + [anon_sym_11] = ACTIONS(172), + [anon_sym_sine] = ACTIONS(172), + [anon_sym_12] = ACTIONS(172), + [anon_sym_floor] = ACTIONS(172), + [anon_sym_13] = ACTIONS(172), + [anon_sym_ceiling] = ACTIONS(172), + [anon_sym_14] = ACTIONS(172), + [anon_sym_round] = ACTIONS(172), + [anon_sym_15] = ACTIONS(172), + [anon_sym_EQ] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_16] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_17] = ACTIONS(172), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_18] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(172), + [anon_sym_19] = ACTIONS(172), + [anon_sym_PERCENT] = ACTIONS(172), + [anon_sym_20] = ACTIONS(172), + [anon_sym_modulus] = ACTIONS(172), + [anon_sym_21] = ACTIONS(172), + [anon_sym_power] = ACTIONS(172), + [anon_sym_22] = ACTIONS(172), + [anon_sym_logarithm] = ACTIONS(172), + [anon_sym_23] = ACTIONS(172), + [anon_sym_minimum] = ACTIONS(172), + [anon_sym_24] = ACTIONS(172), + [anon_sym_maximum] = ACTIONS(172), + [anon_sym_25] = ACTIONS(172), + [anon_sym_atangent] = ACTIONS(172), + [anon_sym_26] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_27] = ACTIONS(172), + [anon_sym_shape] = ACTIONS(172), + [anon_sym_28] = ACTIONS(172), + [anon_sym_range] = ACTIONS(172), + [anon_sym_29] = ACTIONS(172), + [anon_sym_first] = ACTIONS(172), + [anon_sym_30] = ACTIONS(172), + [anon_sym_reverse] = ACTIONS(172), + [anon_sym_31] = ACTIONS(172), + [anon_sym_deshape] = ACTIONS(172), + [anon_sym_32] = ACTIONS(172), + [anon_sym_bits] = ACTIONS(172), + [anon_sym_33] = ACTIONS(172), + [anon_sym_transpose] = ACTIONS(172), + [anon_sym_34] = ACTIONS(172), + [anon_sym_rise] = ACTIONS(172), + [anon_sym_35] = ACTIONS(172), + [anon_sym_fall] = ACTIONS(172), + [anon_sym_36] = ACTIONS(172), + [anon_sym_where] = ACTIONS(172), + [anon_sym_37] = ACTIONS(172), + [anon_sym_classify] = ACTIONS(172), + [anon_sym_38] = ACTIONS(172), + [anon_sym_deduplicate] = ACTIONS(172), + [anon_sym_39] = ACTIONS(172), + [anon_sym_box] = ACTIONS(172), + [anon_sym_40] = ACTIONS(172), + [anon_sym_unbox] = ACTIONS(172), + [anon_sym_41] = ACTIONS(172), + [anon_sym_match] = ACTIONS(172), + [anon_sym_42] = ACTIONS(172), + [anon_sym_couple] = ACTIONS(172), + [anon_sym_43] = ACTIONS(172), + [anon_sym_join] = ACTIONS(172), + [anon_sym_44] = ACTIONS(172), + [anon_sym_select] = ACTIONS(172), + [anon_sym_45] = ACTIONS(172), + [anon_sym_pick] = ACTIONS(172), + [anon_sym_46] = ACTIONS(172), + [anon_sym_reshape] = ACTIONS(172), + [anon_sym_47] = ACTIONS(172), + [anon_sym_take] = ACTIONS(172), + [anon_sym_48] = ACTIONS(172), + [anon_sym_drop] = ACTIONS(172), + [anon_sym_49] = ACTIONS(172), + [anon_sym_rotate] = ACTIONS(172), + [anon_sym_50] = ACTIONS(172), + [anon_sym_windows] = ACTIONS(172), + [anon_sym_51] = ACTIONS(172), + [anon_sym_keep] = ACTIONS(172), + [anon_sym_52] = ACTIONS(172), + [anon_sym_find] = ACTIONS(172), + [anon_sym_53] = ACTIONS(172), + [anon_sym_member] = ACTIONS(172), + [anon_sym_54] = ACTIONS(172), + [anon_sym_indexof] = ACTIONS(172), + [anon_sym_55] = ACTIONS(172), + [anon_sym_assert] = ACTIONS(172), + [anon_sym_56] = ACTIONS(172), + [anon_sym_wait] = ACTIONS(172), + [anon_sym_parse] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_57] = ACTIONS(172), + [anon_sym_gen] = ACTIONS(172), + [anon_sym_deal] = ACTIONS(172), + [anon_sym_tag] = ACTIONS(172), + [anon_sym_now] = ACTIONS(172), + [anon_sym_type] = ACTIONS(172), + [anon_sym_58] = ACTIONS(172), + [anon_sym_dump] = ACTIONS(172), + [anon_sym_regex] = ACTIONS(172), + [anon_sym_utf] = ACTIONS(172), + [anon_sym_send] = ACTIONS(172), + [anon_sym_recv] = ACTIONS(172), + [anon_sym_tryrecv] = ACTIONS(172), + [anon_sym_complex] = ACTIONS(172), + [anon_sym_59] = ACTIONS(172), + [anon_sym_rerank] = ACTIONS(172), + [anon_sym_60] = ACTIONS(172), + [anon_sym_fix] = ACTIONS(172), + [anon_sym_61] = ACTIONS(172), + [anon_sym_QMARK] = ACTIONS(172), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_62] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_63] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_rectify] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_this] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_recur] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_82] = ACTIONS(478), + [anon_sym_do] = ACTIONS(476), + [anon_sym_83] = ACTIONS(478), + [anon_sym_all] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_setinv] = ACTIONS(478), + [anon_sym_setunder] = ACTIONS(478), + [anon_sym_85] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [sym__endOfLine] = ACTIONS(478), }, - [94] = { + [85] = { [aux_sym_number_token1] = ACTIONS(488), [sym_fraction] = ACTIONS(490), [anon_sym_os] = ACTIONS(488), @@ -29948,6 +27792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(490), [sym_underscore] = ACTIONS(490), [anon_sym_CARET] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(488), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(490), [anon_sym_eta] = ACTIONS(490), [anon_sym_2] = ACTIONS(488), [anon_sym_pi] = ACTIONS(488), @@ -30093,6 +27939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(490), [anon_sym_fix] = ACTIONS(490), [anon_sym_61] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), [anon_sym_reduce] = ACTIONS(490), [anon_sym_SLASH] = ACTIONS(490), [anon_sym_scan] = ACTIONS(490), @@ -30154,13 +28001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(490), [anon_sym_91] = ACTIONS(490), [anon_sym_92] = ACTIONS(490), - [anon_sym_93] = ACTIONS(490), - [anon_sym_94] = ACTIONS(490), - [anon_sym_95] = ACTIONS(490), - [anon_sym_96] = ACTIONS(490), [sym__endOfLine] = ACTIONS(490), }, - [95] = { + [86] = { [aux_sym_number_token1] = ACTIONS(492), [sym_fraction] = ACTIONS(494), [anon_sym_os] = ACTIONS(492), @@ -30187,6 +28030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(494), [sym_underscore] = ACTIONS(494), [anon_sym_CARET] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(494), [anon_sym_eta] = ACTIONS(494), [anon_sym_2] = ACTIONS(492), [anon_sym_pi] = ACTIONS(492), @@ -30332,6 +28177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(494), [anon_sym_fix] = ACTIONS(494), [anon_sym_61] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), [anon_sym_reduce] = ACTIONS(494), [anon_sym_SLASH] = ACTIONS(494), [anon_sym_scan] = ACTIONS(494), @@ -30393,13 +28239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(494), [anon_sym_91] = ACTIONS(494), [anon_sym_92] = ACTIONS(494), - [anon_sym_93] = ACTIONS(494), - [anon_sym_94] = ACTIONS(494), - [anon_sym_95] = ACTIONS(494), - [anon_sym_96] = ACTIONS(494), [sym__endOfLine] = ACTIONS(494), }, - [96] = { + [87] = { [aux_sym_number_token1] = ACTIONS(496), [sym_fraction] = ACTIONS(498), [anon_sym_os] = ACTIONS(496), @@ -30426,6 +28268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(498), [sym_underscore] = ACTIONS(498), [anon_sym_CARET] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(498), [anon_sym_eta] = ACTIONS(498), [anon_sym_2] = ACTIONS(496), [anon_sym_pi] = ACTIONS(496), @@ -30571,6 +28415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(498), [anon_sym_fix] = ACTIONS(498), [anon_sym_61] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(498), [anon_sym_reduce] = ACTIONS(498), [anon_sym_SLASH] = ACTIONS(498), [anon_sym_scan] = ACTIONS(498), @@ -30632,13 +28477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(498), [anon_sym_91] = ACTIONS(498), [anon_sym_92] = ACTIONS(498), - [anon_sym_93] = ACTIONS(498), - [anon_sym_94] = ACTIONS(498), - [anon_sym_95] = ACTIONS(498), - [anon_sym_96] = ACTIONS(498), [sym__endOfLine] = ACTIONS(498), }, - [97] = { + [88] = { [aux_sym_number_token1] = ACTIONS(500), [sym_fraction] = ACTIONS(502), [anon_sym_os] = ACTIONS(500), @@ -30665,6 +28506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(502), [sym_underscore] = ACTIONS(502), [anon_sym_CARET] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(502), [anon_sym_eta] = ACTIONS(502), [anon_sym_2] = ACTIONS(500), [anon_sym_pi] = ACTIONS(500), @@ -30810,6 +28653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(502), [anon_sym_fix] = ACTIONS(502), [anon_sym_61] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(502), [anon_sym_reduce] = ACTIONS(502), [anon_sym_SLASH] = ACTIONS(502), [anon_sym_scan] = ACTIONS(502), @@ -30871,13 +28715,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(502), [anon_sym_91] = ACTIONS(502), [anon_sym_92] = ACTIONS(502), - [anon_sym_93] = ACTIONS(502), - [anon_sym_94] = ACTIONS(502), - [anon_sym_95] = ACTIONS(502), - [anon_sym_96] = ACTIONS(502), [sym__endOfLine] = ACTIONS(502), }, - [98] = { + [89] = { [aux_sym_number_token1] = ACTIONS(504), [sym_fraction] = ACTIONS(506), [anon_sym_os] = ACTIONS(504), @@ -30904,6 +28744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(506), [sym_underscore] = ACTIONS(506), [anon_sym_CARET] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(504), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(506), [anon_sym_eta] = ACTIONS(506), [anon_sym_2] = ACTIONS(504), [anon_sym_pi] = ACTIONS(504), @@ -31049,6 +28891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(506), [anon_sym_fix] = ACTIONS(506), [anon_sym_61] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), [anon_sym_reduce] = ACTIONS(506), [anon_sym_SLASH] = ACTIONS(506), [anon_sym_scan] = ACTIONS(506), @@ -31110,13 +28953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(506), [anon_sym_91] = ACTIONS(506), [anon_sym_92] = ACTIONS(506), - [anon_sym_93] = ACTIONS(506), - [anon_sym_94] = ACTIONS(506), - [anon_sym_95] = ACTIONS(506), - [anon_sym_96] = ACTIONS(506), [sym__endOfLine] = ACTIONS(506), }, - [99] = { + [90] = { [aux_sym_number_token1] = ACTIONS(508), [sym_fraction] = ACTIONS(510), [anon_sym_os] = ACTIONS(508), @@ -31143,6 +28982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(510), [sym_underscore] = ACTIONS(510), [anon_sym_CARET] = ACTIONS(510), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(510), [anon_sym_eta] = ACTIONS(510), [anon_sym_2] = ACTIONS(508), [anon_sym_pi] = ACTIONS(508), @@ -31288,6 +29129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(510), [anon_sym_fix] = ACTIONS(510), [anon_sym_61] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(510), [anon_sym_reduce] = ACTIONS(510), [anon_sym_SLASH] = ACTIONS(510), [anon_sym_scan] = ACTIONS(510), @@ -31349,13 +29191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(510), [anon_sym_91] = ACTIONS(510), [anon_sym_92] = ACTIONS(510), - [anon_sym_93] = ACTIONS(510), - [anon_sym_94] = ACTIONS(510), - [anon_sym_95] = ACTIONS(510), - [anon_sym_96] = ACTIONS(510), [sym__endOfLine] = ACTIONS(510), }, - [100] = { + [91] = { [aux_sym_number_token1] = ACTIONS(512), [sym_fraction] = ACTIONS(514), [anon_sym_os] = ACTIONS(512), @@ -31382,6 +29220,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(514), [sym_underscore] = ACTIONS(514), [anon_sym_CARET] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(514), [anon_sym_eta] = ACTIONS(514), [anon_sym_2] = ACTIONS(512), [anon_sym_pi] = ACTIONS(512), @@ -31527,6 +29367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(514), [anon_sym_fix] = ACTIONS(514), [anon_sym_61] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(514), [anon_sym_reduce] = ACTIONS(514), [anon_sym_SLASH] = ACTIONS(514), [anon_sym_scan] = ACTIONS(514), @@ -31588,252 +29429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(514), [anon_sym_91] = ACTIONS(514), [anon_sym_92] = ACTIONS(514), - [anon_sym_93] = ACTIONS(514), - [anon_sym_94] = ACTIONS(514), - [anon_sym_95] = ACTIONS(514), - [anon_sym_96] = ACTIONS(514), [sym__endOfLine] = ACTIONS(514), }, - [101] = { - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [sym_identifier] = ACTIONS(440), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(442), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(442), - [sym_closeParen] = ACTIONS(442), - [sym_openCurly] = ACTIONS(442), - [sym_closeCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_closeBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_identity] = ACTIONS(442), - [anon_sym_id] = ACTIONS(440), - [anon_sym_6] = ACTIONS(442), - [anon_sym_not] = ACTIONS(442), - [anon_sym_7] = ACTIONS(442), - [anon_sym_sign] = ACTIONS(442), - [anon_sym_8] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(442), - [anon_sym_10] = ACTIONS(442), - [anon_sym_sqrt] = ACTIONS(442), - [anon_sym_11] = ACTIONS(442), - [anon_sym_sine] = ACTIONS(442), - [anon_sym_12] = ACTIONS(442), - [anon_sym_floor] = ACTIONS(442), - [anon_sym_13] = ACTIONS(442), - [anon_sym_ceiling] = ACTIONS(442), - [anon_sym_14] = ACTIONS(442), - [anon_sym_round] = ACTIONS(442), - [anon_sym_15] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_16] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_17] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_18] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_19] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_20] = ACTIONS(442), - [anon_sym_modulus] = ACTIONS(442), - [anon_sym_21] = ACTIONS(442), - [anon_sym_power] = ACTIONS(442), - [anon_sym_22] = ACTIONS(442), - [anon_sym_logarithm] = ACTIONS(442), - [anon_sym_23] = ACTIONS(442), - [anon_sym_minimum] = ACTIONS(442), - [anon_sym_24] = ACTIONS(442), - [anon_sym_maximum] = ACTIONS(442), - [anon_sym_25] = ACTIONS(442), - [anon_sym_atangent] = ACTIONS(442), - [anon_sym_26] = ACTIONS(442), - [anon_sym_length] = ACTIONS(442), - [anon_sym_27] = ACTIONS(442), - [anon_sym_shape] = ACTIONS(442), - [anon_sym_28] = ACTIONS(442), - [anon_sym_range] = ACTIONS(442), - [anon_sym_29] = ACTIONS(442), - [anon_sym_first] = ACTIONS(442), - [anon_sym_30] = ACTIONS(442), - [anon_sym_reverse] = ACTIONS(442), - [anon_sym_31] = ACTIONS(442), - [anon_sym_deshape] = ACTIONS(442), - [anon_sym_32] = ACTIONS(442), - [anon_sym_bits] = ACTIONS(442), - [anon_sym_33] = ACTIONS(442), - [anon_sym_transpose] = ACTIONS(442), - [anon_sym_34] = ACTIONS(442), - [anon_sym_rise] = ACTIONS(442), - [anon_sym_35] = ACTIONS(442), - [anon_sym_fall] = ACTIONS(442), - [anon_sym_36] = ACTIONS(442), - [anon_sym_where] = ACTIONS(442), - [anon_sym_37] = ACTIONS(442), - [anon_sym_classify] = ACTIONS(442), - [anon_sym_38] = ACTIONS(442), - [anon_sym_deduplicate] = ACTIONS(442), - [anon_sym_39] = ACTIONS(442), - [anon_sym_box] = ACTIONS(442), - [anon_sym_40] = ACTIONS(442), - [anon_sym_unbox] = ACTIONS(442), - [anon_sym_41] = ACTIONS(442), - [anon_sym_match] = ACTIONS(442), - [anon_sym_42] = ACTIONS(442), - [anon_sym_couple] = ACTIONS(442), - [anon_sym_43] = ACTIONS(442), - [anon_sym_join] = ACTIONS(442), - [anon_sym_44] = ACTIONS(442), - [anon_sym_select] = ACTIONS(442), - [anon_sym_45] = ACTIONS(442), - [anon_sym_pick] = ACTIONS(442), - [anon_sym_46] = ACTIONS(442), - [anon_sym_reshape] = ACTIONS(442), - [anon_sym_47] = ACTIONS(442), - [anon_sym_take] = ACTIONS(442), - [anon_sym_48] = ACTIONS(442), - [anon_sym_drop] = ACTIONS(442), - [anon_sym_49] = ACTIONS(442), - [anon_sym_rotate] = ACTIONS(442), - [anon_sym_50] = ACTIONS(442), - [anon_sym_windows] = ACTIONS(442), - [anon_sym_51] = ACTIONS(442), - [anon_sym_keep] = ACTIONS(442), - [anon_sym_52] = ACTIONS(442), - [anon_sym_find] = ACTIONS(442), - [anon_sym_53] = ACTIONS(442), - [anon_sym_member] = ACTIONS(442), - [anon_sym_54] = ACTIONS(442), - [anon_sym_indexof] = ACTIONS(442), - [anon_sym_55] = ACTIONS(442), - [anon_sym_assert] = ACTIONS(442), - [anon_sym_56] = ACTIONS(442), - [anon_sym_wait] = ACTIONS(442), - [anon_sym_parse] = ACTIONS(442), - [anon_sym_random] = ACTIONS(442), - [anon_sym_57] = ACTIONS(442), - [anon_sym_gen] = ACTIONS(442), - [anon_sym_deal] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_now] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_58] = ACTIONS(442), - [anon_sym_dump] = ACTIONS(442), - [anon_sym_regex] = ACTIONS(442), - [anon_sym_utf] = ACTIONS(442), - [anon_sym_send] = ACTIONS(442), - [anon_sym_recv] = ACTIONS(442), - [anon_sym_tryrecv] = ACTIONS(442), - [anon_sym_complex] = ACTIONS(442), - [anon_sym_59] = ACTIONS(442), - [anon_sym_rerank] = ACTIONS(442), - [anon_sym_60] = ACTIONS(442), - [anon_sym_fix] = ACTIONS(442), - [anon_sym_61] = ACTIONS(442), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), - }, - [102] = { + [92] = { [aux_sym_number_token1] = ACTIONS(516), [sym_fraction] = ACTIONS(518), [anon_sym_os] = ACTIONS(516), @@ -31860,6 +29458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(518), [sym_underscore] = ACTIONS(518), [anon_sym_CARET] = ACTIONS(518), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(518), [anon_sym_eta] = ACTIONS(518), [anon_sym_2] = ACTIONS(516), [anon_sym_pi] = ACTIONS(516), @@ -32005,6 +29605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(518), [anon_sym_fix] = ACTIONS(518), [anon_sym_61] = ACTIONS(518), + [anon_sym_QMARK] = ACTIONS(518), [anon_sym_reduce] = ACTIONS(518), [anon_sym_SLASH] = ACTIONS(518), [anon_sym_scan] = ACTIONS(518), @@ -32066,13 +29667,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(518), [anon_sym_91] = ACTIONS(518), [anon_sym_92] = ACTIONS(518), - [anon_sym_93] = ACTIONS(518), - [anon_sym_94] = ACTIONS(518), - [anon_sym_95] = ACTIONS(518), - [anon_sym_96] = ACTIONS(518), [sym__endOfLine] = ACTIONS(518), }, - [103] = { + [93] = { [aux_sym_number_token1] = ACTIONS(520), [sym_fraction] = ACTIONS(522), [anon_sym_os] = ACTIONS(520), @@ -32099,6 +29696,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(522), [sym_underscore] = ACTIONS(522), [anon_sym_CARET] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(520), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(522), [anon_sym_eta] = ACTIONS(522), [anon_sym_2] = ACTIONS(520), [anon_sym_pi] = ACTIONS(520), @@ -32244,6 +29843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(522), [anon_sym_fix] = ACTIONS(522), [anon_sym_61] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), [anon_sym_reduce] = ACTIONS(522), [anon_sym_SLASH] = ACTIONS(522), [anon_sym_scan] = ACTIONS(522), @@ -32305,252 +29905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(522), [anon_sym_91] = ACTIONS(522), [anon_sym_92] = ACTIONS(522), - [anon_sym_93] = ACTIONS(522), - [anon_sym_94] = ACTIONS(522), - [anon_sym_95] = ACTIONS(522), - [anon_sym_96] = ACTIONS(522), [sym__endOfLine] = ACTIONS(522), }, - [104] = { - [aux_sym_number_token1] = ACTIONS(430), - [sym_fraction] = ACTIONS(432), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [anon_sym_NUmProcs] = ACTIONS(430), - [anon_sym_] = ACTIONS(432), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(430), - [sym_identifierDeprecated] = ACTIONS(430), - [sym_system] = ACTIONS(432), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_closeParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_closeCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_closeBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_2] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_3] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_4] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_COLON] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_identity] = ACTIONS(432), - [anon_sym_id] = ACTIONS(430), - [anon_sym_6] = ACTIONS(432), - [anon_sym_not] = ACTIONS(432), - [anon_sym_7] = ACTIONS(432), - [anon_sym_sign] = ACTIONS(432), - [anon_sym_8] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(432), - [anon_sym_9] = ACTIONS(430), - [anon_sym_absolutevalue] = ACTIONS(432), - [anon_sym_10] = ACTIONS(432), - [anon_sym_sqrt] = ACTIONS(432), - [anon_sym_11] = ACTIONS(432), - [anon_sym_sine] = ACTIONS(432), - [anon_sym_12] = ACTIONS(432), - [anon_sym_floor] = ACTIONS(432), - [anon_sym_13] = ACTIONS(432), - [anon_sym_ceiling] = ACTIONS(432), - [anon_sym_14] = ACTIONS(432), - [anon_sym_round] = ACTIONS(432), - [anon_sym_15] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_16] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_17] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_18] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_19] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_20] = ACTIONS(432), - [anon_sym_modulus] = ACTIONS(432), - [anon_sym_21] = ACTIONS(432), - [anon_sym_power] = ACTIONS(432), - [anon_sym_22] = ACTIONS(432), - [anon_sym_logarithm] = ACTIONS(432), - [anon_sym_23] = ACTIONS(432), - [anon_sym_minimum] = ACTIONS(432), - [anon_sym_24] = ACTIONS(432), - [anon_sym_maximum] = ACTIONS(432), - [anon_sym_25] = ACTIONS(432), - [anon_sym_atangent] = ACTIONS(432), - [anon_sym_26] = ACTIONS(432), - [anon_sym_length] = ACTIONS(432), - [anon_sym_27] = ACTIONS(432), - [anon_sym_shape] = ACTIONS(432), - [anon_sym_28] = ACTIONS(432), - [anon_sym_range] = ACTIONS(432), - [anon_sym_29] = ACTIONS(432), - [anon_sym_first] = ACTIONS(432), - [anon_sym_30] = ACTIONS(432), - [anon_sym_reverse] = ACTIONS(432), - [anon_sym_31] = ACTIONS(432), - [anon_sym_deshape] = ACTIONS(432), - [anon_sym_32] = ACTIONS(432), - [anon_sym_bits] = ACTIONS(432), - [anon_sym_33] = ACTIONS(432), - [anon_sym_transpose] = ACTIONS(432), - [anon_sym_34] = ACTIONS(432), - [anon_sym_rise] = ACTIONS(432), - [anon_sym_35] = ACTIONS(432), - [anon_sym_fall] = ACTIONS(432), - [anon_sym_36] = ACTIONS(432), - [anon_sym_where] = ACTIONS(432), - [anon_sym_37] = ACTIONS(432), - [anon_sym_classify] = ACTIONS(432), - [anon_sym_38] = ACTIONS(432), - [anon_sym_deduplicate] = ACTIONS(432), - [anon_sym_39] = ACTIONS(432), - [anon_sym_box] = ACTIONS(432), - [anon_sym_40] = ACTIONS(432), - [anon_sym_unbox] = ACTIONS(432), - [anon_sym_41] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_42] = ACTIONS(432), - [anon_sym_couple] = ACTIONS(432), - [anon_sym_43] = ACTIONS(432), - [anon_sym_join] = ACTIONS(432), - [anon_sym_44] = ACTIONS(432), - [anon_sym_select] = ACTIONS(432), - [anon_sym_45] = ACTIONS(432), - [anon_sym_pick] = ACTIONS(432), - [anon_sym_46] = ACTIONS(432), - [anon_sym_reshape] = ACTIONS(432), - [anon_sym_47] = ACTIONS(432), - [anon_sym_take] = ACTIONS(432), - [anon_sym_48] = ACTIONS(432), - [anon_sym_drop] = ACTIONS(432), - [anon_sym_49] = ACTIONS(432), - [anon_sym_rotate] = ACTIONS(432), - [anon_sym_50] = ACTIONS(432), - [anon_sym_windows] = ACTIONS(432), - [anon_sym_51] = ACTIONS(432), - [anon_sym_keep] = ACTIONS(432), - [anon_sym_52] = ACTIONS(432), - [anon_sym_find] = ACTIONS(432), - [anon_sym_53] = ACTIONS(432), - [anon_sym_member] = ACTIONS(432), - [anon_sym_54] = ACTIONS(432), - [anon_sym_indexof] = ACTIONS(432), - [anon_sym_55] = ACTIONS(432), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_56] = ACTIONS(432), - [anon_sym_wait] = ACTIONS(432), - [anon_sym_parse] = ACTIONS(432), - [anon_sym_random] = ACTIONS(432), - [anon_sym_57] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(432), - [anon_sym_deal] = ACTIONS(432), - [anon_sym_tag] = ACTIONS(432), - [anon_sym_now] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_58] = ACTIONS(432), - [anon_sym_dump] = ACTIONS(432), - [anon_sym_regex] = ACTIONS(432), - [anon_sym_utf] = ACTIONS(432), - [anon_sym_send] = ACTIONS(432), - [anon_sym_recv] = ACTIONS(432), - [anon_sym_tryrecv] = ACTIONS(432), - [anon_sym_complex] = ACTIONS(432), - [anon_sym_59] = ACTIONS(432), - [anon_sym_rerank] = ACTIONS(432), - [anon_sym_60] = ACTIONS(432), - [anon_sym_fix] = ACTIONS(432), - [anon_sym_61] = ACTIONS(432), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_62] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_63] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_67] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_68] = ACTIONS(432), - [anon_sym_rectify] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_this] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_recur] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_82] = ACTIONS(432), - [anon_sym_do] = ACTIONS(430), - [anon_sym_83] = ACTIONS(432), - [anon_sym_all] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_setinv] = ACTIONS(432), - [anon_sym_setunder] = ACTIONS(432), - [anon_sym_85] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), - [anon_sym_94] = ACTIONS(432), - [anon_sym_95] = ACTIONS(432), - [anon_sym_96] = ACTIONS(432), - [sym__endOfLine] = ACTIONS(432), - }, - [105] = { + [94] = { [aux_sym_number_token1] = ACTIONS(524), [sym_fraction] = ACTIONS(526), [anon_sym_os] = ACTIONS(524), @@ -32577,6 +29934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(526), [sym_underscore] = ACTIONS(526), [anon_sym_CARET] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(524), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(526), [anon_sym_eta] = ACTIONS(526), [anon_sym_2] = ACTIONS(524), [anon_sym_pi] = ACTIONS(524), @@ -32722,6 +30081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(526), [anon_sym_fix] = ACTIONS(526), [anon_sym_61] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), [anon_sym_reduce] = ACTIONS(526), [anon_sym_SLASH] = ACTIONS(526), [anon_sym_scan] = ACTIONS(526), @@ -32783,252 +30143,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(526), [anon_sym_91] = ACTIONS(526), [anon_sym_92] = ACTIONS(526), - [anon_sym_93] = ACTIONS(526), - [anon_sym_94] = ACTIONS(526), - [anon_sym_95] = ACTIONS(526), - [anon_sym_96] = ACTIONS(526), [sym__endOfLine] = ACTIONS(526), }, - [106] = { - [aux_sym_number_token1] = ACTIONS(520), - [sym_fraction] = ACTIONS(522), - [anon_sym_os] = ACTIONS(520), - [anon_sym_Family] = ACTIONS(520), - [anon_sym_Arch] = ACTIONS(520), - [anon_sym_ExeExt] = ACTIONS(520), - [anon_sym_PllExt] = ACTIONS(520), - [anon_sym_Sep] = ACTIONS(520), - [anon_sym_NUmProcs] = ACTIONS(520), - [anon_sym_] = ACTIONS(522), - [aux_sym_character_token1] = ACTIONS(522), - [sym_string] = ACTIONS(522), - [sym_multiLineString] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(522), - [sym_identifier] = ACTIONS(520), - [sym_identifierDeprecated] = ACTIONS(520), - [sym_system] = ACTIONS(522), - [sym_comment] = ACTIONS(520), - [sym_openParen] = ACTIONS(522), - [sym_closeParen] = ACTIONS(522), - [sym_openCurly] = ACTIONS(522), - [sym_closeCurly] = ACTIONS(522), - [sym_openBracket] = ACTIONS(522), - [sym_closeBracket] = ACTIONS(522), - [sym_underscore] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_eta] = ACTIONS(522), - [anon_sym_2] = ACTIONS(520), - [anon_sym_pi] = ACTIONS(520), - [anon_sym_3] = ACTIONS(520), - [anon_sym_tau] = ACTIONS(522), - [anon_sym_4] = ACTIONS(520), - [anon_sym_infinity] = ACTIONS(522), - [anon_sym_5] = ACTIONS(522), - [anon_sym_e] = ACTIONS(520), - [anon_sym_NaN] = ACTIONS(520), - [anon_sym_NumProcs] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_identity] = ACTIONS(522), - [anon_sym_id] = ACTIONS(520), - [anon_sym_6] = ACTIONS(522), - [anon_sym_not] = ACTIONS(522), - [anon_sym_7] = ACTIONS(522), - [anon_sym_sign] = ACTIONS(522), - [anon_sym_8] = ACTIONS(522), - [anon_sym_BQUOTE] = ACTIONS(522), - [anon_sym_9] = ACTIONS(520), - [anon_sym_absolutevalue] = ACTIONS(522), - [anon_sym_10] = ACTIONS(522), - [anon_sym_sqrt] = ACTIONS(522), - [anon_sym_11] = ACTIONS(522), - [anon_sym_sine] = ACTIONS(522), - [anon_sym_12] = ACTIONS(522), - [anon_sym_floor] = ACTIONS(522), - [anon_sym_13] = ACTIONS(522), - [anon_sym_ceiling] = ACTIONS(522), - [anon_sym_14] = ACTIONS(522), - [anon_sym_round] = ACTIONS(522), - [anon_sym_15] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_16] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_17] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_18] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_19] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_20] = ACTIONS(522), - [anon_sym_modulus] = ACTIONS(522), - [anon_sym_21] = ACTIONS(522), - [anon_sym_power] = ACTIONS(522), - [anon_sym_22] = ACTIONS(522), - [anon_sym_logarithm] = ACTIONS(522), - [anon_sym_23] = ACTIONS(522), - [anon_sym_minimum] = ACTIONS(522), - [anon_sym_24] = ACTIONS(522), - [anon_sym_maximum] = ACTIONS(522), - [anon_sym_25] = ACTIONS(522), - [anon_sym_atangent] = ACTIONS(522), - [anon_sym_26] = ACTIONS(522), - [anon_sym_length] = ACTIONS(522), - [anon_sym_27] = ACTIONS(522), - [anon_sym_shape] = ACTIONS(522), - [anon_sym_28] = ACTIONS(522), - [anon_sym_range] = ACTIONS(522), - [anon_sym_29] = ACTIONS(522), - [anon_sym_first] = ACTIONS(522), - [anon_sym_30] = ACTIONS(522), - [anon_sym_reverse] = ACTIONS(522), - [anon_sym_31] = ACTIONS(522), - [anon_sym_deshape] = ACTIONS(522), - [anon_sym_32] = ACTIONS(522), - [anon_sym_bits] = ACTIONS(522), - [anon_sym_33] = ACTIONS(522), - [anon_sym_transpose] = ACTIONS(522), - [anon_sym_34] = ACTIONS(522), - [anon_sym_rise] = ACTIONS(522), - [anon_sym_35] = ACTIONS(522), - [anon_sym_fall] = ACTIONS(522), - [anon_sym_36] = ACTIONS(522), - [anon_sym_where] = ACTIONS(522), - [anon_sym_37] = ACTIONS(522), - [anon_sym_classify] = ACTIONS(522), - [anon_sym_38] = ACTIONS(522), - [anon_sym_deduplicate] = ACTIONS(522), - [anon_sym_39] = ACTIONS(522), - [anon_sym_box] = ACTIONS(522), - [anon_sym_40] = ACTIONS(522), - [anon_sym_unbox] = ACTIONS(522), - [anon_sym_41] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [anon_sym_42] = ACTIONS(522), - [anon_sym_couple] = ACTIONS(522), - [anon_sym_43] = ACTIONS(522), - [anon_sym_join] = ACTIONS(522), - [anon_sym_44] = ACTIONS(522), - [anon_sym_select] = ACTIONS(522), - [anon_sym_45] = ACTIONS(522), - [anon_sym_pick] = ACTIONS(522), - [anon_sym_46] = ACTIONS(522), - [anon_sym_reshape] = ACTIONS(522), - [anon_sym_47] = ACTIONS(522), - [anon_sym_take] = ACTIONS(522), - [anon_sym_48] = ACTIONS(522), - [anon_sym_drop] = ACTIONS(522), - [anon_sym_49] = ACTIONS(522), - [anon_sym_rotate] = ACTIONS(522), - [anon_sym_50] = ACTIONS(522), - [anon_sym_windows] = ACTIONS(522), - [anon_sym_51] = ACTIONS(522), - [anon_sym_keep] = ACTIONS(522), - [anon_sym_52] = ACTIONS(522), - [anon_sym_find] = ACTIONS(522), - [anon_sym_53] = ACTIONS(522), - [anon_sym_member] = ACTIONS(522), - [anon_sym_54] = ACTIONS(522), - [anon_sym_indexof] = ACTIONS(522), - [anon_sym_55] = ACTIONS(522), - [anon_sym_assert] = ACTIONS(522), - [anon_sym_56] = ACTIONS(522), - [anon_sym_wait] = ACTIONS(522), - [anon_sym_parse] = ACTIONS(522), - [anon_sym_random] = ACTIONS(522), - [anon_sym_57] = ACTIONS(522), - [anon_sym_gen] = ACTIONS(522), - [anon_sym_deal] = ACTIONS(522), - [anon_sym_tag] = ACTIONS(522), - [anon_sym_now] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_58] = ACTIONS(522), - [anon_sym_dump] = ACTIONS(522), - [anon_sym_regex] = ACTIONS(522), - [anon_sym_utf] = ACTIONS(522), - [anon_sym_send] = ACTIONS(522), - [anon_sym_recv] = ACTIONS(522), - [anon_sym_tryrecv] = ACTIONS(522), - [anon_sym_complex] = ACTIONS(522), - [anon_sym_59] = ACTIONS(522), - [anon_sym_rerank] = ACTIONS(522), - [anon_sym_60] = ACTIONS(522), - [anon_sym_fix] = ACTIONS(522), - [anon_sym_61] = ACTIONS(522), - [anon_sym_reduce] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_scan] = ACTIONS(522), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_each] = ACTIONS(522), - [anon_sym_62] = ACTIONS(522), - [anon_sym_rows] = ACTIONS(522), - [anon_sym_63] = ACTIONS(522), - [anon_sym_repeat] = ACTIONS(522), - [anon_sym_64] = ACTIONS(522), - [anon_sym_dip] = ACTIONS(522), - [anon_sym_65] = ACTIONS(522), - [anon_sym_gap] = ACTIONS(522), - [anon_sym_66] = ACTIONS(522), - [anon_sym_invert] = ACTIONS(522), - [anon_sym_67] = ACTIONS(522), - [anon_sym_spawn] = ACTIONS(522), - [anon_sym_pack] = ACTIONS(522), - [anon_sym_68] = ACTIONS(522), - [anon_sym_rectify] = ACTIONS(522), - [anon_sym_69] = ACTIONS(522), - [anon_sym_this] = ACTIONS(522), - [anon_sym_70] = ACTIONS(522), - [anon_sym_recur] = ACTIONS(522), - [anon_sym_71] = ACTIONS(522), - [anon_sym_fold] = ACTIONS(522), - [anon_sym_72] = ACTIONS(522), - [anon_sym_table] = ACTIONS(522), - [anon_sym_73] = ACTIONS(522), - [anon_sym_cross] = ACTIONS(522), - [anon_sym_74] = ACTIONS(522), - [anon_sym_group] = ACTIONS(522), - [anon_sym_75] = ACTIONS(522), - [anon_sym_partition] = ACTIONS(522), - [anon_sym_76] = ACTIONS(522), - [anon_sym_both] = ACTIONS(522), - [anon_sym_77] = ACTIONS(522), - [anon_sym_bracket] = ACTIONS(522), - [anon_sym_78] = ACTIONS(522), - [anon_sym_fork] = ACTIONS(522), - [anon_sym_79] = ACTIONS(522), - [anon_sym_under] = ACTIONS(522), - [anon_sym_80] = ACTIONS(522), - [anon_sym_fill] = ACTIONS(522), - [anon_sym_81] = ACTIONS(522), - [anon_sym_try] = ACTIONS(520), - [anon_sym_82] = ACTIONS(522), - [anon_sym_do] = ACTIONS(520), - [anon_sym_83] = ACTIONS(522), - [anon_sym_all] = ACTIONS(522), - [anon_sym_84] = ACTIONS(522), - [anon_sym_setinv] = ACTIONS(522), - [anon_sym_setunder] = ACTIONS(522), - [anon_sym_85] = ACTIONS(522), - [anon_sym_86] = ACTIONS(522), - [anon_sym_87] = ACTIONS(522), - [anon_sym_88] = ACTIONS(522), - [anon_sym_89] = ACTIONS(522), - [anon_sym_90] = ACTIONS(522), - [anon_sym_91] = ACTIONS(522), - [anon_sym_92] = ACTIONS(522), - [anon_sym_93] = ACTIONS(522), - [anon_sym_94] = ACTIONS(522), - [anon_sym_95] = ACTIONS(522), - [anon_sym_96] = ACTIONS(522), - [sym__endOfLine] = ACTIONS(522), - }, - [107] = { + [95] = { [aux_sym_number_token1] = ACTIONS(528), [sym_fraction] = ACTIONS(530), [anon_sym_os] = ACTIONS(528), @@ -33055,6 +30172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_closeBracket] = ACTIONS(530), [sym_underscore] = ACTIONS(530), [anon_sym_CARET] = ACTIONS(530), + [anon_sym_SQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(530), [anon_sym_eta] = ACTIONS(530), [anon_sym_2] = ACTIONS(528), [anon_sym_pi] = ACTIONS(528), @@ -33200,6 +30319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(530), [anon_sym_fix] = ACTIONS(530), [anon_sym_61] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), [anon_sym_reduce] = ACTIONS(530), [anon_sym_SLASH] = ACTIONS(530), [anon_sym_scan] = ACTIONS(530), @@ -33261,728 +30381,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(530), [anon_sym_91] = ACTIONS(530), [anon_sym_92] = ACTIONS(530), - [anon_sym_93] = ACTIONS(530), - [anon_sym_94] = ACTIONS(530), - [anon_sym_95] = ACTIONS(530), - [anon_sym_96] = ACTIONS(530), [sym__endOfLine] = ACTIONS(530), }, - [108] = { - [sym_inlineFunction] = STATE(133), - [sym_function] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(432), - [aux_sym_number_token1] = ACTIONS(430), - [sym_fraction] = ACTIONS(432), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [anon_sym_NUmProcs] = ACTIONS(430), - [anon_sym_] = ACTIONS(432), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), + [96] = { + [aux_sym_number_token1] = ACTIONS(532), + [sym_fraction] = ACTIONS(534), + [anon_sym_os] = ACTIONS(532), + [anon_sym_Family] = ACTIONS(532), + [anon_sym_Arch] = ACTIONS(532), + [anon_sym_ExeExt] = ACTIONS(532), + [anon_sym_PllExt] = ACTIONS(532), + [anon_sym_Sep] = ACTIONS(532), + [anon_sym_NUmProcs] = ACTIONS(532), + [anon_sym_] = ACTIONS(534), + [aux_sym_character_token1] = ACTIONS(534), + [sym_string] = ACTIONS(534), + [sym_multiLineString] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(534), [sym_identifier] = ACTIONS(532), - [sym_identifierDeprecated] = ACTIONS(430), + [sym_identifierDeprecated] = ACTIONS(532), [sym_system] = ACTIONS(534), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(536), - [sym_openCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_2] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_3] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_4] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_62] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_63] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_67] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_68] = ACTIONS(432), - [anon_sym_rectify] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_this] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_recur] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_82] = ACTIONS(432), - [anon_sym_do] = ACTIONS(430), - [anon_sym_83] = ACTIONS(432), - [anon_sym_all] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_setinv] = ACTIONS(432), - [anon_sym_setunder] = ACTIONS(432), - [anon_sym_85] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), - [anon_sym_94] = ACTIONS(432), - [anon_sym_95] = ACTIONS(432), - [anon_sym_96] = ACTIONS(432), - [sym__endOfLine] = ACTIONS(432), + [sym_comment] = ACTIONS(532), + [sym_openParen] = ACTIONS(534), + [sym_closeParen] = ACTIONS(534), + [sym_openCurly] = ACTIONS(534), + [sym_closeCurly] = ACTIONS(534), + [sym_openBracket] = ACTIONS(534), + [sym_closeBracket] = ACTIONS(534), + [sym_underscore] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(534), + [anon_sym_eta] = ACTIONS(534), + [anon_sym_2] = ACTIONS(532), + [anon_sym_pi] = ACTIONS(532), + [anon_sym_3] = ACTIONS(532), + [anon_sym_tau] = ACTIONS(534), + [anon_sym_4] = ACTIONS(532), + [anon_sym_infinity] = ACTIONS(534), + [anon_sym_5] = ACTIONS(534), + [anon_sym_e] = ACTIONS(532), + [anon_sym_NaN] = ACTIONS(532), + [anon_sym_NumProcs] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_identity] = ACTIONS(534), + [anon_sym_id] = ACTIONS(532), + [anon_sym_6] = ACTIONS(534), + [anon_sym_not] = ACTIONS(534), + [anon_sym_7] = ACTIONS(534), + [anon_sym_sign] = ACTIONS(534), + [anon_sym_8] = ACTIONS(534), + [anon_sym_BQUOTE] = ACTIONS(534), + [anon_sym_9] = ACTIONS(532), + [anon_sym_absolutevalue] = ACTIONS(534), + [anon_sym_10] = ACTIONS(534), + [anon_sym_sqrt] = ACTIONS(534), + [anon_sym_11] = ACTIONS(534), + [anon_sym_sine] = ACTIONS(534), + [anon_sym_12] = ACTIONS(534), + [anon_sym_floor] = ACTIONS(534), + [anon_sym_13] = ACTIONS(534), + [anon_sym_ceiling] = ACTIONS(534), + [anon_sym_14] = ACTIONS(534), + [anon_sym_round] = ACTIONS(534), + [anon_sym_15] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_16] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_17] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_18] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_19] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_20] = ACTIONS(534), + [anon_sym_modulus] = ACTIONS(534), + [anon_sym_21] = ACTIONS(534), + [anon_sym_power] = ACTIONS(534), + [anon_sym_22] = ACTIONS(534), + [anon_sym_logarithm] = ACTIONS(534), + [anon_sym_23] = ACTIONS(534), + [anon_sym_minimum] = ACTIONS(534), + [anon_sym_24] = ACTIONS(534), + [anon_sym_maximum] = ACTIONS(534), + [anon_sym_25] = ACTIONS(534), + [anon_sym_atangent] = ACTIONS(534), + [anon_sym_26] = ACTIONS(534), + [anon_sym_length] = ACTIONS(534), + [anon_sym_27] = ACTIONS(534), + [anon_sym_shape] = ACTIONS(534), + [anon_sym_28] = ACTIONS(534), + [anon_sym_range] = ACTIONS(534), + [anon_sym_29] = ACTIONS(534), + [anon_sym_first] = ACTIONS(534), + [anon_sym_30] = ACTIONS(534), + [anon_sym_reverse] = ACTIONS(534), + [anon_sym_31] = ACTIONS(534), + [anon_sym_deshape] = ACTIONS(534), + [anon_sym_32] = ACTIONS(534), + [anon_sym_bits] = ACTIONS(534), + [anon_sym_33] = ACTIONS(534), + [anon_sym_transpose] = ACTIONS(534), + [anon_sym_34] = ACTIONS(534), + [anon_sym_rise] = ACTIONS(534), + [anon_sym_35] = ACTIONS(534), + [anon_sym_fall] = ACTIONS(534), + [anon_sym_36] = ACTIONS(534), + [anon_sym_where] = ACTIONS(534), + [anon_sym_37] = ACTIONS(534), + [anon_sym_classify] = ACTIONS(534), + [anon_sym_38] = ACTIONS(534), + [anon_sym_deduplicate] = ACTIONS(534), + [anon_sym_39] = ACTIONS(534), + [anon_sym_box] = ACTIONS(534), + [anon_sym_40] = ACTIONS(534), + [anon_sym_unbox] = ACTIONS(534), + [anon_sym_41] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_42] = ACTIONS(534), + [anon_sym_couple] = ACTIONS(534), + [anon_sym_43] = ACTIONS(534), + [anon_sym_join] = ACTIONS(534), + [anon_sym_44] = ACTIONS(534), + [anon_sym_select] = ACTIONS(534), + [anon_sym_45] = ACTIONS(534), + [anon_sym_pick] = ACTIONS(534), + [anon_sym_46] = ACTIONS(534), + [anon_sym_reshape] = ACTIONS(534), + [anon_sym_47] = ACTIONS(534), + [anon_sym_take] = ACTIONS(534), + [anon_sym_48] = ACTIONS(534), + [anon_sym_drop] = ACTIONS(534), + [anon_sym_49] = ACTIONS(534), + [anon_sym_rotate] = ACTIONS(534), + [anon_sym_50] = ACTIONS(534), + [anon_sym_windows] = ACTIONS(534), + [anon_sym_51] = ACTIONS(534), + [anon_sym_keep] = ACTIONS(534), + [anon_sym_52] = ACTIONS(534), + [anon_sym_find] = ACTIONS(534), + [anon_sym_53] = ACTIONS(534), + [anon_sym_member] = ACTIONS(534), + [anon_sym_54] = ACTIONS(534), + [anon_sym_indexof] = ACTIONS(534), + [anon_sym_55] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(534), + [anon_sym_56] = ACTIONS(534), + [anon_sym_wait] = ACTIONS(534), + [anon_sym_parse] = ACTIONS(534), + [anon_sym_random] = ACTIONS(534), + [anon_sym_57] = ACTIONS(534), + [anon_sym_gen] = ACTIONS(534), + [anon_sym_deal] = ACTIONS(534), + [anon_sym_tag] = ACTIONS(534), + [anon_sym_now] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_58] = ACTIONS(534), + [anon_sym_dump] = ACTIONS(534), + [anon_sym_regex] = ACTIONS(534), + [anon_sym_utf] = ACTIONS(534), + [anon_sym_send] = ACTIONS(534), + [anon_sym_recv] = ACTIONS(534), + [anon_sym_tryrecv] = ACTIONS(534), + [anon_sym_complex] = ACTIONS(534), + [anon_sym_59] = ACTIONS(534), + [anon_sym_rerank] = ACTIONS(534), + [anon_sym_60] = ACTIONS(534), + [anon_sym_fix] = ACTIONS(534), + [anon_sym_61] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_reduce] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_scan] = ACTIONS(534), + [anon_sym_BSLASH] = ACTIONS(534), + [anon_sym_each] = ACTIONS(534), + [anon_sym_62] = ACTIONS(534), + [anon_sym_rows] = ACTIONS(534), + [anon_sym_63] = ACTIONS(534), + [anon_sym_repeat] = ACTIONS(534), + [anon_sym_64] = ACTIONS(534), + [anon_sym_dip] = ACTIONS(534), + [anon_sym_65] = ACTIONS(534), + [anon_sym_gap] = ACTIONS(534), + [anon_sym_66] = ACTIONS(534), + [anon_sym_invert] = ACTIONS(534), + [anon_sym_67] = ACTIONS(534), + [anon_sym_spawn] = ACTIONS(534), + [anon_sym_pack] = ACTIONS(534), + [anon_sym_68] = ACTIONS(534), + [anon_sym_rectify] = ACTIONS(534), + [anon_sym_69] = ACTIONS(534), + [anon_sym_this] = ACTIONS(534), + [anon_sym_70] = ACTIONS(534), + [anon_sym_recur] = ACTIONS(534), + [anon_sym_71] = ACTIONS(534), + [anon_sym_fold] = ACTIONS(534), + [anon_sym_72] = ACTIONS(534), + [anon_sym_table] = ACTIONS(534), + [anon_sym_73] = ACTIONS(534), + [anon_sym_cross] = ACTIONS(534), + [anon_sym_74] = ACTIONS(534), + [anon_sym_group] = ACTIONS(534), + [anon_sym_75] = ACTIONS(534), + [anon_sym_partition] = ACTIONS(534), + [anon_sym_76] = ACTIONS(534), + [anon_sym_both] = ACTIONS(534), + [anon_sym_77] = ACTIONS(534), + [anon_sym_bracket] = ACTIONS(534), + [anon_sym_78] = ACTIONS(534), + [anon_sym_fork] = ACTIONS(534), + [anon_sym_79] = ACTIONS(534), + [anon_sym_under] = ACTIONS(534), + [anon_sym_80] = ACTIONS(534), + [anon_sym_fill] = ACTIONS(534), + [anon_sym_81] = ACTIONS(534), + [anon_sym_try] = ACTIONS(532), + [anon_sym_82] = ACTIONS(534), + [anon_sym_do] = ACTIONS(532), + [anon_sym_83] = ACTIONS(534), + [anon_sym_all] = ACTIONS(534), + [anon_sym_84] = ACTIONS(534), + [anon_sym_setinv] = ACTIONS(534), + [anon_sym_setunder] = ACTIONS(534), + [anon_sym_85] = ACTIONS(534), + [anon_sym_86] = ACTIONS(534), + [anon_sym_87] = ACTIONS(534), + [anon_sym_88] = ACTIONS(534), + [anon_sym_89] = ACTIONS(534), + [anon_sym_90] = ACTIONS(534), + [anon_sym_91] = ACTIONS(534), + [anon_sym_92] = ACTIONS(534), + [sym__endOfLine] = ACTIONS(534), }, - [109] = { - [sym_inlineFunction] = STATE(108), - [sym_function] = STATE(108), - [ts_builtin_sym_end] = ACTIONS(442), - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [sym_identifier] = ACTIONS(538), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(540), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(536), - [sym_openCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), + [97] = { + [aux_sym_number_token1] = ACTIONS(536), + [sym_fraction] = ACTIONS(538), + [anon_sym_os] = ACTIONS(536), + [anon_sym_Family] = ACTIONS(536), + [anon_sym_Arch] = ACTIONS(536), + [anon_sym_ExeExt] = ACTIONS(536), + [anon_sym_PllExt] = ACTIONS(536), + [anon_sym_Sep] = ACTIONS(536), + [anon_sym_NUmProcs] = ACTIONS(536), + [anon_sym_] = ACTIONS(538), + [aux_sym_character_token1] = ACTIONS(538), + [sym_string] = ACTIONS(538), + [sym_multiLineString] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [sym_identifier] = ACTIONS(536), + [sym_identifierDeprecated] = ACTIONS(536), + [sym_system] = ACTIONS(538), + [sym_comment] = ACTIONS(536), + [sym_openParen] = ACTIONS(538), + [sym_closeParen] = ACTIONS(538), + [sym_openCurly] = ACTIONS(538), + [sym_closeCurly] = ACTIONS(538), + [sym_openBracket] = ACTIONS(538), + [sym_closeBracket] = ACTIONS(538), + [sym_underscore] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_eta] = ACTIONS(538), + [anon_sym_2] = ACTIONS(536), + [anon_sym_pi] = ACTIONS(536), + [anon_sym_3] = ACTIONS(536), + [anon_sym_tau] = ACTIONS(538), + [anon_sym_4] = ACTIONS(536), + [anon_sym_infinity] = ACTIONS(538), + [anon_sym_5] = ACTIONS(538), + [anon_sym_e] = ACTIONS(536), + [anon_sym_NaN] = ACTIONS(536), + [anon_sym_NumProcs] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_identity] = ACTIONS(538), + [anon_sym_id] = ACTIONS(536), + [anon_sym_6] = ACTIONS(538), + [anon_sym_not] = ACTIONS(538), + [anon_sym_7] = ACTIONS(538), + [anon_sym_sign] = ACTIONS(538), + [anon_sym_8] = ACTIONS(538), + [anon_sym_BQUOTE] = ACTIONS(538), + [anon_sym_9] = ACTIONS(536), + [anon_sym_absolutevalue] = ACTIONS(538), + [anon_sym_10] = ACTIONS(538), + [anon_sym_sqrt] = ACTIONS(538), + [anon_sym_11] = ACTIONS(538), + [anon_sym_sine] = ACTIONS(538), + [anon_sym_12] = ACTIONS(538), + [anon_sym_floor] = ACTIONS(538), + [anon_sym_13] = ACTIONS(538), + [anon_sym_ceiling] = ACTIONS(538), + [anon_sym_14] = ACTIONS(538), + [anon_sym_round] = ACTIONS(538), + [anon_sym_15] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_16] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_17] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_18] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_19] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_20] = ACTIONS(538), + [anon_sym_modulus] = ACTIONS(538), + [anon_sym_21] = ACTIONS(538), + [anon_sym_power] = ACTIONS(538), + [anon_sym_22] = ACTIONS(538), + [anon_sym_logarithm] = ACTIONS(538), + [anon_sym_23] = ACTIONS(538), + [anon_sym_minimum] = ACTIONS(538), + [anon_sym_24] = ACTIONS(538), + [anon_sym_maximum] = ACTIONS(538), + [anon_sym_25] = ACTIONS(538), + [anon_sym_atangent] = ACTIONS(538), + [anon_sym_26] = ACTIONS(538), + [anon_sym_length] = ACTIONS(538), + [anon_sym_27] = ACTIONS(538), + [anon_sym_shape] = ACTIONS(538), + [anon_sym_28] = ACTIONS(538), + [anon_sym_range] = ACTIONS(538), + [anon_sym_29] = ACTIONS(538), + [anon_sym_first] = ACTIONS(538), + [anon_sym_30] = ACTIONS(538), + [anon_sym_reverse] = ACTIONS(538), + [anon_sym_31] = ACTIONS(538), + [anon_sym_deshape] = ACTIONS(538), + [anon_sym_32] = ACTIONS(538), + [anon_sym_bits] = ACTIONS(538), + [anon_sym_33] = ACTIONS(538), + [anon_sym_transpose] = ACTIONS(538), + [anon_sym_34] = ACTIONS(538), + [anon_sym_rise] = ACTIONS(538), + [anon_sym_35] = ACTIONS(538), + [anon_sym_fall] = ACTIONS(538), + [anon_sym_36] = ACTIONS(538), + [anon_sym_where] = ACTIONS(538), + [anon_sym_37] = ACTIONS(538), + [anon_sym_classify] = ACTIONS(538), + [anon_sym_38] = ACTIONS(538), + [anon_sym_deduplicate] = ACTIONS(538), + [anon_sym_39] = ACTIONS(538), + [anon_sym_box] = ACTIONS(538), + [anon_sym_40] = ACTIONS(538), + [anon_sym_unbox] = ACTIONS(538), + [anon_sym_41] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_42] = ACTIONS(538), + [anon_sym_couple] = ACTIONS(538), + [anon_sym_43] = ACTIONS(538), + [anon_sym_join] = ACTIONS(538), + [anon_sym_44] = ACTIONS(538), + [anon_sym_select] = ACTIONS(538), + [anon_sym_45] = ACTIONS(538), + [anon_sym_pick] = ACTIONS(538), + [anon_sym_46] = ACTIONS(538), + [anon_sym_reshape] = ACTIONS(538), + [anon_sym_47] = ACTIONS(538), + [anon_sym_take] = ACTIONS(538), + [anon_sym_48] = ACTIONS(538), + [anon_sym_drop] = ACTIONS(538), + [anon_sym_49] = ACTIONS(538), + [anon_sym_rotate] = ACTIONS(538), + [anon_sym_50] = ACTIONS(538), + [anon_sym_windows] = ACTIONS(538), + [anon_sym_51] = ACTIONS(538), + [anon_sym_keep] = ACTIONS(538), + [anon_sym_52] = ACTIONS(538), + [anon_sym_find] = ACTIONS(538), + [anon_sym_53] = ACTIONS(538), + [anon_sym_member] = ACTIONS(538), + [anon_sym_54] = ACTIONS(538), + [anon_sym_indexof] = ACTIONS(538), + [anon_sym_55] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(538), + [anon_sym_56] = ACTIONS(538), + [anon_sym_wait] = ACTIONS(538), + [anon_sym_parse] = ACTIONS(538), + [anon_sym_random] = ACTIONS(538), + [anon_sym_57] = ACTIONS(538), + [anon_sym_gen] = ACTIONS(538), + [anon_sym_deal] = ACTIONS(538), + [anon_sym_tag] = ACTIONS(538), + [anon_sym_now] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_58] = ACTIONS(538), + [anon_sym_dump] = ACTIONS(538), + [anon_sym_regex] = ACTIONS(538), + [anon_sym_utf] = ACTIONS(538), + [anon_sym_send] = ACTIONS(538), + [anon_sym_recv] = ACTIONS(538), + [anon_sym_tryrecv] = ACTIONS(538), + [anon_sym_complex] = ACTIONS(538), + [anon_sym_59] = ACTIONS(538), + [anon_sym_rerank] = ACTIONS(538), + [anon_sym_60] = ACTIONS(538), + [anon_sym_fix] = ACTIONS(538), + [anon_sym_61] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(538), + [anon_sym_reduce] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_scan] = ACTIONS(538), + [anon_sym_BSLASH] = ACTIONS(538), + [anon_sym_each] = ACTIONS(538), + [anon_sym_62] = ACTIONS(538), + [anon_sym_rows] = ACTIONS(538), + [anon_sym_63] = ACTIONS(538), + [anon_sym_repeat] = ACTIONS(538), + [anon_sym_64] = ACTIONS(538), + [anon_sym_dip] = ACTIONS(538), + [anon_sym_65] = ACTIONS(538), + [anon_sym_gap] = ACTIONS(538), + [anon_sym_66] = ACTIONS(538), + [anon_sym_invert] = ACTIONS(538), + [anon_sym_67] = ACTIONS(538), + [anon_sym_spawn] = ACTIONS(538), + [anon_sym_pack] = ACTIONS(538), + [anon_sym_68] = ACTIONS(538), + [anon_sym_rectify] = ACTIONS(538), + [anon_sym_69] = ACTIONS(538), + [anon_sym_this] = ACTIONS(538), + [anon_sym_70] = ACTIONS(538), + [anon_sym_recur] = ACTIONS(538), + [anon_sym_71] = ACTIONS(538), + [anon_sym_fold] = ACTIONS(538), + [anon_sym_72] = ACTIONS(538), + [anon_sym_table] = ACTIONS(538), + [anon_sym_73] = ACTIONS(538), + [anon_sym_cross] = ACTIONS(538), + [anon_sym_74] = ACTIONS(538), + [anon_sym_group] = ACTIONS(538), + [anon_sym_75] = ACTIONS(538), + [anon_sym_partition] = ACTIONS(538), + [anon_sym_76] = ACTIONS(538), + [anon_sym_both] = ACTIONS(538), + [anon_sym_77] = ACTIONS(538), + [anon_sym_bracket] = ACTIONS(538), + [anon_sym_78] = ACTIONS(538), + [anon_sym_fork] = ACTIONS(538), + [anon_sym_79] = ACTIONS(538), + [anon_sym_under] = ACTIONS(538), + [anon_sym_80] = ACTIONS(538), + [anon_sym_fill] = ACTIONS(538), + [anon_sym_81] = ACTIONS(538), + [anon_sym_try] = ACTIONS(536), + [anon_sym_82] = ACTIONS(538), + [anon_sym_do] = ACTIONS(536), + [anon_sym_83] = ACTIONS(538), + [anon_sym_all] = ACTIONS(538), + [anon_sym_84] = ACTIONS(538), + [anon_sym_setinv] = ACTIONS(538), + [anon_sym_setunder] = ACTIONS(538), + [anon_sym_85] = ACTIONS(538), + [anon_sym_86] = ACTIONS(538), + [anon_sym_87] = ACTIONS(538), + [anon_sym_88] = ACTIONS(538), + [anon_sym_89] = ACTIONS(538), + [anon_sym_90] = ACTIONS(538), + [anon_sym_91] = ACTIONS(538), + [anon_sym_92] = ACTIONS(538), + [sym__endOfLine] = ACTIONS(538), }, - [110] = { - [sym_inlineFunction] = STATE(129), - [sym_function] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(442), - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [sym_identifier] = ACTIONS(542), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(544), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(536), - [sym_openCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(39), - [anon_sym_COLON] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_identity] = ACTIONS(39), - [anon_sym_id] = ACTIONS(41), - [anon_sym_6] = ACTIONS(39), - [anon_sym_not] = ACTIONS(39), - [anon_sym_7] = ACTIONS(39), - [anon_sym_sign] = ACTIONS(39), - [anon_sym_8] = ACTIONS(39), - [anon_sym_BQUOTE] = ACTIONS(39), - [anon_sym_9] = ACTIONS(41), - [anon_sym_absolutevalue] = ACTIONS(39), - [anon_sym_10] = ACTIONS(39), - [anon_sym_sqrt] = ACTIONS(39), - [anon_sym_11] = ACTIONS(39), - [anon_sym_sine] = ACTIONS(39), - [anon_sym_12] = ACTIONS(39), - [anon_sym_floor] = ACTIONS(39), - [anon_sym_13] = ACTIONS(39), - [anon_sym_ceiling] = ACTIONS(39), - [anon_sym_14] = ACTIONS(39), - [anon_sym_round] = ACTIONS(39), - [anon_sym_15] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_16] = ACTIONS(39), - [anon_sym_LT] = ACTIONS(41), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_17] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(41), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_18] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_19] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(39), - [anon_sym_20] = ACTIONS(39), - [anon_sym_modulus] = ACTIONS(39), - [anon_sym_21] = ACTIONS(39), - [anon_sym_power] = ACTIONS(39), - [anon_sym_22] = ACTIONS(39), - [anon_sym_logarithm] = ACTIONS(39), - [anon_sym_23] = ACTIONS(39), - [anon_sym_minimum] = ACTIONS(39), - [anon_sym_24] = ACTIONS(39), - [anon_sym_maximum] = ACTIONS(39), - [anon_sym_25] = ACTIONS(39), - [anon_sym_atangent] = ACTIONS(39), - [anon_sym_26] = ACTIONS(39), - [anon_sym_length] = ACTIONS(39), - [anon_sym_27] = ACTIONS(39), - [anon_sym_shape] = ACTIONS(39), - [anon_sym_28] = ACTIONS(39), - [anon_sym_range] = ACTIONS(39), - [anon_sym_29] = ACTIONS(39), - [anon_sym_first] = ACTIONS(39), - [anon_sym_30] = ACTIONS(39), - [anon_sym_reverse] = ACTIONS(39), - [anon_sym_31] = ACTIONS(39), - [anon_sym_deshape] = ACTIONS(39), - [anon_sym_32] = ACTIONS(39), - [anon_sym_bits] = ACTIONS(39), - [anon_sym_33] = ACTIONS(39), - [anon_sym_transpose] = ACTIONS(39), - [anon_sym_34] = ACTIONS(39), - [anon_sym_rise] = ACTIONS(39), - [anon_sym_35] = ACTIONS(39), - [anon_sym_fall] = ACTIONS(39), - [anon_sym_36] = ACTIONS(39), - [anon_sym_where] = ACTIONS(39), - [anon_sym_37] = ACTIONS(39), - [anon_sym_classify] = ACTIONS(39), - [anon_sym_38] = ACTIONS(39), - [anon_sym_deduplicate] = ACTIONS(39), - [anon_sym_39] = ACTIONS(39), - [anon_sym_box] = ACTIONS(39), - [anon_sym_40] = ACTIONS(39), - [anon_sym_unbox] = ACTIONS(39), - [anon_sym_41] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_42] = ACTIONS(39), - [anon_sym_couple] = ACTIONS(39), - [anon_sym_43] = ACTIONS(39), - [anon_sym_join] = ACTIONS(39), - [anon_sym_44] = ACTIONS(39), - [anon_sym_select] = ACTIONS(39), - [anon_sym_45] = ACTIONS(39), - [anon_sym_pick] = ACTIONS(39), - [anon_sym_46] = ACTIONS(39), - [anon_sym_reshape] = ACTIONS(39), - [anon_sym_47] = ACTIONS(39), - [anon_sym_take] = ACTIONS(39), - [anon_sym_48] = ACTIONS(39), - [anon_sym_drop] = ACTIONS(39), - [anon_sym_49] = ACTIONS(39), - [anon_sym_rotate] = ACTIONS(39), - [anon_sym_50] = ACTIONS(39), - [anon_sym_windows] = ACTIONS(39), - [anon_sym_51] = ACTIONS(39), - [anon_sym_keep] = ACTIONS(39), - [anon_sym_52] = ACTIONS(39), - [anon_sym_find] = ACTIONS(39), - [anon_sym_53] = ACTIONS(39), - [anon_sym_member] = ACTIONS(39), - [anon_sym_54] = ACTIONS(39), - [anon_sym_indexof] = ACTIONS(39), - [anon_sym_55] = ACTIONS(39), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_56] = ACTIONS(39), - [anon_sym_wait] = ACTIONS(39), - [anon_sym_parse] = ACTIONS(39), - [anon_sym_random] = ACTIONS(39), - [anon_sym_57] = ACTIONS(39), - [anon_sym_gen] = ACTIONS(39), - [anon_sym_deal] = ACTIONS(39), - [anon_sym_tag] = ACTIONS(39), - [anon_sym_now] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_58] = ACTIONS(39), - [anon_sym_dump] = ACTIONS(39), - [anon_sym_regex] = ACTIONS(39), - [anon_sym_utf] = ACTIONS(39), - [anon_sym_send] = ACTIONS(39), - [anon_sym_recv] = ACTIONS(39), - [anon_sym_tryrecv] = ACTIONS(39), - [anon_sym_complex] = ACTIONS(39), - [anon_sym_59] = ACTIONS(39), - [anon_sym_rerank] = ACTIONS(39), - [anon_sym_60] = ACTIONS(39), - [anon_sym_fix] = ACTIONS(39), - [anon_sym_61] = ACTIONS(39), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), + [98] = { + [aux_sym_number_token1] = ACTIONS(540), + [sym_fraction] = ACTIONS(542), + [anon_sym_os] = ACTIONS(540), + [anon_sym_Family] = ACTIONS(540), + [anon_sym_Arch] = ACTIONS(540), + [anon_sym_ExeExt] = ACTIONS(540), + [anon_sym_PllExt] = ACTIONS(540), + [anon_sym_Sep] = ACTIONS(540), + [anon_sym_NUmProcs] = ACTIONS(540), + [anon_sym_] = ACTIONS(542), + [aux_sym_character_token1] = ACTIONS(542), + [sym_string] = ACTIONS(542), + [sym_multiLineString] = ACTIONS(542), + [anon_sym_PIPE] = ACTIONS(542), + [sym_identifier] = ACTIONS(540), + [sym_identifierDeprecated] = ACTIONS(540), + [sym_system] = ACTIONS(542), + [sym_comment] = ACTIONS(540), + [sym_openParen] = ACTIONS(542), + [sym_closeParen] = ACTIONS(542), + [sym_openCurly] = ACTIONS(542), + [sym_closeCurly] = ACTIONS(542), + [sym_openBracket] = ACTIONS(542), + [sym_closeBracket] = ACTIONS(542), + [sym_underscore] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(542), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(542), + [anon_sym_eta] = ACTIONS(542), + [anon_sym_2] = ACTIONS(540), + [anon_sym_pi] = ACTIONS(540), + [anon_sym_3] = ACTIONS(540), + [anon_sym_tau] = ACTIONS(542), + [anon_sym_4] = ACTIONS(540), + [anon_sym_infinity] = ACTIONS(542), + [anon_sym_5] = ACTIONS(542), + [anon_sym_e] = ACTIONS(540), + [anon_sym_NaN] = ACTIONS(540), + [anon_sym_NumProcs] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_identity] = ACTIONS(542), + [anon_sym_id] = ACTIONS(540), + [anon_sym_6] = ACTIONS(542), + [anon_sym_not] = ACTIONS(542), + [anon_sym_7] = ACTIONS(542), + [anon_sym_sign] = ACTIONS(542), + [anon_sym_8] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_9] = ACTIONS(540), + [anon_sym_absolutevalue] = ACTIONS(542), + [anon_sym_10] = ACTIONS(542), + [anon_sym_sqrt] = ACTIONS(542), + [anon_sym_11] = ACTIONS(542), + [anon_sym_sine] = ACTIONS(542), + [anon_sym_12] = ACTIONS(542), + [anon_sym_floor] = ACTIONS(542), + [anon_sym_13] = ACTIONS(542), + [anon_sym_ceiling] = ACTIONS(542), + [anon_sym_14] = ACTIONS(542), + [anon_sym_round] = ACTIONS(542), + [anon_sym_15] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_16] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(542), + [anon_sym_17] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(542), + [anon_sym_18] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_19] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_20] = ACTIONS(542), + [anon_sym_modulus] = ACTIONS(542), + [anon_sym_21] = ACTIONS(542), + [anon_sym_power] = ACTIONS(542), + [anon_sym_22] = ACTIONS(542), + [anon_sym_logarithm] = ACTIONS(542), + [anon_sym_23] = ACTIONS(542), + [anon_sym_minimum] = ACTIONS(542), + [anon_sym_24] = ACTIONS(542), + [anon_sym_maximum] = ACTIONS(542), + [anon_sym_25] = ACTIONS(542), + [anon_sym_atangent] = ACTIONS(542), + [anon_sym_26] = ACTIONS(542), + [anon_sym_length] = ACTIONS(542), + [anon_sym_27] = ACTIONS(542), + [anon_sym_shape] = ACTIONS(542), + [anon_sym_28] = ACTIONS(542), + [anon_sym_range] = ACTIONS(542), + [anon_sym_29] = ACTIONS(542), + [anon_sym_first] = ACTIONS(542), + [anon_sym_30] = ACTIONS(542), + [anon_sym_reverse] = ACTIONS(542), + [anon_sym_31] = ACTIONS(542), + [anon_sym_deshape] = ACTIONS(542), + [anon_sym_32] = ACTIONS(542), + [anon_sym_bits] = ACTIONS(542), + [anon_sym_33] = ACTIONS(542), + [anon_sym_transpose] = ACTIONS(542), + [anon_sym_34] = ACTIONS(542), + [anon_sym_rise] = ACTIONS(542), + [anon_sym_35] = ACTIONS(542), + [anon_sym_fall] = ACTIONS(542), + [anon_sym_36] = ACTIONS(542), + [anon_sym_where] = ACTIONS(542), + [anon_sym_37] = ACTIONS(542), + [anon_sym_classify] = ACTIONS(542), + [anon_sym_38] = ACTIONS(542), + [anon_sym_deduplicate] = ACTIONS(542), + [anon_sym_39] = ACTIONS(542), + [anon_sym_box] = ACTIONS(542), + [anon_sym_40] = ACTIONS(542), + [anon_sym_unbox] = ACTIONS(542), + [anon_sym_41] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_42] = ACTIONS(542), + [anon_sym_couple] = ACTIONS(542), + [anon_sym_43] = ACTIONS(542), + [anon_sym_join] = ACTIONS(542), + [anon_sym_44] = ACTIONS(542), + [anon_sym_select] = ACTIONS(542), + [anon_sym_45] = ACTIONS(542), + [anon_sym_pick] = ACTIONS(542), + [anon_sym_46] = ACTIONS(542), + [anon_sym_reshape] = ACTIONS(542), + [anon_sym_47] = ACTIONS(542), + [anon_sym_take] = ACTIONS(542), + [anon_sym_48] = ACTIONS(542), + [anon_sym_drop] = ACTIONS(542), + [anon_sym_49] = ACTIONS(542), + [anon_sym_rotate] = ACTIONS(542), + [anon_sym_50] = ACTIONS(542), + [anon_sym_windows] = ACTIONS(542), + [anon_sym_51] = ACTIONS(542), + [anon_sym_keep] = ACTIONS(542), + [anon_sym_52] = ACTIONS(542), + [anon_sym_find] = ACTIONS(542), + [anon_sym_53] = ACTIONS(542), + [anon_sym_member] = ACTIONS(542), + [anon_sym_54] = ACTIONS(542), + [anon_sym_indexof] = ACTIONS(542), + [anon_sym_55] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_56] = ACTIONS(542), + [anon_sym_wait] = ACTIONS(542), + [anon_sym_parse] = ACTIONS(542), + [anon_sym_random] = ACTIONS(542), + [anon_sym_57] = ACTIONS(542), + [anon_sym_gen] = ACTIONS(542), + [anon_sym_deal] = ACTIONS(542), + [anon_sym_tag] = ACTIONS(542), + [anon_sym_now] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_58] = ACTIONS(542), + [anon_sym_dump] = ACTIONS(542), + [anon_sym_regex] = ACTIONS(542), + [anon_sym_utf] = ACTIONS(542), + [anon_sym_send] = ACTIONS(542), + [anon_sym_recv] = ACTIONS(542), + [anon_sym_tryrecv] = ACTIONS(542), + [anon_sym_complex] = ACTIONS(542), + [anon_sym_59] = ACTIONS(542), + [anon_sym_rerank] = ACTIONS(542), + [anon_sym_60] = ACTIONS(542), + [anon_sym_fix] = ACTIONS(542), + [anon_sym_61] = ACTIONS(542), + [anon_sym_QMARK] = ACTIONS(542), + [anon_sym_reduce] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_scan] = ACTIONS(542), + [anon_sym_BSLASH] = ACTIONS(542), + [anon_sym_each] = ACTIONS(542), + [anon_sym_62] = ACTIONS(542), + [anon_sym_rows] = ACTIONS(542), + [anon_sym_63] = ACTIONS(542), + [anon_sym_repeat] = ACTIONS(542), + [anon_sym_64] = ACTIONS(542), + [anon_sym_dip] = ACTIONS(542), + [anon_sym_65] = ACTIONS(542), + [anon_sym_gap] = ACTIONS(542), + [anon_sym_66] = ACTIONS(542), + [anon_sym_invert] = ACTIONS(542), + [anon_sym_67] = ACTIONS(542), + [anon_sym_spawn] = ACTIONS(542), + [anon_sym_pack] = ACTIONS(542), + [anon_sym_68] = ACTIONS(542), + [anon_sym_rectify] = ACTIONS(542), + [anon_sym_69] = ACTIONS(542), + [anon_sym_this] = ACTIONS(542), + [anon_sym_70] = ACTIONS(542), + [anon_sym_recur] = ACTIONS(542), + [anon_sym_71] = ACTIONS(542), + [anon_sym_fold] = ACTIONS(542), + [anon_sym_72] = ACTIONS(542), + [anon_sym_table] = ACTIONS(542), + [anon_sym_73] = ACTIONS(542), + [anon_sym_cross] = ACTIONS(542), + [anon_sym_74] = ACTIONS(542), + [anon_sym_group] = ACTIONS(542), + [anon_sym_75] = ACTIONS(542), + [anon_sym_partition] = ACTIONS(542), + [anon_sym_76] = ACTIONS(542), + [anon_sym_both] = ACTIONS(542), + [anon_sym_77] = ACTIONS(542), + [anon_sym_bracket] = ACTIONS(542), + [anon_sym_78] = ACTIONS(542), + [anon_sym_fork] = ACTIONS(542), + [anon_sym_79] = ACTIONS(542), + [anon_sym_under] = ACTIONS(542), + [anon_sym_80] = ACTIONS(542), + [anon_sym_fill] = ACTIONS(542), + [anon_sym_81] = ACTIONS(542), + [anon_sym_try] = ACTIONS(540), + [anon_sym_82] = ACTIONS(542), + [anon_sym_do] = ACTIONS(540), + [anon_sym_83] = ACTIONS(542), + [anon_sym_all] = ACTIONS(542), + [anon_sym_84] = ACTIONS(542), + [anon_sym_setinv] = ACTIONS(542), + [anon_sym_setunder] = ACTIONS(542), + [anon_sym_85] = ACTIONS(542), + [anon_sym_86] = ACTIONS(542), + [anon_sym_87] = ACTIONS(542), + [anon_sym_88] = ACTIONS(542), + [anon_sym_89] = ACTIONS(542), + [anon_sym_90] = ACTIONS(542), + [anon_sym_91] = ACTIONS(542), + [anon_sym_92] = ACTIONS(542), + [sym__endOfLine] = ACTIONS(542), }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(546), + [99] = { + [aux_sym_number_token1] = ACTIONS(544), + [sym_fraction] = ACTIONS(546), + [anon_sym_os] = ACTIONS(544), + [anon_sym_Family] = ACTIONS(544), + [anon_sym_Arch] = ACTIONS(544), + [anon_sym_ExeExt] = ACTIONS(544), + [anon_sym_PllExt] = ACTIONS(544), + [anon_sym_Sep] = ACTIONS(544), + [anon_sym_NUmProcs] = ACTIONS(544), + [anon_sym_] = ACTIONS(546), + [aux_sym_character_token1] = ACTIONS(546), + [sym_string] = ACTIONS(546), + [sym_multiLineString] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [sym_identifier] = ACTIONS(544), + [sym_identifierDeprecated] = ACTIONS(544), + [sym_system] = ACTIONS(546), + [sym_comment] = ACTIONS(544), + [sym_openParen] = ACTIONS(546), + [sym_closeParen] = ACTIONS(546), + [sym_openCurly] = ACTIONS(546), + [sym_closeCurly] = ACTIONS(546), + [sym_openBracket] = ACTIONS(546), + [sym_closeBracket] = ACTIONS(546), + [sym_underscore] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(544), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(546), + [anon_sym_eta] = ACTIONS(546), + [anon_sym_2] = ACTIONS(544), + [anon_sym_pi] = ACTIONS(544), + [anon_sym_3] = ACTIONS(544), + [anon_sym_tau] = ACTIONS(546), + [anon_sym_4] = ACTIONS(544), + [anon_sym_infinity] = ACTIONS(546), + [anon_sym_5] = ACTIONS(546), + [anon_sym_e] = ACTIONS(544), + [anon_sym_NaN] = ACTIONS(544), + [anon_sym_NumProcs] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_identity] = ACTIONS(546), + [anon_sym_id] = ACTIONS(544), + [anon_sym_6] = ACTIONS(546), + [anon_sym_not] = ACTIONS(546), + [anon_sym_7] = ACTIONS(546), + [anon_sym_sign] = ACTIONS(546), + [anon_sym_8] = ACTIONS(546), + [anon_sym_BQUOTE] = ACTIONS(546), + [anon_sym_9] = ACTIONS(544), + [anon_sym_absolutevalue] = ACTIONS(546), + [anon_sym_10] = ACTIONS(546), + [anon_sym_sqrt] = ACTIONS(546), + [anon_sym_11] = ACTIONS(546), + [anon_sym_sine] = ACTIONS(546), + [anon_sym_12] = ACTIONS(546), + [anon_sym_floor] = ACTIONS(546), + [anon_sym_13] = ACTIONS(546), + [anon_sym_ceiling] = ACTIONS(546), + [anon_sym_14] = ACTIONS(546), + [anon_sym_round] = ACTIONS(546), + [anon_sym_15] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_16] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_17] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_18] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_19] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_20] = ACTIONS(546), + [anon_sym_modulus] = ACTIONS(546), + [anon_sym_21] = ACTIONS(546), + [anon_sym_power] = ACTIONS(546), + [anon_sym_22] = ACTIONS(546), + [anon_sym_logarithm] = ACTIONS(546), + [anon_sym_23] = ACTIONS(546), + [anon_sym_minimum] = ACTIONS(546), + [anon_sym_24] = ACTIONS(546), + [anon_sym_maximum] = ACTIONS(546), + [anon_sym_25] = ACTIONS(546), + [anon_sym_atangent] = ACTIONS(546), + [anon_sym_26] = ACTIONS(546), + [anon_sym_length] = ACTIONS(546), + [anon_sym_27] = ACTIONS(546), + [anon_sym_shape] = ACTIONS(546), + [anon_sym_28] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_29] = ACTIONS(546), + [anon_sym_first] = ACTIONS(546), + [anon_sym_30] = ACTIONS(546), + [anon_sym_reverse] = ACTIONS(546), + [anon_sym_31] = ACTIONS(546), + [anon_sym_deshape] = ACTIONS(546), + [anon_sym_32] = ACTIONS(546), + [anon_sym_bits] = ACTIONS(546), + [anon_sym_33] = ACTIONS(546), + [anon_sym_transpose] = ACTIONS(546), + [anon_sym_34] = ACTIONS(546), + [anon_sym_rise] = ACTIONS(546), + [anon_sym_35] = ACTIONS(546), + [anon_sym_fall] = ACTIONS(546), + [anon_sym_36] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_37] = ACTIONS(546), + [anon_sym_classify] = ACTIONS(546), + [anon_sym_38] = ACTIONS(546), + [anon_sym_deduplicate] = ACTIONS(546), + [anon_sym_39] = ACTIONS(546), + [anon_sym_box] = ACTIONS(546), + [anon_sym_40] = ACTIONS(546), + [anon_sym_unbox] = ACTIONS(546), + [anon_sym_41] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_42] = ACTIONS(546), + [anon_sym_couple] = ACTIONS(546), + [anon_sym_43] = ACTIONS(546), + [anon_sym_join] = ACTIONS(546), + [anon_sym_44] = ACTIONS(546), + [anon_sym_select] = ACTIONS(546), + [anon_sym_45] = ACTIONS(546), + [anon_sym_pick] = ACTIONS(546), + [anon_sym_46] = ACTIONS(546), + [anon_sym_reshape] = ACTIONS(546), + [anon_sym_47] = ACTIONS(546), + [anon_sym_take] = ACTIONS(546), + [anon_sym_48] = ACTIONS(546), + [anon_sym_drop] = ACTIONS(546), + [anon_sym_49] = ACTIONS(546), + [anon_sym_rotate] = ACTIONS(546), + [anon_sym_50] = ACTIONS(546), + [anon_sym_windows] = ACTIONS(546), + [anon_sym_51] = ACTIONS(546), + [anon_sym_keep] = ACTIONS(546), + [anon_sym_52] = ACTIONS(546), + [anon_sym_find] = ACTIONS(546), + [anon_sym_53] = ACTIONS(546), + [anon_sym_member] = ACTIONS(546), + [anon_sym_54] = ACTIONS(546), + [anon_sym_indexof] = ACTIONS(546), + [anon_sym_55] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_56] = ACTIONS(546), + [anon_sym_wait] = ACTIONS(546), + [anon_sym_parse] = ACTIONS(546), + [anon_sym_random] = ACTIONS(546), + [anon_sym_57] = ACTIONS(546), + [anon_sym_gen] = ACTIONS(546), + [anon_sym_deal] = ACTIONS(546), + [anon_sym_tag] = ACTIONS(546), + [anon_sym_now] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_58] = ACTIONS(546), + [anon_sym_dump] = ACTIONS(546), + [anon_sym_regex] = ACTIONS(546), + [anon_sym_utf] = ACTIONS(546), + [anon_sym_send] = ACTIONS(546), + [anon_sym_recv] = ACTIONS(546), + [anon_sym_tryrecv] = ACTIONS(546), + [anon_sym_complex] = ACTIONS(546), + [anon_sym_59] = ACTIONS(546), + [anon_sym_rerank] = ACTIONS(546), + [anon_sym_60] = ACTIONS(546), + [anon_sym_fix] = ACTIONS(546), + [anon_sym_61] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_scan] = ACTIONS(546), + [anon_sym_BSLASH] = ACTIONS(546), + [anon_sym_each] = ACTIONS(546), + [anon_sym_62] = ACTIONS(546), + [anon_sym_rows] = ACTIONS(546), + [anon_sym_63] = ACTIONS(546), + [anon_sym_repeat] = ACTIONS(546), + [anon_sym_64] = ACTIONS(546), + [anon_sym_dip] = ACTIONS(546), + [anon_sym_65] = ACTIONS(546), + [anon_sym_gap] = ACTIONS(546), + [anon_sym_66] = ACTIONS(546), + [anon_sym_invert] = ACTIONS(546), + [anon_sym_67] = ACTIONS(546), + [anon_sym_spawn] = ACTIONS(546), + [anon_sym_pack] = ACTIONS(546), + [anon_sym_68] = ACTIONS(546), + [anon_sym_rectify] = ACTIONS(546), + [anon_sym_69] = ACTIONS(546), + [anon_sym_this] = ACTIONS(546), + [anon_sym_70] = ACTIONS(546), + [anon_sym_recur] = ACTIONS(546), + [anon_sym_71] = ACTIONS(546), + [anon_sym_fold] = ACTIONS(546), + [anon_sym_72] = ACTIONS(546), + [anon_sym_table] = ACTIONS(546), + [anon_sym_73] = ACTIONS(546), + [anon_sym_cross] = ACTIONS(546), + [anon_sym_74] = ACTIONS(546), + [anon_sym_group] = ACTIONS(546), + [anon_sym_75] = ACTIONS(546), + [anon_sym_partition] = ACTIONS(546), + [anon_sym_76] = ACTIONS(546), + [anon_sym_both] = ACTIONS(546), + [anon_sym_77] = ACTIONS(546), + [anon_sym_bracket] = ACTIONS(546), + [anon_sym_78] = ACTIONS(546), + [anon_sym_fork] = ACTIONS(546), + [anon_sym_79] = ACTIONS(546), + [anon_sym_under] = ACTIONS(546), + [anon_sym_80] = ACTIONS(546), + [anon_sym_fill] = ACTIONS(546), + [anon_sym_81] = ACTIONS(546), + [anon_sym_try] = ACTIONS(544), + [anon_sym_82] = ACTIONS(546), + [anon_sym_do] = ACTIONS(544), + [anon_sym_83] = ACTIONS(546), + [anon_sym_all] = ACTIONS(546), + [anon_sym_84] = ACTIONS(546), + [anon_sym_setinv] = ACTIONS(546), + [anon_sym_setunder] = ACTIONS(546), + [anon_sym_85] = ACTIONS(546), + [anon_sym_86] = ACTIONS(546), + [anon_sym_87] = ACTIONS(546), + [anon_sym_88] = ACTIONS(546), + [anon_sym_89] = ACTIONS(546), + [anon_sym_90] = ACTIONS(546), + [anon_sym_91] = ACTIONS(546), + [anon_sym_92] = ACTIONS(546), + [sym__endOfLine] = ACTIONS(546), + }, + [100] = { [aux_sym_number_token1] = ACTIONS(548), [sym_fraction] = ACTIONS(550), [anon_sym_os] = ACTIONS(548), @@ -33996,15 +31349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_character_token1] = ACTIONS(550), [sym_string] = ACTIONS(550), [sym_multiLineString] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), [sym_identifier] = ACTIONS(548), [sym_identifierDeprecated] = ACTIONS(548), [sym_system] = ACTIONS(550), [sym_comment] = ACTIONS(548), - [sym_tripleMinus] = ACTIONS(550), [sym_openParen] = ACTIONS(550), + [sym_closeParen] = ACTIONS(550), [sym_openCurly] = ACTIONS(550), + [sym_closeCurly] = ACTIONS(550), [sym_openBracket] = ACTIONS(550), + [sym_closeBracket] = ACTIONS(550), + [sym_underscore] = ACTIONS(550), [anon_sym_CARET] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(550), [anon_sym_eta] = ACTIONS(550), [anon_sym_2] = ACTIONS(548), [anon_sym_pi] = ACTIONS(548), @@ -34051,7 +31410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(550), [anon_sym_18] = ACTIONS(550), [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), [anon_sym_STAR] = ACTIONS(550), [anon_sym_19] = ACTIONS(550), [anon_sym_PERCENT] = ACTIONS(550), @@ -34150,6 +31509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(550), [anon_sym_fix] = ACTIONS(550), [anon_sym_61] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(550), [anon_sym_reduce] = ACTIONS(550), [anon_sym_SLASH] = ACTIONS(550), [anon_sym_scan] = ACTIONS(550), @@ -34211,963 +31571,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(550), [anon_sym_91] = ACTIONS(550), [anon_sym_92] = ACTIONS(550), - [anon_sym_93] = ACTIONS(550), - [anon_sym_94] = ACTIONS(550), - [anon_sym_95] = ACTIONS(550), - [anon_sym_96] = ACTIONS(550), - [sym_emptyMultiLineString] = ACTIONS(550), - [sym__endOfLine] = ACTIONS(552), + [sym__endOfLine] = ACTIONS(550), }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(546), - [aux_sym_number_token1] = ACTIONS(554), - [sym_fraction] = ACTIONS(556), - [anon_sym_os] = ACTIONS(554), - [anon_sym_Family] = ACTIONS(554), - [anon_sym_Arch] = ACTIONS(554), - [anon_sym_ExeExt] = ACTIONS(554), - [anon_sym_PllExt] = ACTIONS(554), - [anon_sym_Sep] = ACTIONS(554), - [anon_sym_NUmProcs] = ACTIONS(554), - [anon_sym_] = ACTIONS(556), - [aux_sym_character_token1] = ACTIONS(556), - [sym_string] = ACTIONS(556), - [sym_multiLineString] = ACTIONS(556), - [sym_identifier] = ACTIONS(554), - [sym_identifierDeprecated] = ACTIONS(554), - [sym_system] = ACTIONS(556), - [sym_comment] = ACTIONS(554), - [sym_tripleMinus] = ACTIONS(556), - [sym_openParen] = ACTIONS(556), - [sym_openCurly] = ACTIONS(556), - [sym_openBracket] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_eta] = ACTIONS(556), - [anon_sym_2] = ACTIONS(554), - [anon_sym_pi] = ACTIONS(554), - [anon_sym_3] = ACTIONS(554), - [anon_sym_tau] = ACTIONS(556), - [anon_sym_4] = ACTIONS(554), - [anon_sym_infinity] = ACTIONS(556), - [anon_sym_5] = ACTIONS(556), - [anon_sym_e] = ACTIONS(554), - [anon_sym_NaN] = ACTIONS(554), - [anon_sym_NumProcs] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_COLON] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_identity] = ACTIONS(556), - [anon_sym_id] = ACTIONS(554), - [anon_sym_6] = ACTIONS(556), - [anon_sym_not] = ACTIONS(556), - [anon_sym_7] = ACTIONS(556), - [anon_sym_sign] = ACTIONS(556), - [anon_sym_8] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_9] = ACTIONS(554), - [anon_sym_absolutevalue] = ACTIONS(556), - [anon_sym_10] = ACTIONS(556), - [anon_sym_sqrt] = ACTIONS(556), - [anon_sym_11] = ACTIONS(556), - [anon_sym_sine] = ACTIONS(556), - [anon_sym_12] = ACTIONS(556), - [anon_sym_floor] = ACTIONS(556), - [anon_sym_13] = ACTIONS(556), - [anon_sym_ceiling] = ACTIONS(556), - [anon_sym_14] = ACTIONS(556), - [anon_sym_round] = ACTIONS(556), - [anon_sym_15] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_16] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_17] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_18] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), + [101] = { + [aux_sym_number_token1] = ACTIONS(552), + [sym_fraction] = ACTIONS(554), + [anon_sym_os] = ACTIONS(552), + [anon_sym_Family] = ACTIONS(552), + [anon_sym_Arch] = ACTIONS(552), + [anon_sym_ExeExt] = ACTIONS(552), + [anon_sym_PllExt] = ACTIONS(552), + [anon_sym_Sep] = ACTIONS(552), + [anon_sym_NUmProcs] = ACTIONS(552), + [anon_sym_] = ACTIONS(554), + [aux_sym_character_token1] = ACTIONS(554), + [sym_string] = ACTIONS(554), + [sym_multiLineString] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [sym_identifier] = ACTIONS(552), + [sym_identifierDeprecated] = ACTIONS(552), + [sym_system] = ACTIONS(554), + [sym_comment] = ACTIONS(552), + [sym_openParen] = ACTIONS(554), + [sym_closeParen] = ACTIONS(554), + [sym_openCurly] = ACTIONS(554), + [sym_closeCurly] = ACTIONS(554), + [sym_openBracket] = ACTIONS(554), + [sym_closeBracket] = ACTIONS(554), + [sym_underscore] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(554), + [anon_sym_eta] = ACTIONS(554), + [anon_sym_2] = ACTIONS(552), + [anon_sym_pi] = ACTIONS(552), + [anon_sym_3] = ACTIONS(552), + [anon_sym_tau] = ACTIONS(554), + [anon_sym_4] = ACTIONS(552), + [anon_sym_infinity] = ACTIONS(554), + [anon_sym_5] = ACTIONS(554), + [anon_sym_e] = ACTIONS(552), + [anon_sym_NaN] = ACTIONS(552), + [anon_sym_NumProcs] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_identity] = ACTIONS(554), + [anon_sym_id] = ACTIONS(552), + [anon_sym_6] = ACTIONS(554), + [anon_sym_not] = ACTIONS(554), + [anon_sym_7] = ACTIONS(554), + [anon_sym_sign] = ACTIONS(554), + [anon_sym_8] = ACTIONS(554), + [anon_sym_BQUOTE] = ACTIONS(554), + [anon_sym_9] = ACTIONS(552), + [anon_sym_absolutevalue] = ACTIONS(554), + [anon_sym_10] = ACTIONS(554), + [anon_sym_sqrt] = ACTIONS(554), + [anon_sym_11] = ACTIONS(554), + [anon_sym_sine] = ACTIONS(554), + [anon_sym_12] = ACTIONS(554), + [anon_sym_floor] = ACTIONS(554), + [anon_sym_13] = ACTIONS(554), + [anon_sym_ceiling] = ACTIONS(554), + [anon_sym_14] = ACTIONS(554), + [anon_sym_round] = ACTIONS(554), + [anon_sym_15] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_16] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_17] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_18] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), [anon_sym_DASH] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_19] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_20] = ACTIONS(556), - [anon_sym_modulus] = ACTIONS(556), - [anon_sym_21] = ACTIONS(556), - [anon_sym_power] = ACTIONS(556), - [anon_sym_22] = ACTIONS(556), - [anon_sym_logarithm] = ACTIONS(556), - [anon_sym_23] = ACTIONS(556), - [anon_sym_minimum] = ACTIONS(556), - [anon_sym_24] = ACTIONS(556), - [anon_sym_maximum] = ACTIONS(556), - [anon_sym_25] = ACTIONS(556), - [anon_sym_atangent] = ACTIONS(556), - [anon_sym_26] = ACTIONS(556), - [anon_sym_length] = ACTIONS(556), - [anon_sym_27] = ACTIONS(556), - [anon_sym_shape] = ACTIONS(556), - [anon_sym_28] = ACTIONS(556), - [anon_sym_range] = ACTIONS(556), - [anon_sym_29] = ACTIONS(556), - [anon_sym_first] = ACTIONS(556), - [anon_sym_30] = ACTIONS(556), - [anon_sym_reverse] = ACTIONS(556), - [anon_sym_31] = ACTIONS(556), - [anon_sym_deshape] = ACTIONS(556), - [anon_sym_32] = ACTIONS(556), - [anon_sym_bits] = ACTIONS(556), - [anon_sym_33] = ACTIONS(556), - [anon_sym_transpose] = ACTIONS(556), - [anon_sym_34] = ACTIONS(556), - [anon_sym_rise] = ACTIONS(556), - [anon_sym_35] = ACTIONS(556), - [anon_sym_fall] = ACTIONS(556), - [anon_sym_36] = ACTIONS(556), - [anon_sym_where] = ACTIONS(556), - [anon_sym_37] = ACTIONS(556), - [anon_sym_classify] = ACTIONS(556), - [anon_sym_38] = ACTIONS(556), - [anon_sym_deduplicate] = ACTIONS(556), - [anon_sym_39] = ACTIONS(556), - [anon_sym_box] = ACTIONS(556), - [anon_sym_40] = ACTIONS(556), - [anon_sym_unbox] = ACTIONS(556), - [anon_sym_41] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_42] = ACTIONS(556), - [anon_sym_couple] = ACTIONS(556), - [anon_sym_43] = ACTIONS(556), - [anon_sym_join] = ACTIONS(556), - [anon_sym_44] = ACTIONS(556), - [anon_sym_select] = ACTIONS(556), - [anon_sym_45] = ACTIONS(556), - [anon_sym_pick] = ACTIONS(556), - [anon_sym_46] = ACTIONS(556), - [anon_sym_reshape] = ACTIONS(556), - [anon_sym_47] = ACTIONS(556), - [anon_sym_take] = ACTIONS(556), - [anon_sym_48] = ACTIONS(556), - [anon_sym_drop] = ACTIONS(556), - [anon_sym_49] = ACTIONS(556), - [anon_sym_rotate] = ACTIONS(556), - [anon_sym_50] = ACTIONS(556), - [anon_sym_windows] = ACTIONS(556), - [anon_sym_51] = ACTIONS(556), - [anon_sym_keep] = ACTIONS(556), - [anon_sym_52] = ACTIONS(556), - [anon_sym_find] = ACTIONS(556), - [anon_sym_53] = ACTIONS(556), - [anon_sym_member] = ACTIONS(556), - [anon_sym_54] = ACTIONS(556), - [anon_sym_indexof] = ACTIONS(556), - [anon_sym_55] = ACTIONS(556), - [anon_sym_assert] = ACTIONS(556), - [anon_sym_56] = ACTIONS(556), - [anon_sym_wait] = ACTIONS(556), - [anon_sym_parse] = ACTIONS(556), - [anon_sym_random] = ACTIONS(556), - [anon_sym_57] = ACTIONS(556), - [anon_sym_gen] = ACTIONS(556), - [anon_sym_deal] = ACTIONS(556), - [anon_sym_tag] = ACTIONS(556), - [anon_sym_now] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_58] = ACTIONS(556), - [anon_sym_dump] = ACTIONS(556), - [anon_sym_regex] = ACTIONS(556), - [anon_sym_utf] = ACTIONS(556), - [anon_sym_send] = ACTIONS(556), - [anon_sym_recv] = ACTIONS(556), - [anon_sym_tryrecv] = ACTIONS(556), - [anon_sym_complex] = ACTIONS(556), - [anon_sym_59] = ACTIONS(556), - [anon_sym_rerank] = ACTIONS(556), - [anon_sym_60] = ACTIONS(556), - [anon_sym_fix] = ACTIONS(556), - [anon_sym_61] = ACTIONS(556), - [anon_sym_reduce] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_scan] = ACTIONS(556), - [anon_sym_BSLASH] = ACTIONS(556), - [anon_sym_each] = ACTIONS(556), - [anon_sym_62] = ACTIONS(556), - [anon_sym_rows] = ACTIONS(556), - [anon_sym_63] = ACTIONS(556), - [anon_sym_repeat] = ACTIONS(556), - [anon_sym_64] = ACTIONS(556), - [anon_sym_dip] = ACTIONS(556), - [anon_sym_65] = ACTIONS(556), - [anon_sym_gap] = ACTIONS(556), - [anon_sym_66] = ACTIONS(556), - [anon_sym_invert] = ACTIONS(556), - [anon_sym_67] = ACTIONS(556), - [anon_sym_spawn] = ACTIONS(556), - [anon_sym_pack] = ACTIONS(556), - [anon_sym_68] = ACTIONS(556), - [anon_sym_rectify] = ACTIONS(556), - [anon_sym_69] = ACTIONS(556), - [anon_sym_this] = ACTIONS(556), - [anon_sym_70] = ACTIONS(556), - [anon_sym_recur] = ACTIONS(556), - [anon_sym_71] = ACTIONS(556), - [anon_sym_fold] = ACTIONS(556), - [anon_sym_72] = ACTIONS(556), - [anon_sym_table] = ACTIONS(556), - [anon_sym_73] = ACTIONS(556), - [anon_sym_cross] = ACTIONS(556), - [anon_sym_74] = ACTIONS(556), - [anon_sym_group] = ACTIONS(556), - [anon_sym_75] = ACTIONS(556), - [anon_sym_partition] = ACTIONS(556), - [anon_sym_76] = ACTIONS(556), - [anon_sym_both] = ACTIONS(556), - [anon_sym_77] = ACTIONS(556), - [anon_sym_bracket] = ACTIONS(556), - [anon_sym_78] = ACTIONS(556), - [anon_sym_fork] = ACTIONS(556), - [anon_sym_79] = ACTIONS(556), - [anon_sym_under] = ACTIONS(556), - [anon_sym_80] = ACTIONS(556), - [anon_sym_fill] = ACTIONS(556), - [anon_sym_81] = ACTIONS(556), - [anon_sym_try] = ACTIONS(554), - [anon_sym_82] = ACTIONS(556), - [anon_sym_do] = ACTIONS(554), - [anon_sym_83] = ACTIONS(556), - [anon_sym_all] = ACTIONS(556), - [anon_sym_84] = ACTIONS(556), - [anon_sym_setinv] = ACTIONS(556), - [anon_sym_setunder] = ACTIONS(556), - [anon_sym_85] = ACTIONS(556), - [anon_sym_86] = ACTIONS(556), - [anon_sym_87] = ACTIONS(556), - [anon_sym_88] = ACTIONS(556), - [anon_sym_89] = ACTIONS(556), - [anon_sym_90] = ACTIONS(556), - [anon_sym_91] = ACTIONS(556), - [anon_sym_92] = ACTIONS(556), - [anon_sym_93] = ACTIONS(556), - [anon_sym_94] = ACTIONS(556), - [anon_sym_95] = ACTIONS(556), - [anon_sym_96] = ACTIONS(556), - [sym_emptyMultiLineString] = ACTIONS(556), - [sym__endOfLine] = ACTIONS(5), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_19] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_20] = ACTIONS(554), + [anon_sym_modulus] = ACTIONS(554), + [anon_sym_21] = ACTIONS(554), + [anon_sym_power] = ACTIONS(554), + [anon_sym_22] = ACTIONS(554), + [anon_sym_logarithm] = ACTIONS(554), + [anon_sym_23] = ACTIONS(554), + [anon_sym_minimum] = ACTIONS(554), + [anon_sym_24] = ACTIONS(554), + [anon_sym_maximum] = ACTIONS(554), + [anon_sym_25] = ACTIONS(554), + [anon_sym_atangent] = ACTIONS(554), + [anon_sym_26] = ACTIONS(554), + [anon_sym_length] = ACTIONS(554), + [anon_sym_27] = ACTIONS(554), + [anon_sym_shape] = ACTIONS(554), + [anon_sym_28] = ACTIONS(554), + [anon_sym_range] = ACTIONS(554), + [anon_sym_29] = ACTIONS(554), + [anon_sym_first] = ACTIONS(554), + [anon_sym_30] = ACTIONS(554), + [anon_sym_reverse] = ACTIONS(554), + [anon_sym_31] = ACTIONS(554), + [anon_sym_deshape] = ACTIONS(554), + [anon_sym_32] = ACTIONS(554), + [anon_sym_bits] = ACTIONS(554), + [anon_sym_33] = ACTIONS(554), + [anon_sym_transpose] = ACTIONS(554), + [anon_sym_34] = ACTIONS(554), + [anon_sym_rise] = ACTIONS(554), + [anon_sym_35] = ACTIONS(554), + [anon_sym_fall] = ACTIONS(554), + [anon_sym_36] = ACTIONS(554), + [anon_sym_where] = ACTIONS(554), + [anon_sym_37] = ACTIONS(554), + [anon_sym_classify] = ACTIONS(554), + [anon_sym_38] = ACTIONS(554), + [anon_sym_deduplicate] = ACTIONS(554), + [anon_sym_39] = ACTIONS(554), + [anon_sym_box] = ACTIONS(554), + [anon_sym_40] = ACTIONS(554), + [anon_sym_unbox] = ACTIONS(554), + [anon_sym_41] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [anon_sym_42] = ACTIONS(554), + [anon_sym_couple] = ACTIONS(554), + [anon_sym_43] = ACTIONS(554), + [anon_sym_join] = ACTIONS(554), + [anon_sym_44] = ACTIONS(554), + [anon_sym_select] = ACTIONS(554), + [anon_sym_45] = ACTIONS(554), + [anon_sym_pick] = ACTIONS(554), + [anon_sym_46] = ACTIONS(554), + [anon_sym_reshape] = ACTIONS(554), + [anon_sym_47] = ACTIONS(554), + [anon_sym_take] = ACTIONS(554), + [anon_sym_48] = ACTIONS(554), + [anon_sym_drop] = ACTIONS(554), + [anon_sym_49] = ACTIONS(554), + [anon_sym_rotate] = ACTIONS(554), + [anon_sym_50] = ACTIONS(554), + [anon_sym_windows] = ACTIONS(554), + [anon_sym_51] = ACTIONS(554), + [anon_sym_keep] = ACTIONS(554), + [anon_sym_52] = ACTIONS(554), + [anon_sym_find] = ACTIONS(554), + [anon_sym_53] = ACTIONS(554), + [anon_sym_member] = ACTIONS(554), + [anon_sym_54] = ACTIONS(554), + [anon_sym_indexof] = ACTIONS(554), + [anon_sym_55] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(554), + [anon_sym_56] = ACTIONS(554), + [anon_sym_wait] = ACTIONS(554), + [anon_sym_parse] = ACTIONS(554), + [anon_sym_random] = ACTIONS(554), + [anon_sym_57] = ACTIONS(554), + [anon_sym_gen] = ACTIONS(554), + [anon_sym_deal] = ACTIONS(554), + [anon_sym_tag] = ACTIONS(554), + [anon_sym_now] = ACTIONS(554), + [anon_sym_type] = ACTIONS(554), + [anon_sym_58] = ACTIONS(554), + [anon_sym_dump] = ACTIONS(554), + [anon_sym_regex] = ACTIONS(554), + [anon_sym_utf] = ACTIONS(554), + [anon_sym_send] = ACTIONS(554), + [anon_sym_recv] = ACTIONS(554), + [anon_sym_tryrecv] = ACTIONS(554), + [anon_sym_complex] = ACTIONS(554), + [anon_sym_59] = ACTIONS(554), + [anon_sym_rerank] = ACTIONS(554), + [anon_sym_60] = ACTIONS(554), + [anon_sym_fix] = ACTIONS(554), + [anon_sym_61] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_reduce] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_scan] = ACTIONS(554), + [anon_sym_BSLASH] = ACTIONS(554), + [anon_sym_each] = ACTIONS(554), + [anon_sym_62] = ACTIONS(554), + [anon_sym_rows] = ACTIONS(554), + [anon_sym_63] = ACTIONS(554), + [anon_sym_repeat] = ACTIONS(554), + [anon_sym_64] = ACTIONS(554), + [anon_sym_dip] = ACTIONS(554), + [anon_sym_65] = ACTIONS(554), + [anon_sym_gap] = ACTIONS(554), + [anon_sym_66] = ACTIONS(554), + [anon_sym_invert] = ACTIONS(554), + [anon_sym_67] = ACTIONS(554), + [anon_sym_spawn] = ACTIONS(554), + [anon_sym_pack] = ACTIONS(554), + [anon_sym_68] = ACTIONS(554), + [anon_sym_rectify] = ACTIONS(554), + [anon_sym_69] = ACTIONS(554), + [anon_sym_this] = ACTIONS(554), + [anon_sym_70] = ACTIONS(554), + [anon_sym_recur] = ACTIONS(554), + [anon_sym_71] = ACTIONS(554), + [anon_sym_fold] = ACTIONS(554), + [anon_sym_72] = ACTIONS(554), + [anon_sym_table] = ACTIONS(554), + [anon_sym_73] = ACTIONS(554), + [anon_sym_cross] = ACTIONS(554), + [anon_sym_74] = ACTIONS(554), + [anon_sym_group] = ACTIONS(554), + [anon_sym_75] = ACTIONS(554), + [anon_sym_partition] = ACTIONS(554), + [anon_sym_76] = ACTIONS(554), + [anon_sym_both] = ACTIONS(554), + [anon_sym_77] = ACTIONS(554), + [anon_sym_bracket] = ACTIONS(554), + [anon_sym_78] = ACTIONS(554), + [anon_sym_fork] = ACTIONS(554), + [anon_sym_79] = ACTIONS(554), + [anon_sym_under] = ACTIONS(554), + [anon_sym_80] = ACTIONS(554), + [anon_sym_fill] = ACTIONS(554), + [anon_sym_81] = ACTIONS(554), + [anon_sym_try] = ACTIONS(552), + [anon_sym_82] = ACTIONS(554), + [anon_sym_do] = ACTIONS(552), + [anon_sym_83] = ACTIONS(554), + [anon_sym_all] = ACTIONS(554), + [anon_sym_84] = ACTIONS(554), + [anon_sym_setinv] = ACTIONS(554), + [anon_sym_setunder] = ACTIONS(554), + [anon_sym_85] = ACTIONS(554), + [anon_sym_86] = ACTIONS(554), + [anon_sym_87] = ACTIONS(554), + [anon_sym_88] = ACTIONS(554), + [anon_sym_89] = ACTIONS(554), + [anon_sym_90] = ACTIONS(554), + [anon_sym_91] = ACTIONS(554), + [anon_sym_92] = ACTIONS(554), + [sym__endOfLine] = ACTIONS(554), }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(558), - [aux_sym_number_token1] = ACTIONS(548), - [sym_fraction] = ACTIONS(550), - [anon_sym_os] = ACTIONS(548), - [anon_sym_Family] = ACTIONS(548), - [anon_sym_Arch] = ACTIONS(548), - [anon_sym_ExeExt] = ACTIONS(548), - [anon_sym_PllExt] = ACTIONS(548), - [anon_sym_Sep] = ACTIONS(548), - [anon_sym_NUmProcs] = ACTIONS(548), - [anon_sym_] = ACTIONS(550), - [aux_sym_character_token1] = ACTIONS(550), - [sym_string] = ACTIONS(550), - [sym_multiLineString] = ACTIONS(550), - [sym_identifier] = ACTIONS(548), - [sym_identifierDeprecated] = ACTIONS(548), - [sym_system] = ACTIONS(550), - [sym_comment] = ACTIONS(548), - [sym_tripleMinus] = ACTIONS(550), - [sym_openParen] = ACTIONS(550), - [sym_openCurly] = ACTIONS(550), - [sym_openBracket] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_eta] = ACTIONS(550), - [anon_sym_2] = ACTIONS(548), - [anon_sym_pi] = ACTIONS(548), - [anon_sym_3] = ACTIONS(548), - [anon_sym_tau] = ACTIONS(550), - [anon_sym_4] = ACTIONS(548), - [anon_sym_infinity] = ACTIONS(550), - [anon_sym_5] = ACTIONS(550), - [anon_sym_e] = ACTIONS(548), - [anon_sym_NaN] = ACTIONS(548), - [anon_sym_NumProcs] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(550), - [anon_sym_COLON] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_identity] = ACTIONS(550), - [anon_sym_id] = ACTIONS(548), - [anon_sym_6] = ACTIONS(550), - [anon_sym_not] = ACTIONS(550), - [anon_sym_7] = ACTIONS(550), - [anon_sym_sign] = ACTIONS(550), - [anon_sym_8] = ACTIONS(550), - [anon_sym_BQUOTE] = ACTIONS(550), - [anon_sym_9] = ACTIONS(548), - [anon_sym_absolutevalue] = ACTIONS(550), - [anon_sym_10] = ACTIONS(550), - [anon_sym_sqrt] = ACTIONS(550), - [anon_sym_11] = ACTIONS(550), - [anon_sym_sine] = ACTIONS(550), - [anon_sym_12] = ACTIONS(550), - [anon_sym_floor] = ACTIONS(550), - [anon_sym_13] = ACTIONS(550), - [anon_sym_ceiling] = ACTIONS(550), - [anon_sym_14] = ACTIONS(550), - [anon_sym_round] = ACTIONS(550), - [anon_sym_15] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(550), - [anon_sym_16] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_17] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_18] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_19] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_20] = ACTIONS(550), - [anon_sym_modulus] = ACTIONS(550), - [anon_sym_21] = ACTIONS(550), - [anon_sym_power] = ACTIONS(550), - [anon_sym_22] = ACTIONS(550), - [anon_sym_logarithm] = ACTIONS(550), - [anon_sym_23] = ACTIONS(550), - [anon_sym_minimum] = ACTIONS(550), - [anon_sym_24] = ACTIONS(550), - [anon_sym_maximum] = ACTIONS(550), - [anon_sym_25] = ACTIONS(550), - [anon_sym_atangent] = ACTIONS(550), - [anon_sym_26] = ACTIONS(550), - [anon_sym_length] = ACTIONS(550), - [anon_sym_27] = ACTIONS(550), - [anon_sym_shape] = ACTIONS(550), - [anon_sym_28] = ACTIONS(550), - [anon_sym_range] = ACTIONS(550), - [anon_sym_29] = ACTIONS(550), - [anon_sym_first] = ACTIONS(550), - [anon_sym_30] = ACTIONS(550), - [anon_sym_reverse] = ACTIONS(550), - [anon_sym_31] = ACTIONS(550), - [anon_sym_deshape] = ACTIONS(550), - [anon_sym_32] = ACTIONS(550), - [anon_sym_bits] = ACTIONS(550), - [anon_sym_33] = ACTIONS(550), - [anon_sym_transpose] = ACTIONS(550), - [anon_sym_34] = ACTIONS(550), - [anon_sym_rise] = ACTIONS(550), - [anon_sym_35] = ACTIONS(550), - [anon_sym_fall] = ACTIONS(550), - [anon_sym_36] = ACTIONS(550), - [anon_sym_where] = ACTIONS(550), - [anon_sym_37] = ACTIONS(550), - [anon_sym_classify] = ACTIONS(550), - [anon_sym_38] = ACTIONS(550), - [anon_sym_deduplicate] = ACTIONS(550), - [anon_sym_39] = ACTIONS(550), - [anon_sym_box] = ACTIONS(550), - [anon_sym_40] = ACTIONS(550), - [anon_sym_unbox] = ACTIONS(550), - [anon_sym_41] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [anon_sym_42] = ACTIONS(550), - [anon_sym_couple] = ACTIONS(550), - [anon_sym_43] = ACTIONS(550), - [anon_sym_join] = ACTIONS(550), - [anon_sym_44] = ACTIONS(550), - [anon_sym_select] = ACTIONS(550), - [anon_sym_45] = ACTIONS(550), - [anon_sym_pick] = ACTIONS(550), - [anon_sym_46] = ACTIONS(550), - [anon_sym_reshape] = ACTIONS(550), - [anon_sym_47] = ACTIONS(550), - [anon_sym_take] = ACTIONS(550), - [anon_sym_48] = ACTIONS(550), - [anon_sym_drop] = ACTIONS(550), - [anon_sym_49] = ACTIONS(550), - [anon_sym_rotate] = ACTIONS(550), - [anon_sym_50] = ACTIONS(550), - [anon_sym_windows] = ACTIONS(550), - [anon_sym_51] = ACTIONS(550), - [anon_sym_keep] = ACTIONS(550), - [anon_sym_52] = ACTIONS(550), - [anon_sym_find] = ACTIONS(550), - [anon_sym_53] = ACTIONS(550), - [anon_sym_member] = ACTIONS(550), - [anon_sym_54] = ACTIONS(550), - [anon_sym_indexof] = ACTIONS(550), - [anon_sym_55] = ACTIONS(550), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_56] = ACTIONS(550), - [anon_sym_wait] = ACTIONS(550), - [anon_sym_parse] = ACTIONS(550), - [anon_sym_random] = ACTIONS(550), - [anon_sym_57] = ACTIONS(550), - [anon_sym_gen] = ACTIONS(550), - [anon_sym_deal] = ACTIONS(550), - [anon_sym_tag] = ACTIONS(550), - [anon_sym_now] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_58] = ACTIONS(550), - [anon_sym_dump] = ACTIONS(550), - [anon_sym_regex] = ACTIONS(550), - [anon_sym_utf] = ACTIONS(550), - [anon_sym_send] = ACTIONS(550), - [anon_sym_recv] = ACTIONS(550), - [anon_sym_tryrecv] = ACTIONS(550), - [anon_sym_complex] = ACTIONS(550), - [anon_sym_59] = ACTIONS(550), - [anon_sym_rerank] = ACTIONS(550), - [anon_sym_60] = ACTIONS(550), - [anon_sym_fix] = ACTIONS(550), - [anon_sym_61] = ACTIONS(550), - [anon_sym_reduce] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_scan] = ACTIONS(550), - [anon_sym_BSLASH] = ACTIONS(550), - [anon_sym_each] = ACTIONS(550), - [anon_sym_62] = ACTIONS(550), - [anon_sym_rows] = ACTIONS(550), - [anon_sym_63] = ACTIONS(550), - [anon_sym_repeat] = ACTIONS(550), - [anon_sym_64] = ACTIONS(550), - [anon_sym_dip] = ACTIONS(550), - [anon_sym_65] = ACTIONS(550), - [anon_sym_gap] = ACTIONS(550), - [anon_sym_66] = ACTIONS(550), - [anon_sym_invert] = ACTIONS(550), - [anon_sym_67] = ACTIONS(550), - [anon_sym_spawn] = ACTIONS(550), - [anon_sym_pack] = ACTIONS(550), - [anon_sym_68] = ACTIONS(550), - [anon_sym_rectify] = ACTIONS(550), - [anon_sym_69] = ACTIONS(550), - [anon_sym_this] = ACTIONS(550), - [anon_sym_70] = ACTIONS(550), - [anon_sym_recur] = ACTIONS(550), - [anon_sym_71] = ACTIONS(550), - [anon_sym_fold] = ACTIONS(550), - [anon_sym_72] = ACTIONS(550), - [anon_sym_table] = ACTIONS(550), - [anon_sym_73] = ACTIONS(550), - [anon_sym_cross] = ACTIONS(550), - [anon_sym_74] = ACTIONS(550), - [anon_sym_group] = ACTIONS(550), - [anon_sym_75] = ACTIONS(550), - [anon_sym_partition] = ACTIONS(550), - [anon_sym_76] = ACTIONS(550), - [anon_sym_both] = ACTIONS(550), - [anon_sym_77] = ACTIONS(550), - [anon_sym_bracket] = ACTIONS(550), - [anon_sym_78] = ACTIONS(550), - [anon_sym_fork] = ACTIONS(550), - [anon_sym_79] = ACTIONS(550), - [anon_sym_under] = ACTIONS(550), - [anon_sym_80] = ACTIONS(550), - [anon_sym_fill] = ACTIONS(550), - [anon_sym_81] = ACTIONS(550), - [anon_sym_try] = ACTIONS(548), - [anon_sym_82] = ACTIONS(550), - [anon_sym_do] = ACTIONS(548), - [anon_sym_83] = ACTIONS(550), - [anon_sym_all] = ACTIONS(550), - [anon_sym_84] = ACTIONS(550), - [anon_sym_setinv] = ACTIONS(550), - [anon_sym_setunder] = ACTIONS(550), - [anon_sym_85] = ACTIONS(550), - [anon_sym_86] = ACTIONS(550), - [anon_sym_87] = ACTIONS(550), - [anon_sym_88] = ACTIONS(550), - [anon_sym_89] = ACTIONS(550), - [anon_sym_90] = ACTIONS(550), - [anon_sym_91] = ACTIONS(550), - [anon_sym_92] = ACTIONS(550), - [anon_sym_93] = ACTIONS(550), - [anon_sym_94] = ACTIONS(550), - [anon_sym_95] = ACTIONS(550), - [anon_sym_96] = ACTIONS(550), - [sym_emptyMultiLineString] = ACTIONS(550), - [sym__endOfLine] = ACTIONS(560), - }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(562), - [aux_sym_number_token1] = ACTIONS(554), - [sym_fraction] = ACTIONS(556), - [anon_sym_os] = ACTIONS(554), - [anon_sym_Family] = ACTIONS(554), - [anon_sym_Arch] = ACTIONS(554), - [anon_sym_ExeExt] = ACTIONS(554), - [anon_sym_PllExt] = ACTIONS(554), - [anon_sym_Sep] = ACTIONS(554), - [anon_sym_NUmProcs] = ACTIONS(554), - [anon_sym_] = ACTIONS(556), - [aux_sym_character_token1] = ACTIONS(556), - [sym_string] = ACTIONS(556), - [sym_multiLineString] = ACTIONS(556), - [sym_identifier] = ACTIONS(554), - [sym_identifierDeprecated] = ACTIONS(554), - [sym_system] = ACTIONS(556), - [sym_comment] = ACTIONS(554), - [sym_tripleMinus] = ACTIONS(556), - [sym_openParen] = ACTIONS(556), - [sym_openCurly] = ACTIONS(556), - [sym_openBracket] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_eta] = ACTIONS(556), - [anon_sym_2] = ACTIONS(554), - [anon_sym_pi] = ACTIONS(554), - [anon_sym_3] = ACTIONS(554), - [anon_sym_tau] = ACTIONS(556), - [anon_sym_4] = ACTIONS(554), - [anon_sym_infinity] = ACTIONS(556), - [anon_sym_5] = ACTIONS(556), - [anon_sym_e] = ACTIONS(554), - [anon_sym_NaN] = ACTIONS(554), - [anon_sym_NumProcs] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_COLON] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_identity] = ACTIONS(556), - [anon_sym_id] = ACTIONS(554), - [anon_sym_6] = ACTIONS(556), - [anon_sym_not] = ACTIONS(556), - [anon_sym_7] = ACTIONS(556), - [anon_sym_sign] = ACTIONS(556), - [anon_sym_8] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_9] = ACTIONS(554), - [anon_sym_absolutevalue] = ACTIONS(556), - [anon_sym_10] = ACTIONS(556), - [anon_sym_sqrt] = ACTIONS(556), - [anon_sym_11] = ACTIONS(556), - [anon_sym_sine] = ACTIONS(556), - [anon_sym_12] = ACTIONS(556), - [anon_sym_floor] = ACTIONS(556), - [anon_sym_13] = ACTIONS(556), - [anon_sym_ceiling] = ACTIONS(556), - [anon_sym_14] = ACTIONS(556), - [anon_sym_round] = ACTIONS(556), - [anon_sym_15] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_16] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_17] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_18] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_19] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_20] = ACTIONS(556), - [anon_sym_modulus] = ACTIONS(556), - [anon_sym_21] = ACTIONS(556), - [anon_sym_power] = ACTIONS(556), - [anon_sym_22] = ACTIONS(556), - [anon_sym_logarithm] = ACTIONS(556), - [anon_sym_23] = ACTIONS(556), - [anon_sym_minimum] = ACTIONS(556), - [anon_sym_24] = ACTIONS(556), - [anon_sym_maximum] = ACTIONS(556), - [anon_sym_25] = ACTIONS(556), - [anon_sym_atangent] = ACTIONS(556), - [anon_sym_26] = ACTIONS(556), - [anon_sym_length] = ACTIONS(556), - [anon_sym_27] = ACTIONS(556), - [anon_sym_shape] = ACTIONS(556), - [anon_sym_28] = ACTIONS(556), - [anon_sym_range] = ACTIONS(556), - [anon_sym_29] = ACTIONS(556), - [anon_sym_first] = ACTIONS(556), - [anon_sym_30] = ACTIONS(556), - [anon_sym_reverse] = ACTIONS(556), - [anon_sym_31] = ACTIONS(556), - [anon_sym_deshape] = ACTIONS(556), - [anon_sym_32] = ACTIONS(556), - [anon_sym_bits] = ACTIONS(556), - [anon_sym_33] = ACTIONS(556), - [anon_sym_transpose] = ACTIONS(556), - [anon_sym_34] = ACTIONS(556), - [anon_sym_rise] = ACTIONS(556), - [anon_sym_35] = ACTIONS(556), - [anon_sym_fall] = ACTIONS(556), - [anon_sym_36] = ACTIONS(556), - [anon_sym_where] = ACTIONS(556), - [anon_sym_37] = ACTIONS(556), - [anon_sym_classify] = ACTIONS(556), - [anon_sym_38] = ACTIONS(556), - [anon_sym_deduplicate] = ACTIONS(556), - [anon_sym_39] = ACTIONS(556), - [anon_sym_box] = ACTIONS(556), - [anon_sym_40] = ACTIONS(556), - [anon_sym_unbox] = ACTIONS(556), - [anon_sym_41] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_42] = ACTIONS(556), - [anon_sym_couple] = ACTIONS(556), - [anon_sym_43] = ACTIONS(556), - [anon_sym_join] = ACTIONS(556), - [anon_sym_44] = ACTIONS(556), - [anon_sym_select] = ACTIONS(556), - [anon_sym_45] = ACTIONS(556), - [anon_sym_pick] = ACTIONS(556), - [anon_sym_46] = ACTIONS(556), - [anon_sym_reshape] = ACTIONS(556), - [anon_sym_47] = ACTIONS(556), - [anon_sym_take] = ACTIONS(556), - [anon_sym_48] = ACTIONS(556), - [anon_sym_drop] = ACTIONS(556), - [anon_sym_49] = ACTIONS(556), - [anon_sym_rotate] = ACTIONS(556), - [anon_sym_50] = ACTIONS(556), - [anon_sym_windows] = ACTIONS(556), - [anon_sym_51] = ACTIONS(556), - [anon_sym_keep] = ACTIONS(556), - [anon_sym_52] = ACTIONS(556), - [anon_sym_find] = ACTIONS(556), - [anon_sym_53] = ACTIONS(556), - [anon_sym_member] = ACTIONS(556), - [anon_sym_54] = ACTIONS(556), - [anon_sym_indexof] = ACTIONS(556), - [anon_sym_55] = ACTIONS(556), - [anon_sym_assert] = ACTIONS(556), - [anon_sym_56] = ACTIONS(556), - [anon_sym_wait] = ACTIONS(556), - [anon_sym_parse] = ACTIONS(556), - [anon_sym_random] = ACTIONS(556), - [anon_sym_57] = ACTIONS(556), - [anon_sym_gen] = ACTIONS(556), - [anon_sym_deal] = ACTIONS(556), - [anon_sym_tag] = ACTIONS(556), - [anon_sym_now] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_58] = ACTIONS(556), - [anon_sym_dump] = ACTIONS(556), - [anon_sym_regex] = ACTIONS(556), - [anon_sym_utf] = ACTIONS(556), - [anon_sym_send] = ACTIONS(556), - [anon_sym_recv] = ACTIONS(556), - [anon_sym_tryrecv] = ACTIONS(556), - [anon_sym_complex] = ACTIONS(556), - [anon_sym_59] = ACTIONS(556), - [anon_sym_rerank] = ACTIONS(556), - [anon_sym_60] = ACTIONS(556), - [anon_sym_fix] = ACTIONS(556), - [anon_sym_61] = ACTIONS(556), - [anon_sym_reduce] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_scan] = ACTIONS(556), - [anon_sym_BSLASH] = ACTIONS(556), - [anon_sym_each] = ACTIONS(556), - [anon_sym_62] = ACTIONS(556), - [anon_sym_rows] = ACTIONS(556), - [anon_sym_63] = ACTIONS(556), - [anon_sym_repeat] = ACTIONS(556), - [anon_sym_64] = ACTIONS(556), - [anon_sym_dip] = ACTIONS(556), - [anon_sym_65] = ACTIONS(556), - [anon_sym_gap] = ACTIONS(556), - [anon_sym_66] = ACTIONS(556), - [anon_sym_invert] = ACTIONS(556), - [anon_sym_67] = ACTIONS(556), - [anon_sym_spawn] = ACTIONS(556), - [anon_sym_pack] = ACTIONS(556), - [anon_sym_68] = ACTIONS(556), - [anon_sym_rectify] = ACTIONS(556), - [anon_sym_69] = ACTIONS(556), - [anon_sym_this] = ACTIONS(556), - [anon_sym_70] = ACTIONS(556), - [anon_sym_recur] = ACTIONS(556), - [anon_sym_71] = ACTIONS(556), - [anon_sym_fold] = ACTIONS(556), - [anon_sym_72] = ACTIONS(556), - [anon_sym_table] = ACTIONS(556), - [anon_sym_73] = ACTIONS(556), - [anon_sym_cross] = ACTIONS(556), - [anon_sym_74] = ACTIONS(556), - [anon_sym_group] = ACTIONS(556), - [anon_sym_75] = ACTIONS(556), - [anon_sym_partition] = ACTIONS(556), - [anon_sym_76] = ACTIONS(556), - [anon_sym_both] = ACTIONS(556), - [anon_sym_77] = ACTIONS(556), - [anon_sym_bracket] = ACTIONS(556), - [anon_sym_78] = ACTIONS(556), - [anon_sym_fork] = ACTIONS(556), - [anon_sym_79] = ACTIONS(556), - [anon_sym_under] = ACTIONS(556), - [anon_sym_80] = ACTIONS(556), - [anon_sym_fill] = ACTIONS(556), - [anon_sym_81] = ACTIONS(556), - [anon_sym_try] = ACTIONS(554), - [anon_sym_82] = ACTIONS(556), - [anon_sym_do] = ACTIONS(554), - [anon_sym_83] = ACTIONS(556), - [anon_sym_all] = ACTIONS(556), - [anon_sym_84] = ACTIONS(556), - [anon_sym_setinv] = ACTIONS(556), - [anon_sym_setunder] = ACTIONS(556), - [anon_sym_85] = ACTIONS(556), - [anon_sym_86] = ACTIONS(556), - [anon_sym_87] = ACTIONS(556), - [anon_sym_88] = ACTIONS(556), - [anon_sym_89] = ACTIONS(556), - [anon_sym_90] = ACTIONS(556), - [anon_sym_91] = ACTIONS(556), - [anon_sym_92] = ACTIONS(556), - [anon_sym_93] = ACTIONS(556), - [anon_sym_94] = ACTIONS(556), - [anon_sym_95] = ACTIONS(556), - [anon_sym_96] = ACTIONS(556), - [sym_emptyMultiLineString] = ACTIONS(556), - [sym__endOfLine] = ACTIONS(5), - }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(466), - [aux_sym_number_token1] = ACTIONS(464), - [sym_fraction] = ACTIONS(466), - [anon_sym_os] = ACTIONS(464), - [anon_sym_Family] = ACTIONS(464), - [anon_sym_Arch] = ACTIONS(464), - [anon_sym_ExeExt] = ACTIONS(464), - [anon_sym_PllExt] = ACTIONS(464), - [anon_sym_Sep] = ACTIONS(464), - [anon_sym_NUmProcs] = ACTIONS(464), - [anon_sym_] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(466), - [sym_string] = ACTIONS(466), - [sym_multiLineString] = ACTIONS(466), - [sym_identifier] = ACTIONS(464), - [sym_identifierDeprecated] = ACTIONS(464), - [sym_system] = ACTIONS(466), - [sym_comment] = ACTIONS(464), - [sym_openParen] = ACTIONS(466), - [sym_openCurly] = ACTIONS(466), - [sym_openBracket] = ACTIONS(466), - [sym_underscore] = ACTIONS(466), - [sym_leftArrow] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_eta] = ACTIONS(466), - [anon_sym_2] = ACTIONS(464), - [anon_sym_pi] = ACTIONS(464), - [anon_sym_3] = ACTIONS(464), - [anon_sym_tau] = ACTIONS(466), - [anon_sym_4] = ACTIONS(464), - [anon_sym_infinity] = ACTIONS(466), - [anon_sym_5] = ACTIONS(466), - [anon_sym_e] = ACTIONS(464), - [anon_sym_NaN] = ACTIONS(464), - [anon_sym_NumProcs] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_identity] = ACTIONS(466), - [anon_sym_id] = ACTIONS(464), - [anon_sym_6] = ACTIONS(466), - [anon_sym_not] = ACTIONS(466), - [anon_sym_7] = ACTIONS(466), - [anon_sym_sign] = ACTIONS(466), - [anon_sym_8] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(466), - [anon_sym_10] = ACTIONS(466), - [anon_sym_sqrt] = ACTIONS(466), - [anon_sym_11] = ACTIONS(466), - [anon_sym_sine] = ACTIONS(466), - [anon_sym_12] = ACTIONS(466), - [anon_sym_floor] = ACTIONS(466), - [anon_sym_13] = ACTIONS(466), - [anon_sym_ceiling] = ACTIONS(466), - [anon_sym_14] = ACTIONS(466), - [anon_sym_round] = ACTIONS(466), - [anon_sym_15] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_16] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_17] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_18] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_19] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_20] = ACTIONS(466), - [anon_sym_modulus] = ACTIONS(466), - [anon_sym_21] = ACTIONS(466), - [anon_sym_power] = ACTIONS(466), - [anon_sym_22] = ACTIONS(466), - [anon_sym_logarithm] = ACTIONS(466), - [anon_sym_23] = ACTIONS(466), - [anon_sym_minimum] = ACTIONS(466), - [anon_sym_24] = ACTIONS(466), - [anon_sym_maximum] = ACTIONS(466), - [anon_sym_25] = ACTIONS(466), - [anon_sym_atangent] = ACTIONS(466), - [anon_sym_26] = ACTIONS(466), - [anon_sym_length] = ACTIONS(466), - [anon_sym_27] = ACTIONS(466), - [anon_sym_shape] = ACTIONS(466), - [anon_sym_28] = ACTIONS(466), - [anon_sym_range] = ACTIONS(466), - [anon_sym_29] = ACTIONS(466), - [anon_sym_first] = ACTIONS(466), - [anon_sym_30] = ACTIONS(466), - [anon_sym_reverse] = ACTIONS(466), - [anon_sym_31] = ACTIONS(466), - [anon_sym_deshape] = ACTIONS(466), - [anon_sym_32] = ACTIONS(466), - [anon_sym_bits] = ACTIONS(466), - [anon_sym_33] = ACTIONS(466), - [anon_sym_transpose] = ACTIONS(466), - [anon_sym_34] = ACTIONS(466), - [anon_sym_rise] = ACTIONS(466), - [anon_sym_35] = ACTIONS(466), - [anon_sym_fall] = ACTIONS(466), - [anon_sym_36] = ACTIONS(466), - [anon_sym_where] = ACTIONS(466), - [anon_sym_37] = ACTIONS(466), - [anon_sym_classify] = ACTIONS(466), - [anon_sym_38] = ACTIONS(466), - [anon_sym_deduplicate] = ACTIONS(466), - [anon_sym_39] = ACTIONS(466), - [anon_sym_box] = ACTIONS(466), - [anon_sym_40] = ACTIONS(466), - [anon_sym_unbox] = ACTIONS(466), - [anon_sym_41] = ACTIONS(466), - [anon_sym_match] = ACTIONS(466), - [anon_sym_42] = ACTIONS(466), - [anon_sym_couple] = ACTIONS(466), - [anon_sym_43] = ACTIONS(466), - [anon_sym_join] = ACTIONS(466), - [anon_sym_44] = ACTIONS(466), - [anon_sym_select] = ACTIONS(466), - [anon_sym_45] = ACTIONS(466), - [anon_sym_pick] = ACTIONS(466), - [anon_sym_46] = ACTIONS(466), - [anon_sym_reshape] = ACTIONS(466), - [anon_sym_47] = ACTIONS(466), - [anon_sym_take] = ACTIONS(466), - [anon_sym_48] = ACTIONS(466), - [anon_sym_drop] = ACTIONS(466), - [anon_sym_49] = ACTIONS(466), - [anon_sym_rotate] = ACTIONS(466), - [anon_sym_50] = ACTIONS(466), - [anon_sym_windows] = ACTIONS(466), - [anon_sym_51] = ACTIONS(466), - [anon_sym_keep] = ACTIONS(466), - [anon_sym_52] = ACTIONS(466), - [anon_sym_find] = ACTIONS(466), - [anon_sym_53] = ACTIONS(466), - [anon_sym_member] = ACTIONS(466), - [anon_sym_54] = ACTIONS(466), - [anon_sym_indexof] = ACTIONS(466), - [anon_sym_55] = ACTIONS(466), - [anon_sym_assert] = ACTIONS(466), - [anon_sym_56] = ACTIONS(466), - [anon_sym_wait] = ACTIONS(466), - [anon_sym_parse] = ACTIONS(466), - [anon_sym_random] = ACTIONS(466), - [anon_sym_57] = ACTIONS(466), - [anon_sym_gen] = ACTIONS(466), - [anon_sym_deal] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_now] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_58] = ACTIONS(466), - [anon_sym_dump] = ACTIONS(466), - [anon_sym_regex] = ACTIONS(466), - [anon_sym_utf] = ACTIONS(466), - [anon_sym_send] = ACTIONS(466), - [anon_sym_recv] = ACTIONS(466), - [anon_sym_tryrecv] = ACTIONS(466), - [anon_sym_complex] = ACTIONS(466), - [anon_sym_59] = ACTIONS(466), - [anon_sym_rerank] = ACTIONS(466), - [anon_sym_60] = ACTIONS(466), - [anon_sym_fix] = ACTIONS(466), - [anon_sym_61] = ACTIONS(466), - [anon_sym_reduce] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_scan] = ACTIONS(466), - [anon_sym_BSLASH] = ACTIONS(466), - [anon_sym_each] = ACTIONS(466), - [anon_sym_62] = ACTIONS(466), - [anon_sym_rows] = ACTIONS(466), - [anon_sym_63] = ACTIONS(466), - [anon_sym_repeat] = ACTIONS(466), - [anon_sym_64] = ACTIONS(466), - [anon_sym_dip] = ACTIONS(466), - [anon_sym_65] = ACTIONS(466), - [anon_sym_gap] = ACTIONS(466), - [anon_sym_66] = ACTIONS(466), - [anon_sym_invert] = ACTIONS(466), - [anon_sym_67] = ACTIONS(466), - [anon_sym_spawn] = ACTIONS(466), - [anon_sym_pack] = ACTIONS(466), - [anon_sym_68] = ACTIONS(466), - [anon_sym_rectify] = ACTIONS(466), - [anon_sym_69] = ACTIONS(466), - [anon_sym_this] = ACTIONS(466), - [anon_sym_70] = ACTIONS(466), - [anon_sym_recur] = ACTIONS(466), - [anon_sym_71] = ACTIONS(466), - [anon_sym_fold] = ACTIONS(466), - [anon_sym_72] = ACTIONS(466), - [anon_sym_table] = ACTIONS(466), - [anon_sym_73] = ACTIONS(466), - [anon_sym_cross] = ACTIONS(466), - [anon_sym_74] = ACTIONS(466), - [anon_sym_group] = ACTIONS(466), - [anon_sym_75] = ACTIONS(466), - [anon_sym_partition] = ACTIONS(466), - [anon_sym_76] = ACTIONS(466), - [anon_sym_both] = ACTIONS(466), - [anon_sym_77] = ACTIONS(466), - [anon_sym_bracket] = ACTIONS(466), - [anon_sym_78] = ACTIONS(466), - [anon_sym_fork] = ACTIONS(466), - [anon_sym_79] = ACTIONS(466), - [anon_sym_under] = ACTIONS(466), - [anon_sym_80] = ACTIONS(466), - [anon_sym_fill] = ACTIONS(466), - [anon_sym_81] = ACTIONS(466), - [anon_sym_try] = ACTIONS(464), - [anon_sym_82] = ACTIONS(466), - [anon_sym_do] = ACTIONS(464), - [anon_sym_83] = ACTIONS(466), - [anon_sym_all] = ACTIONS(466), - [anon_sym_84] = ACTIONS(466), - [anon_sym_setinv] = ACTIONS(466), - [anon_sym_setunder] = ACTIONS(466), - [anon_sym_85] = ACTIONS(466), - [anon_sym_86] = ACTIONS(466), - [anon_sym_87] = ACTIONS(466), - [anon_sym_88] = ACTIONS(466), - [anon_sym_89] = ACTIONS(466), - [anon_sym_90] = ACTIONS(466), - [anon_sym_91] = ACTIONS(466), - [anon_sym_92] = ACTIONS(466), - [anon_sym_93] = ACTIONS(466), - [anon_sym_94] = ACTIONS(466), - [anon_sym_95] = ACTIONS(466), - [anon_sym_96] = ACTIONS(466), - [sym__endOfLine] = ACTIONS(466), - }, - [116] = { - [ts_builtin_sym_end] = ACTIONS(478), + [102] = { [aux_sym_number_token1] = ACTIONS(476), [sym_fraction] = ACTIONS(478), [anon_sym_os] = ACTIONS(476), @@ -35181,15 +31825,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_character_token1] = ACTIONS(478), [sym_string] = ACTIONS(478), [sym_multiLineString] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(478), [sym_identifier] = ACTIONS(476), [sym_identifierDeprecated] = ACTIONS(476), [sym_system] = ACTIONS(478), [sym_comment] = ACTIONS(476), [sym_openParen] = ACTIONS(478), + [sym_closeParen] = ACTIONS(478), [sym_openCurly] = ACTIONS(478), + [sym_closeCurly] = ACTIONS(478), [sym_openBracket] = ACTIONS(478), + [sym_closeBracket] = ACTIONS(478), [sym_underscore] = ACTIONS(478), [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), [anon_sym_eta] = ACTIONS(478), [anon_sym_2] = ACTIONS(476), [anon_sym_pi] = ACTIONS(476), @@ -35335,6 +31985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(478), [anon_sym_fix] = ACTIONS(478), [anon_sym_61] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), [anon_sym_reduce] = ACTIONS(478), [anon_sym_SLASH] = ACTIONS(478), [anon_sym_scan] = ACTIONS(478), @@ -35396,8970 +32047,3563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(478), [anon_sym_91] = ACTIONS(478), [anon_sym_92] = ACTIONS(478), - [anon_sym_93] = ACTIONS(478), - [anon_sym_94] = ACTIONS(478), - [anon_sym_95] = ACTIONS(478), - [anon_sym_96] = ACTIONS(478), [sym__endOfLine] = ACTIONS(478), }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(442), - [aux_sym_number_token1] = ACTIONS(440), - [sym_fraction] = ACTIONS(442), - [anon_sym_os] = ACTIONS(440), - [anon_sym_Family] = ACTIONS(440), - [anon_sym_Arch] = ACTIONS(440), - [anon_sym_ExeExt] = ACTIONS(440), - [anon_sym_PllExt] = ACTIONS(440), - [anon_sym_Sep] = ACTIONS(440), - [anon_sym_NUmProcs] = ACTIONS(440), - [anon_sym_] = ACTIONS(442), - [aux_sym_character_token1] = ACTIONS(442), - [sym_string] = ACTIONS(442), - [sym_multiLineString] = ACTIONS(442), - [sym_identifier] = ACTIONS(440), - [sym_identifierDeprecated] = ACTIONS(440), - [sym_system] = ACTIONS(442), - [sym_comment] = ACTIONS(440), - [sym_openParen] = ACTIONS(442), - [sym_openCurly] = ACTIONS(442), - [sym_openBracket] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_eta] = ACTIONS(442), - [anon_sym_2] = ACTIONS(440), - [anon_sym_pi] = ACTIONS(440), - [anon_sym_3] = ACTIONS(440), - [anon_sym_tau] = ACTIONS(442), - [anon_sym_4] = ACTIONS(440), - [anon_sym_infinity] = ACTIONS(442), - [anon_sym_5] = ACTIONS(442), - [anon_sym_e] = ACTIONS(440), - [anon_sym_NaN] = ACTIONS(440), - [anon_sym_NumProcs] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_identity] = ACTIONS(442), - [anon_sym_id] = ACTIONS(440), - [anon_sym_6] = ACTIONS(442), - [anon_sym_not] = ACTIONS(442), - [anon_sym_7] = ACTIONS(442), - [anon_sym_sign] = ACTIONS(442), - [anon_sym_8] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_9] = ACTIONS(440), - [anon_sym_absolutevalue] = ACTIONS(442), - [anon_sym_10] = ACTIONS(442), - [anon_sym_sqrt] = ACTIONS(442), - [anon_sym_11] = ACTIONS(442), - [anon_sym_sine] = ACTIONS(442), - [anon_sym_12] = ACTIONS(442), - [anon_sym_floor] = ACTIONS(442), - [anon_sym_13] = ACTIONS(442), - [anon_sym_ceiling] = ACTIONS(442), - [anon_sym_14] = ACTIONS(442), - [anon_sym_round] = ACTIONS(442), - [anon_sym_15] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_16] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_17] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_18] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_19] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_20] = ACTIONS(442), - [anon_sym_modulus] = ACTIONS(442), - [anon_sym_21] = ACTIONS(442), - [anon_sym_power] = ACTIONS(442), - [anon_sym_22] = ACTIONS(442), - [anon_sym_logarithm] = ACTIONS(442), - [anon_sym_23] = ACTIONS(442), - [anon_sym_minimum] = ACTIONS(442), - [anon_sym_24] = ACTIONS(442), - [anon_sym_maximum] = ACTIONS(442), - [anon_sym_25] = ACTIONS(442), - [anon_sym_atangent] = ACTIONS(442), - [anon_sym_26] = ACTIONS(442), - [anon_sym_length] = ACTIONS(442), - [anon_sym_27] = ACTIONS(442), - [anon_sym_shape] = ACTIONS(442), - [anon_sym_28] = ACTIONS(442), - [anon_sym_range] = ACTIONS(442), - [anon_sym_29] = ACTIONS(442), - [anon_sym_first] = ACTIONS(442), - [anon_sym_30] = ACTIONS(442), - [anon_sym_reverse] = ACTIONS(442), - [anon_sym_31] = ACTIONS(442), - [anon_sym_deshape] = ACTIONS(442), - [anon_sym_32] = ACTIONS(442), - [anon_sym_bits] = ACTIONS(442), - [anon_sym_33] = ACTIONS(442), - [anon_sym_transpose] = ACTIONS(442), - [anon_sym_34] = ACTIONS(442), - [anon_sym_rise] = ACTIONS(442), - [anon_sym_35] = ACTIONS(442), - [anon_sym_fall] = ACTIONS(442), - [anon_sym_36] = ACTIONS(442), - [anon_sym_where] = ACTIONS(442), - [anon_sym_37] = ACTIONS(442), - [anon_sym_classify] = ACTIONS(442), - [anon_sym_38] = ACTIONS(442), - [anon_sym_deduplicate] = ACTIONS(442), - [anon_sym_39] = ACTIONS(442), - [anon_sym_box] = ACTIONS(442), - [anon_sym_40] = ACTIONS(442), - [anon_sym_unbox] = ACTIONS(442), - [anon_sym_41] = ACTIONS(442), - [anon_sym_match] = ACTIONS(442), - [anon_sym_42] = ACTIONS(442), - [anon_sym_couple] = ACTIONS(442), - [anon_sym_43] = ACTIONS(442), - [anon_sym_join] = ACTIONS(442), - [anon_sym_44] = ACTIONS(442), - [anon_sym_select] = ACTIONS(442), - [anon_sym_45] = ACTIONS(442), - [anon_sym_pick] = ACTIONS(442), - [anon_sym_46] = ACTIONS(442), - [anon_sym_reshape] = ACTIONS(442), - [anon_sym_47] = ACTIONS(442), - [anon_sym_take] = ACTIONS(442), - [anon_sym_48] = ACTIONS(442), - [anon_sym_drop] = ACTIONS(442), - [anon_sym_49] = ACTIONS(442), - [anon_sym_rotate] = ACTIONS(442), - [anon_sym_50] = ACTIONS(442), - [anon_sym_windows] = ACTIONS(442), - [anon_sym_51] = ACTIONS(442), - [anon_sym_keep] = ACTIONS(442), - [anon_sym_52] = ACTIONS(442), - [anon_sym_find] = ACTIONS(442), - [anon_sym_53] = ACTIONS(442), - [anon_sym_member] = ACTIONS(442), - [anon_sym_54] = ACTIONS(442), - [anon_sym_indexof] = ACTIONS(442), - [anon_sym_55] = ACTIONS(442), - [anon_sym_assert] = ACTIONS(442), - [anon_sym_56] = ACTIONS(442), - [anon_sym_wait] = ACTIONS(442), - [anon_sym_parse] = ACTIONS(442), - [anon_sym_random] = ACTIONS(442), - [anon_sym_57] = ACTIONS(442), - [anon_sym_gen] = ACTIONS(442), - [anon_sym_deal] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_now] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_58] = ACTIONS(442), - [anon_sym_dump] = ACTIONS(442), - [anon_sym_regex] = ACTIONS(442), - [anon_sym_utf] = ACTIONS(442), - [anon_sym_send] = ACTIONS(442), - [anon_sym_recv] = ACTIONS(442), - [anon_sym_tryrecv] = ACTIONS(442), - [anon_sym_complex] = ACTIONS(442), - [anon_sym_59] = ACTIONS(442), - [anon_sym_rerank] = ACTIONS(442), - [anon_sym_60] = ACTIONS(442), - [anon_sym_fix] = ACTIONS(442), - [anon_sym_61] = ACTIONS(442), - [anon_sym_reduce] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_scan] = ACTIONS(442), - [anon_sym_BSLASH] = ACTIONS(442), - [anon_sym_each] = ACTIONS(442), - [anon_sym_62] = ACTIONS(442), - [anon_sym_rows] = ACTIONS(442), - [anon_sym_63] = ACTIONS(442), - [anon_sym_repeat] = ACTIONS(442), - [anon_sym_64] = ACTIONS(442), - [anon_sym_dip] = ACTIONS(442), - [anon_sym_65] = ACTIONS(442), - [anon_sym_gap] = ACTIONS(442), - [anon_sym_66] = ACTIONS(442), - [anon_sym_invert] = ACTIONS(442), - [anon_sym_67] = ACTIONS(442), - [anon_sym_spawn] = ACTIONS(442), - [anon_sym_pack] = ACTIONS(442), - [anon_sym_68] = ACTIONS(442), - [anon_sym_rectify] = ACTIONS(442), - [anon_sym_69] = ACTIONS(442), - [anon_sym_this] = ACTIONS(442), - [anon_sym_70] = ACTIONS(442), - [anon_sym_recur] = ACTIONS(442), - [anon_sym_71] = ACTIONS(442), - [anon_sym_fold] = ACTIONS(442), - [anon_sym_72] = ACTIONS(442), - [anon_sym_table] = ACTIONS(442), - [anon_sym_73] = ACTIONS(442), - [anon_sym_cross] = ACTIONS(442), - [anon_sym_74] = ACTIONS(442), - [anon_sym_group] = ACTIONS(442), - [anon_sym_75] = ACTIONS(442), - [anon_sym_partition] = ACTIONS(442), - [anon_sym_76] = ACTIONS(442), - [anon_sym_both] = ACTIONS(442), - [anon_sym_77] = ACTIONS(442), - [anon_sym_bracket] = ACTIONS(442), - [anon_sym_78] = ACTIONS(442), - [anon_sym_fork] = ACTIONS(442), - [anon_sym_79] = ACTIONS(442), - [anon_sym_under] = ACTIONS(442), - [anon_sym_80] = ACTIONS(442), - [anon_sym_fill] = ACTIONS(442), - [anon_sym_81] = ACTIONS(442), - [anon_sym_try] = ACTIONS(440), - [anon_sym_82] = ACTIONS(442), - [anon_sym_do] = ACTIONS(440), - [anon_sym_83] = ACTIONS(442), - [anon_sym_all] = ACTIONS(442), - [anon_sym_84] = ACTIONS(442), - [anon_sym_setinv] = ACTIONS(442), - [anon_sym_setunder] = ACTIONS(442), - [anon_sym_85] = ACTIONS(442), - [anon_sym_86] = ACTIONS(442), - [anon_sym_87] = ACTIONS(442), - [anon_sym_88] = ACTIONS(442), - [anon_sym_89] = ACTIONS(442), - [anon_sym_90] = ACTIONS(442), - [anon_sym_91] = ACTIONS(442), - [anon_sym_92] = ACTIONS(442), - [anon_sym_93] = ACTIONS(442), - [anon_sym_94] = ACTIONS(442), - [anon_sym_95] = ACTIONS(442), - [anon_sym_96] = ACTIONS(442), - [sym__endOfLine] = ACTIONS(442), + [103] = { + [aux_sym_number_token1] = ACTIONS(556), + [sym_fraction] = ACTIONS(558), + [anon_sym_os] = ACTIONS(556), + [anon_sym_Family] = ACTIONS(556), + [anon_sym_Arch] = ACTIONS(556), + [anon_sym_ExeExt] = ACTIONS(556), + [anon_sym_PllExt] = ACTIONS(556), + [anon_sym_Sep] = ACTIONS(556), + [anon_sym_NUmProcs] = ACTIONS(556), + [anon_sym_] = ACTIONS(558), + [aux_sym_character_token1] = ACTIONS(558), + [sym_string] = ACTIONS(558), + [sym_multiLineString] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(558), + [sym_identifier] = ACTIONS(556), + [sym_identifierDeprecated] = ACTIONS(556), + [sym_system] = ACTIONS(558), + [sym_comment] = ACTIONS(556), + [sym_openParen] = ACTIONS(558), + [sym_closeParen] = ACTIONS(558), + [sym_openCurly] = ACTIONS(558), + [sym_closeCurly] = ACTIONS(558), + [sym_openBracket] = ACTIONS(558), + [sym_closeBracket] = ACTIONS(558), + [sym_underscore] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(558), + [anon_sym_eta] = ACTIONS(558), + [anon_sym_2] = ACTIONS(556), + [anon_sym_pi] = ACTIONS(556), + [anon_sym_3] = ACTIONS(556), + [anon_sym_tau] = ACTIONS(558), + [anon_sym_4] = ACTIONS(556), + [anon_sym_infinity] = ACTIONS(558), + [anon_sym_5] = ACTIONS(558), + [anon_sym_e] = ACTIONS(556), + [anon_sym_NaN] = ACTIONS(556), + [anon_sym_NumProcs] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_identity] = ACTIONS(558), + [anon_sym_id] = ACTIONS(556), + [anon_sym_6] = ACTIONS(558), + [anon_sym_not] = ACTIONS(558), + [anon_sym_7] = ACTIONS(558), + [anon_sym_sign] = ACTIONS(558), + [anon_sym_8] = ACTIONS(558), + [anon_sym_BQUOTE] = ACTIONS(558), + [anon_sym_9] = ACTIONS(556), + [anon_sym_absolutevalue] = ACTIONS(558), + [anon_sym_10] = ACTIONS(558), + [anon_sym_sqrt] = ACTIONS(558), + [anon_sym_11] = ACTIONS(558), + [anon_sym_sine] = ACTIONS(558), + [anon_sym_12] = ACTIONS(558), + [anon_sym_floor] = ACTIONS(558), + [anon_sym_13] = ACTIONS(558), + [anon_sym_ceiling] = ACTIONS(558), + [anon_sym_14] = ACTIONS(558), + [anon_sym_round] = ACTIONS(558), + [anon_sym_15] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_16] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_17] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_18] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_19] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_20] = ACTIONS(558), + [anon_sym_modulus] = ACTIONS(558), + [anon_sym_21] = ACTIONS(558), + [anon_sym_power] = ACTIONS(558), + [anon_sym_22] = ACTIONS(558), + [anon_sym_logarithm] = ACTIONS(558), + [anon_sym_23] = ACTIONS(558), + [anon_sym_minimum] = ACTIONS(558), + [anon_sym_24] = ACTIONS(558), + [anon_sym_maximum] = ACTIONS(558), + [anon_sym_25] = ACTIONS(558), + [anon_sym_atangent] = ACTIONS(558), + [anon_sym_26] = ACTIONS(558), + [anon_sym_length] = ACTIONS(558), + [anon_sym_27] = ACTIONS(558), + [anon_sym_shape] = ACTIONS(558), + [anon_sym_28] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_29] = ACTIONS(558), + [anon_sym_first] = ACTIONS(558), + [anon_sym_30] = ACTIONS(558), + [anon_sym_reverse] = ACTIONS(558), + [anon_sym_31] = ACTIONS(558), + [anon_sym_deshape] = ACTIONS(558), + [anon_sym_32] = ACTIONS(558), + [anon_sym_bits] = ACTIONS(558), + [anon_sym_33] = ACTIONS(558), + [anon_sym_transpose] = ACTIONS(558), + [anon_sym_34] = ACTIONS(558), + [anon_sym_rise] = ACTIONS(558), + [anon_sym_35] = ACTIONS(558), + [anon_sym_fall] = ACTIONS(558), + [anon_sym_36] = ACTIONS(558), + [anon_sym_where] = ACTIONS(558), + [anon_sym_37] = ACTIONS(558), + [anon_sym_classify] = ACTIONS(558), + [anon_sym_38] = ACTIONS(558), + [anon_sym_deduplicate] = ACTIONS(558), + [anon_sym_39] = ACTIONS(558), + [anon_sym_box] = ACTIONS(558), + [anon_sym_40] = ACTIONS(558), + [anon_sym_unbox] = ACTIONS(558), + [anon_sym_41] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_42] = ACTIONS(558), + [anon_sym_couple] = ACTIONS(558), + [anon_sym_43] = ACTIONS(558), + [anon_sym_join] = ACTIONS(558), + [anon_sym_44] = ACTIONS(558), + [anon_sym_select] = ACTIONS(558), + [anon_sym_45] = ACTIONS(558), + [anon_sym_pick] = ACTIONS(558), + [anon_sym_46] = ACTIONS(558), + [anon_sym_reshape] = ACTIONS(558), + [anon_sym_47] = ACTIONS(558), + [anon_sym_take] = ACTIONS(558), + [anon_sym_48] = ACTIONS(558), + [anon_sym_drop] = ACTIONS(558), + [anon_sym_49] = ACTIONS(558), + [anon_sym_rotate] = ACTIONS(558), + [anon_sym_50] = ACTIONS(558), + [anon_sym_windows] = ACTIONS(558), + [anon_sym_51] = ACTIONS(558), + [anon_sym_keep] = ACTIONS(558), + [anon_sym_52] = ACTIONS(558), + [anon_sym_find] = ACTIONS(558), + [anon_sym_53] = ACTIONS(558), + [anon_sym_member] = ACTIONS(558), + [anon_sym_54] = ACTIONS(558), + [anon_sym_indexof] = ACTIONS(558), + [anon_sym_55] = ACTIONS(558), + [anon_sym_assert] = ACTIONS(558), + [anon_sym_56] = ACTIONS(558), + [anon_sym_wait] = ACTIONS(558), + [anon_sym_parse] = ACTIONS(558), + [anon_sym_random] = ACTIONS(558), + [anon_sym_57] = ACTIONS(558), + [anon_sym_gen] = ACTIONS(558), + [anon_sym_deal] = ACTIONS(558), + [anon_sym_tag] = ACTIONS(558), + [anon_sym_now] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_58] = ACTIONS(558), + [anon_sym_dump] = ACTIONS(558), + [anon_sym_regex] = ACTIONS(558), + [anon_sym_utf] = ACTIONS(558), + [anon_sym_send] = ACTIONS(558), + [anon_sym_recv] = ACTIONS(558), + [anon_sym_tryrecv] = ACTIONS(558), + [anon_sym_complex] = ACTIONS(558), + [anon_sym_59] = ACTIONS(558), + [anon_sym_rerank] = ACTIONS(558), + [anon_sym_60] = ACTIONS(558), + [anon_sym_fix] = ACTIONS(558), + [anon_sym_61] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_reduce] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_scan] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(558), + [anon_sym_each] = ACTIONS(558), + [anon_sym_62] = ACTIONS(558), + [anon_sym_rows] = ACTIONS(558), + [anon_sym_63] = ACTIONS(558), + [anon_sym_repeat] = ACTIONS(558), + [anon_sym_64] = ACTIONS(558), + [anon_sym_dip] = ACTIONS(558), + [anon_sym_65] = ACTIONS(558), + [anon_sym_gap] = ACTIONS(558), + [anon_sym_66] = ACTIONS(558), + [anon_sym_invert] = ACTIONS(558), + [anon_sym_67] = ACTIONS(558), + [anon_sym_spawn] = ACTIONS(558), + [anon_sym_pack] = ACTIONS(558), + [anon_sym_68] = ACTIONS(558), + [anon_sym_rectify] = ACTIONS(558), + [anon_sym_69] = ACTIONS(558), + [anon_sym_this] = ACTIONS(558), + [anon_sym_70] = ACTIONS(558), + [anon_sym_recur] = ACTIONS(558), + [anon_sym_71] = ACTIONS(558), + [anon_sym_fold] = ACTIONS(558), + [anon_sym_72] = ACTIONS(558), + [anon_sym_table] = ACTIONS(558), + [anon_sym_73] = ACTIONS(558), + [anon_sym_cross] = ACTIONS(558), + [anon_sym_74] = ACTIONS(558), + [anon_sym_group] = ACTIONS(558), + [anon_sym_75] = ACTIONS(558), + [anon_sym_partition] = ACTIONS(558), + [anon_sym_76] = ACTIONS(558), + [anon_sym_both] = ACTIONS(558), + [anon_sym_77] = ACTIONS(558), + [anon_sym_bracket] = ACTIONS(558), + [anon_sym_78] = ACTIONS(558), + [anon_sym_fork] = ACTIONS(558), + [anon_sym_79] = ACTIONS(558), + [anon_sym_under] = ACTIONS(558), + [anon_sym_80] = ACTIONS(558), + [anon_sym_fill] = ACTIONS(558), + [anon_sym_81] = ACTIONS(558), + [anon_sym_try] = ACTIONS(556), + [anon_sym_82] = ACTIONS(558), + [anon_sym_do] = ACTIONS(556), + [anon_sym_83] = ACTIONS(558), + [anon_sym_all] = ACTIONS(558), + [anon_sym_84] = ACTIONS(558), + [anon_sym_setinv] = ACTIONS(558), + [anon_sym_setunder] = ACTIONS(558), + [anon_sym_85] = ACTIONS(558), + [anon_sym_86] = ACTIONS(558), + [anon_sym_87] = ACTIONS(558), + [anon_sym_88] = ACTIONS(558), + [anon_sym_89] = ACTIONS(558), + [anon_sym_90] = ACTIONS(558), + [anon_sym_91] = ACTIONS(558), + [anon_sym_92] = ACTIONS(558), + [sym__endOfLine] = ACTIONS(558), }, - [118] = { - [ts_builtin_sym_end] = ACTIONS(486), - [aux_sym_number_token1] = ACTIONS(484), - [sym_fraction] = ACTIONS(486), - [anon_sym_os] = ACTIONS(484), - [anon_sym_Family] = ACTIONS(484), - [anon_sym_Arch] = ACTIONS(484), - [anon_sym_ExeExt] = ACTIONS(484), - [anon_sym_PllExt] = ACTIONS(484), - [anon_sym_Sep] = ACTIONS(484), - [anon_sym_NUmProcs] = ACTIONS(484), - [anon_sym_] = ACTIONS(486), - [aux_sym_character_token1] = ACTIONS(486), - [sym_string] = ACTIONS(486), - [sym_multiLineString] = ACTIONS(486), - [sym_identifier] = ACTIONS(484), - [sym_identifierDeprecated] = ACTIONS(484), - [sym_system] = ACTIONS(486), - [sym_comment] = ACTIONS(484), - [sym_openParen] = ACTIONS(486), - [sym_openCurly] = ACTIONS(486), - [sym_openBracket] = ACTIONS(486), - [sym_underscore] = ACTIONS(486), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_eta] = ACTIONS(486), - [anon_sym_2] = ACTIONS(484), - [anon_sym_pi] = ACTIONS(484), - [anon_sym_3] = ACTIONS(484), - [anon_sym_tau] = ACTIONS(486), - [anon_sym_4] = ACTIONS(484), - [anon_sym_infinity] = ACTIONS(486), - [anon_sym_5] = ACTIONS(486), - [anon_sym_e] = ACTIONS(484), - [anon_sym_NaN] = ACTIONS(484), - [anon_sym_NumProcs] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_identity] = ACTIONS(486), - [anon_sym_id] = ACTIONS(484), - [anon_sym_6] = ACTIONS(486), - [anon_sym_not] = ACTIONS(486), - [anon_sym_7] = ACTIONS(486), - [anon_sym_sign] = ACTIONS(486), - [anon_sym_8] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_9] = ACTIONS(484), - [anon_sym_absolutevalue] = ACTIONS(486), - [anon_sym_10] = ACTIONS(486), - [anon_sym_sqrt] = ACTIONS(486), - [anon_sym_11] = ACTIONS(486), - [anon_sym_sine] = ACTIONS(486), - [anon_sym_12] = ACTIONS(486), - [anon_sym_floor] = ACTIONS(486), - [anon_sym_13] = ACTIONS(486), - [anon_sym_ceiling] = ACTIONS(486), - [anon_sym_14] = ACTIONS(486), - [anon_sym_round] = ACTIONS(486), - [anon_sym_15] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_16] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_17] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_18] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_19] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_20] = ACTIONS(486), - [anon_sym_modulus] = ACTIONS(486), - [anon_sym_21] = ACTIONS(486), - [anon_sym_power] = ACTIONS(486), - [anon_sym_22] = ACTIONS(486), - [anon_sym_logarithm] = ACTIONS(486), - [anon_sym_23] = ACTIONS(486), - [anon_sym_minimum] = ACTIONS(486), - [anon_sym_24] = ACTIONS(486), - [anon_sym_maximum] = ACTIONS(486), - [anon_sym_25] = ACTIONS(486), - [anon_sym_atangent] = ACTIONS(486), - [anon_sym_26] = ACTIONS(486), - [anon_sym_length] = ACTIONS(486), - [anon_sym_27] = ACTIONS(486), - [anon_sym_shape] = ACTIONS(486), - [anon_sym_28] = ACTIONS(486), - [anon_sym_range] = ACTIONS(486), - [anon_sym_29] = ACTIONS(486), - [anon_sym_first] = ACTIONS(486), - [anon_sym_30] = ACTIONS(486), - [anon_sym_reverse] = ACTIONS(486), - [anon_sym_31] = ACTIONS(486), - [anon_sym_deshape] = ACTIONS(486), - [anon_sym_32] = ACTIONS(486), - [anon_sym_bits] = ACTIONS(486), - [anon_sym_33] = ACTIONS(486), - [anon_sym_transpose] = ACTIONS(486), - [anon_sym_34] = ACTIONS(486), - [anon_sym_rise] = ACTIONS(486), - [anon_sym_35] = ACTIONS(486), - [anon_sym_fall] = ACTIONS(486), - [anon_sym_36] = ACTIONS(486), - [anon_sym_where] = ACTIONS(486), - [anon_sym_37] = ACTIONS(486), - [anon_sym_classify] = ACTIONS(486), - [anon_sym_38] = ACTIONS(486), - [anon_sym_deduplicate] = ACTIONS(486), - [anon_sym_39] = ACTIONS(486), - [anon_sym_box] = ACTIONS(486), - [anon_sym_40] = ACTIONS(486), - [anon_sym_unbox] = ACTIONS(486), - [anon_sym_41] = ACTIONS(486), - [anon_sym_match] = ACTIONS(486), - [anon_sym_42] = ACTIONS(486), - [anon_sym_couple] = ACTIONS(486), - [anon_sym_43] = ACTIONS(486), - [anon_sym_join] = ACTIONS(486), - [anon_sym_44] = ACTIONS(486), - [anon_sym_select] = ACTIONS(486), - [anon_sym_45] = ACTIONS(486), - [anon_sym_pick] = ACTIONS(486), - [anon_sym_46] = ACTIONS(486), - [anon_sym_reshape] = ACTIONS(486), - [anon_sym_47] = ACTIONS(486), - [anon_sym_take] = ACTIONS(486), - [anon_sym_48] = ACTIONS(486), - [anon_sym_drop] = ACTIONS(486), - [anon_sym_49] = ACTIONS(486), - [anon_sym_rotate] = ACTIONS(486), - [anon_sym_50] = ACTIONS(486), - [anon_sym_windows] = ACTIONS(486), - [anon_sym_51] = ACTIONS(486), - [anon_sym_keep] = ACTIONS(486), - [anon_sym_52] = ACTIONS(486), - [anon_sym_find] = ACTIONS(486), - [anon_sym_53] = ACTIONS(486), - [anon_sym_member] = ACTIONS(486), - [anon_sym_54] = ACTIONS(486), - [anon_sym_indexof] = ACTIONS(486), - [anon_sym_55] = ACTIONS(486), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_56] = ACTIONS(486), - [anon_sym_wait] = ACTIONS(486), - [anon_sym_parse] = ACTIONS(486), - [anon_sym_random] = ACTIONS(486), - [anon_sym_57] = ACTIONS(486), - [anon_sym_gen] = ACTIONS(486), - [anon_sym_deal] = ACTIONS(486), - [anon_sym_tag] = ACTIONS(486), - [anon_sym_now] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_58] = ACTIONS(486), - [anon_sym_dump] = ACTIONS(486), - [anon_sym_regex] = ACTIONS(486), - [anon_sym_utf] = ACTIONS(486), - [anon_sym_send] = ACTIONS(486), - [anon_sym_recv] = ACTIONS(486), - [anon_sym_tryrecv] = ACTIONS(486), - [anon_sym_complex] = ACTIONS(486), - [anon_sym_59] = ACTIONS(486), - [anon_sym_rerank] = ACTIONS(486), - [anon_sym_60] = ACTIONS(486), - [anon_sym_fix] = ACTIONS(486), - [anon_sym_61] = ACTIONS(486), - [anon_sym_reduce] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_scan] = ACTIONS(486), - [anon_sym_BSLASH] = ACTIONS(486), - [anon_sym_each] = ACTIONS(486), - [anon_sym_62] = ACTIONS(486), - [anon_sym_rows] = ACTIONS(486), - [anon_sym_63] = ACTIONS(486), - [anon_sym_repeat] = ACTIONS(486), - [anon_sym_64] = ACTIONS(486), - [anon_sym_dip] = ACTIONS(486), - [anon_sym_65] = ACTIONS(486), - [anon_sym_gap] = ACTIONS(486), - [anon_sym_66] = ACTIONS(486), - [anon_sym_invert] = ACTIONS(486), - [anon_sym_67] = ACTIONS(486), - [anon_sym_spawn] = ACTIONS(486), - [anon_sym_pack] = ACTIONS(486), - [anon_sym_68] = ACTIONS(486), - [anon_sym_rectify] = ACTIONS(486), - [anon_sym_69] = ACTIONS(486), - [anon_sym_this] = ACTIONS(486), - [anon_sym_70] = ACTIONS(486), - [anon_sym_recur] = ACTIONS(486), - [anon_sym_71] = ACTIONS(486), - [anon_sym_fold] = ACTIONS(486), - [anon_sym_72] = ACTIONS(486), - [anon_sym_table] = ACTIONS(486), - [anon_sym_73] = ACTIONS(486), - [anon_sym_cross] = ACTIONS(486), - [anon_sym_74] = ACTIONS(486), - [anon_sym_group] = ACTIONS(486), - [anon_sym_75] = ACTIONS(486), - [anon_sym_partition] = ACTIONS(486), - [anon_sym_76] = ACTIONS(486), - [anon_sym_both] = ACTIONS(486), - [anon_sym_77] = ACTIONS(486), - [anon_sym_bracket] = ACTIONS(486), - [anon_sym_78] = ACTIONS(486), - [anon_sym_fork] = ACTIONS(486), - [anon_sym_79] = ACTIONS(486), - [anon_sym_under] = ACTIONS(486), - [anon_sym_80] = ACTIONS(486), - [anon_sym_fill] = ACTIONS(486), - [anon_sym_81] = ACTIONS(486), - [anon_sym_try] = ACTIONS(484), - [anon_sym_82] = ACTIONS(486), - [anon_sym_do] = ACTIONS(484), - [anon_sym_83] = ACTIONS(486), - [anon_sym_all] = ACTIONS(486), - [anon_sym_84] = ACTIONS(486), - [anon_sym_setinv] = ACTIONS(486), - [anon_sym_setunder] = ACTIONS(486), - [anon_sym_85] = ACTIONS(486), - [anon_sym_86] = ACTIONS(486), - [anon_sym_87] = ACTIONS(486), - [anon_sym_88] = ACTIONS(486), - [anon_sym_89] = ACTIONS(486), - [anon_sym_90] = ACTIONS(486), - [anon_sym_91] = ACTIONS(486), - [anon_sym_92] = ACTIONS(486), - [anon_sym_93] = ACTIONS(486), - [anon_sym_94] = ACTIONS(486), - [anon_sym_95] = ACTIONS(486), - [anon_sym_96] = ACTIONS(486), - [sym__endOfLine] = ACTIONS(486), + [104] = { + [aux_sym_number_token1] = ACTIONS(560), + [sym_fraction] = ACTIONS(562), + [anon_sym_os] = ACTIONS(560), + [anon_sym_Family] = ACTIONS(560), + [anon_sym_Arch] = ACTIONS(560), + [anon_sym_ExeExt] = ACTIONS(560), + [anon_sym_PllExt] = ACTIONS(560), + [anon_sym_Sep] = ACTIONS(560), + [anon_sym_NUmProcs] = ACTIONS(560), + [anon_sym_] = ACTIONS(562), + [aux_sym_character_token1] = ACTIONS(562), + [sym_string] = ACTIONS(562), + [sym_multiLineString] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), + [sym_identifierDeprecated] = ACTIONS(560), + [sym_system] = ACTIONS(562), + [sym_comment] = ACTIONS(560), + [sym_openParen] = ACTIONS(562), + [sym_closeParen] = ACTIONS(562), + [sym_openCurly] = ACTIONS(562), + [sym_closeCurly] = ACTIONS(562), + [sym_openBracket] = ACTIONS(562), + [sym_closeBracket] = ACTIONS(562), + [sym_underscore] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(562), + [anon_sym_eta] = ACTIONS(562), + [anon_sym_2] = ACTIONS(560), + [anon_sym_pi] = ACTIONS(560), + [anon_sym_3] = ACTIONS(560), + [anon_sym_tau] = ACTIONS(562), + [anon_sym_4] = ACTIONS(560), + [anon_sym_infinity] = ACTIONS(562), + [anon_sym_5] = ACTIONS(562), + [anon_sym_e] = ACTIONS(560), + [anon_sym_NaN] = ACTIONS(560), + [anon_sym_NumProcs] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_identity] = ACTIONS(562), + [anon_sym_id] = ACTIONS(560), + [anon_sym_6] = ACTIONS(562), + [anon_sym_not] = ACTIONS(562), + [anon_sym_7] = ACTIONS(562), + [anon_sym_sign] = ACTIONS(562), + [anon_sym_8] = ACTIONS(562), + [anon_sym_BQUOTE] = ACTIONS(562), + [anon_sym_9] = ACTIONS(560), + [anon_sym_absolutevalue] = ACTIONS(562), + [anon_sym_10] = ACTIONS(562), + [anon_sym_sqrt] = ACTIONS(562), + [anon_sym_11] = ACTIONS(562), + [anon_sym_sine] = ACTIONS(562), + [anon_sym_12] = ACTIONS(562), + [anon_sym_floor] = ACTIONS(562), + [anon_sym_13] = ACTIONS(562), + [anon_sym_ceiling] = ACTIONS(562), + [anon_sym_14] = ACTIONS(562), + [anon_sym_round] = ACTIONS(562), + [anon_sym_15] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_16] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_17] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_18] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_19] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_20] = ACTIONS(562), + [anon_sym_modulus] = ACTIONS(562), + [anon_sym_21] = ACTIONS(562), + [anon_sym_power] = ACTIONS(562), + [anon_sym_22] = ACTIONS(562), + [anon_sym_logarithm] = ACTIONS(562), + [anon_sym_23] = ACTIONS(562), + [anon_sym_minimum] = ACTIONS(562), + [anon_sym_24] = ACTIONS(562), + [anon_sym_maximum] = ACTIONS(562), + [anon_sym_25] = ACTIONS(562), + [anon_sym_atangent] = ACTIONS(562), + [anon_sym_26] = ACTIONS(562), + [anon_sym_length] = ACTIONS(562), + [anon_sym_27] = ACTIONS(562), + [anon_sym_shape] = ACTIONS(562), + [anon_sym_28] = ACTIONS(562), + [anon_sym_range] = ACTIONS(562), + [anon_sym_29] = ACTIONS(562), + [anon_sym_first] = ACTIONS(562), + [anon_sym_30] = ACTIONS(562), + [anon_sym_reverse] = ACTIONS(562), + [anon_sym_31] = ACTIONS(562), + [anon_sym_deshape] = ACTIONS(562), + [anon_sym_32] = ACTIONS(562), + [anon_sym_bits] = ACTIONS(562), + [anon_sym_33] = ACTIONS(562), + [anon_sym_transpose] = ACTIONS(562), + [anon_sym_34] = ACTIONS(562), + [anon_sym_rise] = ACTIONS(562), + [anon_sym_35] = ACTIONS(562), + [anon_sym_fall] = ACTIONS(562), + [anon_sym_36] = ACTIONS(562), + [anon_sym_where] = ACTIONS(562), + [anon_sym_37] = ACTIONS(562), + [anon_sym_classify] = ACTIONS(562), + [anon_sym_38] = ACTIONS(562), + [anon_sym_deduplicate] = ACTIONS(562), + [anon_sym_39] = ACTIONS(562), + [anon_sym_box] = ACTIONS(562), + [anon_sym_40] = ACTIONS(562), + [anon_sym_unbox] = ACTIONS(562), + [anon_sym_41] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_42] = ACTIONS(562), + [anon_sym_couple] = ACTIONS(562), + [anon_sym_43] = ACTIONS(562), + [anon_sym_join] = ACTIONS(562), + [anon_sym_44] = ACTIONS(562), + [anon_sym_select] = ACTIONS(562), + [anon_sym_45] = ACTIONS(562), + [anon_sym_pick] = ACTIONS(562), + [anon_sym_46] = ACTIONS(562), + [anon_sym_reshape] = ACTIONS(562), + [anon_sym_47] = ACTIONS(562), + [anon_sym_take] = ACTIONS(562), + [anon_sym_48] = ACTIONS(562), + [anon_sym_drop] = ACTIONS(562), + [anon_sym_49] = ACTIONS(562), + [anon_sym_rotate] = ACTIONS(562), + [anon_sym_50] = ACTIONS(562), + [anon_sym_windows] = ACTIONS(562), + [anon_sym_51] = ACTIONS(562), + [anon_sym_keep] = ACTIONS(562), + [anon_sym_52] = ACTIONS(562), + [anon_sym_find] = ACTIONS(562), + [anon_sym_53] = ACTIONS(562), + [anon_sym_member] = ACTIONS(562), + [anon_sym_54] = ACTIONS(562), + [anon_sym_indexof] = ACTIONS(562), + [anon_sym_55] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(562), + [anon_sym_56] = ACTIONS(562), + [anon_sym_wait] = ACTIONS(562), + [anon_sym_parse] = ACTIONS(562), + [anon_sym_random] = ACTIONS(562), + [anon_sym_57] = ACTIONS(562), + [anon_sym_gen] = ACTIONS(562), + [anon_sym_deal] = ACTIONS(562), + [anon_sym_tag] = ACTIONS(562), + [anon_sym_now] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_58] = ACTIONS(562), + [anon_sym_dump] = ACTIONS(562), + [anon_sym_regex] = ACTIONS(562), + [anon_sym_utf] = ACTIONS(562), + [anon_sym_send] = ACTIONS(562), + [anon_sym_recv] = ACTIONS(562), + [anon_sym_tryrecv] = ACTIONS(562), + [anon_sym_complex] = ACTIONS(562), + [anon_sym_59] = ACTIONS(562), + [anon_sym_rerank] = ACTIONS(562), + [anon_sym_60] = ACTIONS(562), + [anon_sym_fix] = ACTIONS(562), + [anon_sym_61] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_reduce] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_scan] = ACTIONS(562), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_each] = ACTIONS(562), + [anon_sym_62] = ACTIONS(562), + [anon_sym_rows] = ACTIONS(562), + [anon_sym_63] = ACTIONS(562), + [anon_sym_repeat] = ACTIONS(562), + [anon_sym_64] = ACTIONS(562), + [anon_sym_dip] = ACTIONS(562), + [anon_sym_65] = ACTIONS(562), + [anon_sym_gap] = ACTIONS(562), + [anon_sym_66] = ACTIONS(562), + [anon_sym_invert] = ACTIONS(562), + [anon_sym_67] = ACTIONS(562), + [anon_sym_spawn] = ACTIONS(562), + [anon_sym_pack] = ACTIONS(562), + [anon_sym_68] = ACTIONS(562), + [anon_sym_rectify] = ACTIONS(562), + [anon_sym_69] = ACTIONS(562), + [anon_sym_this] = ACTIONS(562), + [anon_sym_70] = ACTIONS(562), + [anon_sym_recur] = ACTIONS(562), + [anon_sym_71] = ACTIONS(562), + [anon_sym_fold] = ACTIONS(562), + [anon_sym_72] = ACTIONS(562), + [anon_sym_table] = ACTIONS(562), + [anon_sym_73] = ACTIONS(562), + [anon_sym_cross] = ACTIONS(562), + [anon_sym_74] = ACTIONS(562), + [anon_sym_group] = ACTIONS(562), + [anon_sym_75] = ACTIONS(562), + [anon_sym_partition] = ACTIONS(562), + [anon_sym_76] = ACTIONS(562), + [anon_sym_both] = ACTIONS(562), + [anon_sym_77] = ACTIONS(562), + [anon_sym_bracket] = ACTIONS(562), + [anon_sym_78] = ACTIONS(562), + [anon_sym_fork] = ACTIONS(562), + [anon_sym_79] = ACTIONS(562), + [anon_sym_under] = ACTIONS(562), + [anon_sym_80] = ACTIONS(562), + [anon_sym_fill] = ACTIONS(562), + [anon_sym_81] = ACTIONS(562), + [anon_sym_try] = ACTIONS(560), + [anon_sym_82] = ACTIONS(562), + [anon_sym_do] = ACTIONS(560), + [anon_sym_83] = ACTIONS(562), + [anon_sym_all] = ACTIONS(562), + [anon_sym_84] = ACTIONS(562), + [anon_sym_setinv] = ACTIONS(562), + [anon_sym_setunder] = ACTIONS(562), + [anon_sym_85] = ACTIONS(562), + [anon_sym_86] = ACTIONS(562), + [anon_sym_87] = ACTIONS(562), + [anon_sym_88] = ACTIONS(562), + [anon_sym_89] = ACTIONS(562), + [anon_sym_90] = ACTIONS(562), + [anon_sym_91] = ACTIONS(562), + [anon_sym_92] = ACTIONS(562), + [sym__endOfLine] = ACTIONS(562), }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(522), - [aux_sym_number_token1] = ACTIONS(520), - [sym_fraction] = ACTIONS(522), - [anon_sym_os] = ACTIONS(520), - [anon_sym_Family] = ACTIONS(520), - [anon_sym_Arch] = ACTIONS(520), - [anon_sym_ExeExt] = ACTIONS(520), - [anon_sym_PllExt] = ACTIONS(520), - [anon_sym_Sep] = ACTIONS(520), - [anon_sym_NUmProcs] = ACTIONS(520), - [anon_sym_] = ACTIONS(522), - [aux_sym_character_token1] = ACTIONS(522), - [sym_string] = ACTIONS(522), - [sym_multiLineString] = ACTIONS(522), - [sym_identifier] = ACTIONS(520), - [sym_identifierDeprecated] = ACTIONS(520), - [sym_system] = ACTIONS(522), - [sym_comment] = ACTIONS(520), - [sym_openParen] = ACTIONS(522), - [sym_openCurly] = ACTIONS(522), - [sym_openBracket] = ACTIONS(522), - [sym_underscore] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_eta] = ACTIONS(522), - [anon_sym_2] = ACTIONS(520), - [anon_sym_pi] = ACTIONS(520), - [anon_sym_3] = ACTIONS(520), - [anon_sym_tau] = ACTIONS(522), - [anon_sym_4] = ACTIONS(520), - [anon_sym_infinity] = ACTIONS(522), - [anon_sym_5] = ACTIONS(522), - [anon_sym_e] = ACTIONS(520), - [anon_sym_NaN] = ACTIONS(520), - [anon_sym_NumProcs] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_identity] = ACTIONS(522), - [anon_sym_id] = ACTIONS(520), - [anon_sym_6] = ACTIONS(522), - [anon_sym_not] = ACTIONS(522), - [anon_sym_7] = ACTIONS(522), - [anon_sym_sign] = ACTIONS(522), - [anon_sym_8] = ACTIONS(522), - [anon_sym_BQUOTE] = ACTIONS(522), - [anon_sym_9] = ACTIONS(520), - [anon_sym_absolutevalue] = ACTIONS(522), - [anon_sym_10] = ACTIONS(522), - [anon_sym_sqrt] = ACTIONS(522), - [anon_sym_11] = ACTIONS(522), - [anon_sym_sine] = ACTIONS(522), - [anon_sym_12] = ACTIONS(522), - [anon_sym_floor] = ACTIONS(522), - [anon_sym_13] = ACTIONS(522), - [anon_sym_ceiling] = ACTIONS(522), - [anon_sym_14] = ACTIONS(522), - [anon_sym_round] = ACTIONS(522), - [anon_sym_15] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_16] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_17] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_18] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_19] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_20] = ACTIONS(522), - [anon_sym_modulus] = ACTIONS(522), - [anon_sym_21] = ACTIONS(522), - [anon_sym_power] = ACTIONS(522), - [anon_sym_22] = ACTIONS(522), - [anon_sym_logarithm] = ACTIONS(522), - [anon_sym_23] = ACTIONS(522), - [anon_sym_minimum] = ACTIONS(522), - [anon_sym_24] = ACTIONS(522), - [anon_sym_maximum] = ACTIONS(522), - [anon_sym_25] = ACTIONS(522), - [anon_sym_atangent] = ACTIONS(522), - [anon_sym_26] = ACTIONS(522), - [anon_sym_length] = ACTIONS(522), - [anon_sym_27] = ACTIONS(522), - [anon_sym_shape] = ACTIONS(522), - [anon_sym_28] = ACTIONS(522), - [anon_sym_range] = ACTIONS(522), - [anon_sym_29] = ACTIONS(522), - [anon_sym_first] = ACTIONS(522), - [anon_sym_30] = ACTIONS(522), - [anon_sym_reverse] = ACTIONS(522), - [anon_sym_31] = ACTIONS(522), - [anon_sym_deshape] = ACTIONS(522), - [anon_sym_32] = ACTIONS(522), - [anon_sym_bits] = ACTIONS(522), - [anon_sym_33] = ACTIONS(522), - [anon_sym_transpose] = ACTIONS(522), - [anon_sym_34] = ACTIONS(522), - [anon_sym_rise] = ACTIONS(522), - [anon_sym_35] = ACTIONS(522), - [anon_sym_fall] = ACTIONS(522), - [anon_sym_36] = ACTIONS(522), - [anon_sym_where] = ACTIONS(522), - [anon_sym_37] = ACTIONS(522), - [anon_sym_classify] = ACTIONS(522), - [anon_sym_38] = ACTIONS(522), - [anon_sym_deduplicate] = ACTIONS(522), - [anon_sym_39] = ACTIONS(522), - [anon_sym_box] = ACTIONS(522), - [anon_sym_40] = ACTIONS(522), - [anon_sym_unbox] = ACTIONS(522), - [anon_sym_41] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [anon_sym_42] = ACTIONS(522), - [anon_sym_couple] = ACTIONS(522), - [anon_sym_43] = ACTIONS(522), - [anon_sym_join] = ACTIONS(522), - [anon_sym_44] = ACTIONS(522), - [anon_sym_select] = ACTIONS(522), - [anon_sym_45] = ACTIONS(522), - [anon_sym_pick] = ACTIONS(522), - [anon_sym_46] = ACTIONS(522), - [anon_sym_reshape] = ACTIONS(522), - [anon_sym_47] = ACTIONS(522), - [anon_sym_take] = ACTIONS(522), - [anon_sym_48] = ACTIONS(522), - [anon_sym_drop] = ACTIONS(522), - [anon_sym_49] = ACTIONS(522), - [anon_sym_rotate] = ACTIONS(522), - [anon_sym_50] = ACTIONS(522), - [anon_sym_windows] = ACTIONS(522), - [anon_sym_51] = ACTIONS(522), - [anon_sym_keep] = ACTIONS(522), - [anon_sym_52] = ACTIONS(522), - [anon_sym_find] = ACTIONS(522), - [anon_sym_53] = ACTIONS(522), - [anon_sym_member] = ACTIONS(522), - [anon_sym_54] = ACTIONS(522), - [anon_sym_indexof] = ACTIONS(522), - [anon_sym_55] = ACTIONS(522), - [anon_sym_assert] = ACTIONS(522), - [anon_sym_56] = ACTIONS(522), - [anon_sym_wait] = ACTIONS(522), - [anon_sym_parse] = ACTIONS(522), - [anon_sym_random] = ACTIONS(522), - [anon_sym_57] = ACTIONS(522), - [anon_sym_gen] = ACTIONS(522), - [anon_sym_deal] = ACTIONS(522), - [anon_sym_tag] = ACTIONS(522), - [anon_sym_now] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_58] = ACTIONS(522), - [anon_sym_dump] = ACTIONS(522), - [anon_sym_regex] = ACTIONS(522), - [anon_sym_utf] = ACTIONS(522), - [anon_sym_send] = ACTIONS(522), - [anon_sym_recv] = ACTIONS(522), - [anon_sym_tryrecv] = ACTIONS(522), - [anon_sym_complex] = ACTIONS(522), - [anon_sym_59] = ACTIONS(522), - [anon_sym_rerank] = ACTIONS(522), - [anon_sym_60] = ACTIONS(522), - [anon_sym_fix] = ACTIONS(522), - [anon_sym_61] = ACTIONS(522), - [anon_sym_reduce] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_scan] = ACTIONS(522), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_each] = ACTIONS(522), - [anon_sym_62] = ACTIONS(522), - [anon_sym_rows] = ACTIONS(522), - [anon_sym_63] = ACTIONS(522), - [anon_sym_repeat] = ACTIONS(522), - [anon_sym_64] = ACTIONS(522), - [anon_sym_dip] = ACTIONS(522), - [anon_sym_65] = ACTIONS(522), - [anon_sym_gap] = ACTIONS(522), - [anon_sym_66] = ACTIONS(522), - [anon_sym_invert] = ACTIONS(522), - [anon_sym_67] = ACTIONS(522), - [anon_sym_spawn] = ACTIONS(522), - [anon_sym_pack] = ACTIONS(522), - [anon_sym_68] = ACTIONS(522), - [anon_sym_rectify] = ACTIONS(522), - [anon_sym_69] = ACTIONS(522), - [anon_sym_this] = ACTIONS(522), - [anon_sym_70] = ACTIONS(522), - [anon_sym_recur] = ACTIONS(522), - [anon_sym_71] = ACTIONS(522), - [anon_sym_fold] = ACTIONS(522), - [anon_sym_72] = ACTIONS(522), - [anon_sym_table] = ACTIONS(522), - [anon_sym_73] = ACTIONS(522), - [anon_sym_cross] = ACTIONS(522), - [anon_sym_74] = ACTIONS(522), - [anon_sym_group] = ACTIONS(522), - [anon_sym_75] = ACTIONS(522), - [anon_sym_partition] = ACTIONS(522), - [anon_sym_76] = ACTIONS(522), - [anon_sym_both] = ACTIONS(522), - [anon_sym_77] = ACTIONS(522), - [anon_sym_bracket] = ACTIONS(522), - [anon_sym_78] = ACTIONS(522), - [anon_sym_fork] = ACTIONS(522), - [anon_sym_79] = ACTIONS(522), - [anon_sym_under] = ACTIONS(522), - [anon_sym_80] = ACTIONS(522), - [anon_sym_fill] = ACTIONS(522), - [anon_sym_81] = ACTIONS(522), - [anon_sym_try] = ACTIONS(520), - [anon_sym_82] = ACTIONS(522), - [anon_sym_do] = ACTIONS(520), - [anon_sym_83] = ACTIONS(522), - [anon_sym_all] = ACTIONS(522), - [anon_sym_84] = ACTIONS(522), - [anon_sym_setinv] = ACTIONS(522), - [anon_sym_setunder] = ACTIONS(522), - [anon_sym_85] = ACTIONS(522), - [anon_sym_86] = ACTIONS(522), - [anon_sym_87] = ACTIONS(522), - [anon_sym_88] = ACTIONS(522), - [anon_sym_89] = ACTIONS(522), - [anon_sym_90] = ACTIONS(522), - [anon_sym_91] = ACTIONS(522), - [anon_sym_92] = ACTIONS(522), - [anon_sym_93] = ACTIONS(522), - [anon_sym_94] = ACTIONS(522), - [anon_sym_95] = ACTIONS(522), - [anon_sym_96] = ACTIONS(522), - [sym__endOfLine] = ACTIONS(522), + [105] = { + [aux_sym_number_token1] = ACTIONS(564), + [sym_fraction] = ACTIONS(566), + [anon_sym_os] = ACTIONS(564), + [anon_sym_Family] = ACTIONS(564), + [anon_sym_Arch] = ACTIONS(564), + [anon_sym_ExeExt] = ACTIONS(564), + [anon_sym_PllExt] = ACTIONS(564), + [anon_sym_Sep] = ACTIONS(564), + [anon_sym_NUmProcs] = ACTIONS(564), + [anon_sym_] = ACTIONS(566), + [aux_sym_character_token1] = ACTIONS(566), + [sym_string] = ACTIONS(566), + [sym_multiLineString] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [sym_identifier] = ACTIONS(564), + [sym_identifierDeprecated] = ACTIONS(564), + [sym_system] = ACTIONS(566), + [sym_comment] = ACTIONS(564), + [sym_openParen] = ACTIONS(566), + [sym_closeParen] = ACTIONS(566), + [sym_openCurly] = ACTIONS(566), + [sym_closeCurly] = ACTIONS(566), + [sym_openBracket] = ACTIONS(566), + [sym_closeBracket] = ACTIONS(566), + [sym_underscore] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(566), + [anon_sym_eta] = ACTIONS(566), + [anon_sym_2] = ACTIONS(564), + [anon_sym_pi] = ACTIONS(564), + [anon_sym_3] = ACTIONS(564), + [anon_sym_tau] = ACTIONS(566), + [anon_sym_4] = ACTIONS(564), + [anon_sym_infinity] = ACTIONS(566), + [anon_sym_5] = ACTIONS(566), + [anon_sym_e] = ACTIONS(564), + [anon_sym_NaN] = ACTIONS(564), + [anon_sym_NumProcs] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_COLON] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_identity] = ACTIONS(566), + [anon_sym_id] = ACTIONS(564), + [anon_sym_6] = ACTIONS(566), + [anon_sym_not] = ACTIONS(566), + [anon_sym_7] = ACTIONS(566), + [anon_sym_sign] = ACTIONS(566), + [anon_sym_8] = ACTIONS(566), + [anon_sym_BQUOTE] = ACTIONS(566), + [anon_sym_9] = ACTIONS(564), + [anon_sym_absolutevalue] = ACTIONS(566), + [anon_sym_10] = ACTIONS(566), + [anon_sym_sqrt] = ACTIONS(566), + [anon_sym_11] = ACTIONS(566), + [anon_sym_sine] = ACTIONS(566), + [anon_sym_12] = ACTIONS(566), + [anon_sym_floor] = ACTIONS(566), + [anon_sym_13] = ACTIONS(566), + [anon_sym_ceiling] = ACTIONS(566), + [anon_sym_14] = ACTIONS(566), + [anon_sym_round] = ACTIONS(566), + [anon_sym_15] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_16] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_17] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_18] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_19] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_20] = ACTIONS(566), + [anon_sym_modulus] = ACTIONS(566), + [anon_sym_21] = ACTIONS(566), + [anon_sym_power] = ACTIONS(566), + [anon_sym_22] = ACTIONS(566), + [anon_sym_logarithm] = ACTIONS(566), + [anon_sym_23] = ACTIONS(566), + [anon_sym_minimum] = ACTIONS(566), + [anon_sym_24] = ACTIONS(566), + [anon_sym_maximum] = ACTIONS(566), + [anon_sym_25] = ACTIONS(566), + [anon_sym_atangent] = ACTIONS(566), + [anon_sym_26] = ACTIONS(566), + [anon_sym_length] = ACTIONS(566), + [anon_sym_27] = ACTIONS(566), + [anon_sym_shape] = ACTIONS(566), + [anon_sym_28] = ACTIONS(566), + [anon_sym_range] = ACTIONS(566), + [anon_sym_29] = ACTIONS(566), + [anon_sym_first] = ACTIONS(566), + [anon_sym_30] = ACTIONS(566), + [anon_sym_reverse] = ACTIONS(566), + [anon_sym_31] = ACTIONS(566), + [anon_sym_deshape] = ACTIONS(566), + [anon_sym_32] = ACTIONS(566), + [anon_sym_bits] = ACTIONS(566), + [anon_sym_33] = ACTIONS(566), + [anon_sym_transpose] = ACTIONS(566), + [anon_sym_34] = ACTIONS(566), + [anon_sym_rise] = ACTIONS(566), + [anon_sym_35] = ACTIONS(566), + [anon_sym_fall] = ACTIONS(566), + [anon_sym_36] = ACTIONS(566), + [anon_sym_where] = ACTIONS(566), + [anon_sym_37] = ACTIONS(566), + [anon_sym_classify] = ACTIONS(566), + [anon_sym_38] = ACTIONS(566), + [anon_sym_deduplicate] = ACTIONS(566), + [anon_sym_39] = ACTIONS(566), + [anon_sym_box] = ACTIONS(566), + [anon_sym_40] = ACTIONS(566), + [anon_sym_unbox] = ACTIONS(566), + [anon_sym_41] = ACTIONS(566), + [anon_sym_match] = ACTIONS(566), + [anon_sym_42] = ACTIONS(566), + [anon_sym_couple] = ACTIONS(566), + [anon_sym_43] = ACTIONS(566), + [anon_sym_join] = ACTIONS(566), + [anon_sym_44] = ACTIONS(566), + [anon_sym_select] = ACTIONS(566), + [anon_sym_45] = ACTIONS(566), + [anon_sym_pick] = ACTIONS(566), + [anon_sym_46] = ACTIONS(566), + [anon_sym_reshape] = ACTIONS(566), + [anon_sym_47] = ACTIONS(566), + [anon_sym_take] = ACTIONS(566), + [anon_sym_48] = ACTIONS(566), + [anon_sym_drop] = ACTIONS(566), + [anon_sym_49] = ACTIONS(566), + [anon_sym_rotate] = ACTIONS(566), + [anon_sym_50] = ACTIONS(566), + [anon_sym_windows] = ACTIONS(566), + [anon_sym_51] = ACTIONS(566), + [anon_sym_keep] = ACTIONS(566), + [anon_sym_52] = ACTIONS(566), + [anon_sym_find] = ACTIONS(566), + [anon_sym_53] = ACTIONS(566), + [anon_sym_member] = ACTIONS(566), + [anon_sym_54] = ACTIONS(566), + [anon_sym_indexof] = ACTIONS(566), + [anon_sym_55] = ACTIONS(566), + [anon_sym_assert] = ACTIONS(566), + [anon_sym_56] = ACTIONS(566), + [anon_sym_wait] = ACTIONS(566), + [anon_sym_parse] = ACTIONS(566), + [anon_sym_random] = ACTIONS(566), + [anon_sym_57] = ACTIONS(566), + [anon_sym_gen] = ACTIONS(566), + [anon_sym_deal] = ACTIONS(566), + [anon_sym_tag] = ACTIONS(566), + [anon_sym_now] = ACTIONS(566), + [anon_sym_type] = ACTIONS(566), + [anon_sym_58] = ACTIONS(566), + [anon_sym_dump] = ACTIONS(566), + [anon_sym_regex] = ACTIONS(566), + [anon_sym_utf] = ACTIONS(566), + [anon_sym_send] = ACTIONS(566), + [anon_sym_recv] = ACTIONS(566), + [anon_sym_tryrecv] = ACTIONS(566), + [anon_sym_complex] = ACTIONS(566), + [anon_sym_59] = ACTIONS(566), + [anon_sym_rerank] = ACTIONS(566), + [anon_sym_60] = ACTIONS(566), + [anon_sym_fix] = ACTIONS(566), + [anon_sym_61] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_reduce] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_scan] = ACTIONS(566), + [anon_sym_BSLASH] = ACTIONS(566), + [anon_sym_each] = ACTIONS(566), + [anon_sym_62] = ACTIONS(566), + [anon_sym_rows] = ACTIONS(566), + [anon_sym_63] = ACTIONS(566), + [anon_sym_repeat] = ACTIONS(566), + [anon_sym_64] = ACTIONS(566), + [anon_sym_dip] = ACTIONS(566), + [anon_sym_65] = ACTIONS(566), + [anon_sym_gap] = ACTIONS(566), + [anon_sym_66] = ACTIONS(566), + [anon_sym_invert] = ACTIONS(566), + [anon_sym_67] = ACTIONS(566), + [anon_sym_spawn] = ACTIONS(566), + [anon_sym_pack] = ACTIONS(566), + [anon_sym_68] = ACTIONS(566), + [anon_sym_rectify] = ACTIONS(566), + [anon_sym_69] = ACTIONS(566), + [anon_sym_this] = ACTIONS(566), + [anon_sym_70] = ACTIONS(566), + [anon_sym_recur] = ACTIONS(566), + [anon_sym_71] = ACTIONS(566), + [anon_sym_fold] = ACTIONS(566), + [anon_sym_72] = ACTIONS(566), + [anon_sym_table] = ACTIONS(566), + [anon_sym_73] = ACTIONS(566), + [anon_sym_cross] = ACTIONS(566), + [anon_sym_74] = ACTIONS(566), + [anon_sym_group] = ACTIONS(566), + [anon_sym_75] = ACTIONS(566), + [anon_sym_partition] = ACTIONS(566), + [anon_sym_76] = ACTIONS(566), + [anon_sym_both] = ACTIONS(566), + [anon_sym_77] = ACTIONS(566), + [anon_sym_bracket] = ACTIONS(566), + [anon_sym_78] = ACTIONS(566), + [anon_sym_fork] = ACTIONS(566), + [anon_sym_79] = ACTIONS(566), + [anon_sym_under] = ACTIONS(566), + [anon_sym_80] = ACTIONS(566), + [anon_sym_fill] = ACTIONS(566), + [anon_sym_81] = ACTIONS(566), + [anon_sym_try] = ACTIONS(564), + [anon_sym_82] = ACTIONS(566), + [anon_sym_do] = ACTIONS(564), + [anon_sym_83] = ACTIONS(566), + [anon_sym_all] = ACTIONS(566), + [anon_sym_84] = ACTIONS(566), + [anon_sym_setinv] = ACTIONS(566), + [anon_sym_setunder] = ACTIONS(566), + [anon_sym_85] = ACTIONS(566), + [anon_sym_86] = ACTIONS(566), + [anon_sym_87] = ACTIONS(566), + [anon_sym_88] = ACTIONS(566), + [anon_sym_89] = ACTIONS(566), + [anon_sym_90] = ACTIONS(566), + [anon_sym_91] = ACTIONS(566), + [anon_sym_92] = ACTIONS(566), + [sym__endOfLine] = ACTIONS(566), }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(474), - [aux_sym_number_token1] = ACTIONS(472), - [sym_fraction] = ACTIONS(474), - [anon_sym_os] = ACTIONS(472), - [anon_sym_Family] = ACTIONS(472), - [anon_sym_Arch] = ACTIONS(472), - [anon_sym_ExeExt] = ACTIONS(472), - [anon_sym_PllExt] = ACTIONS(472), - [anon_sym_Sep] = ACTIONS(472), - [anon_sym_NUmProcs] = ACTIONS(472), - [anon_sym_] = ACTIONS(474), - [aux_sym_character_token1] = ACTIONS(474), - [sym_string] = ACTIONS(474), - [sym_multiLineString] = ACTIONS(474), - [sym_identifier] = ACTIONS(472), - [sym_identifierDeprecated] = ACTIONS(472), - [sym_system] = ACTIONS(474), - [sym_comment] = ACTIONS(472), - [sym_openParen] = ACTIONS(474), - [sym_openCurly] = ACTIONS(474), - [sym_openBracket] = ACTIONS(474), - [sym_underscore] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_eta] = ACTIONS(474), - [anon_sym_2] = ACTIONS(472), - [anon_sym_pi] = ACTIONS(472), - [anon_sym_3] = ACTIONS(472), - [anon_sym_tau] = ACTIONS(474), - [anon_sym_4] = ACTIONS(472), - [anon_sym_infinity] = ACTIONS(474), - [anon_sym_5] = ACTIONS(474), - [anon_sym_e] = ACTIONS(472), - [anon_sym_NaN] = ACTIONS(472), - [anon_sym_NumProcs] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_identity] = ACTIONS(474), - [anon_sym_id] = ACTIONS(472), - [anon_sym_6] = ACTIONS(474), - [anon_sym_not] = ACTIONS(474), - [anon_sym_7] = ACTIONS(474), - [anon_sym_sign] = ACTIONS(474), - [anon_sym_8] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [anon_sym_9] = ACTIONS(472), - [anon_sym_absolutevalue] = ACTIONS(474), - [anon_sym_10] = ACTIONS(474), - [anon_sym_sqrt] = ACTIONS(474), - [anon_sym_11] = ACTIONS(474), - [anon_sym_sine] = ACTIONS(474), - [anon_sym_12] = ACTIONS(474), - [anon_sym_floor] = ACTIONS(474), - [anon_sym_13] = ACTIONS(474), - [anon_sym_ceiling] = ACTIONS(474), - [anon_sym_14] = ACTIONS(474), - [anon_sym_round] = ACTIONS(474), - [anon_sym_15] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_16] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_17] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_18] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_19] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_20] = ACTIONS(474), - [anon_sym_modulus] = ACTIONS(474), - [anon_sym_21] = ACTIONS(474), - [anon_sym_power] = ACTIONS(474), - [anon_sym_22] = ACTIONS(474), - [anon_sym_logarithm] = ACTIONS(474), - [anon_sym_23] = ACTIONS(474), - [anon_sym_minimum] = ACTIONS(474), - [anon_sym_24] = ACTIONS(474), - [anon_sym_maximum] = ACTIONS(474), - [anon_sym_25] = ACTIONS(474), - [anon_sym_atangent] = ACTIONS(474), - [anon_sym_26] = ACTIONS(474), - [anon_sym_length] = ACTIONS(474), - [anon_sym_27] = ACTIONS(474), - [anon_sym_shape] = ACTIONS(474), - [anon_sym_28] = ACTIONS(474), - [anon_sym_range] = ACTIONS(474), - [anon_sym_29] = ACTIONS(474), - [anon_sym_first] = ACTIONS(474), - [anon_sym_30] = ACTIONS(474), - [anon_sym_reverse] = ACTIONS(474), - [anon_sym_31] = ACTIONS(474), - [anon_sym_deshape] = ACTIONS(474), - [anon_sym_32] = ACTIONS(474), - [anon_sym_bits] = ACTIONS(474), - [anon_sym_33] = ACTIONS(474), - [anon_sym_transpose] = ACTIONS(474), - [anon_sym_34] = ACTIONS(474), - [anon_sym_rise] = ACTIONS(474), - [anon_sym_35] = ACTIONS(474), - [anon_sym_fall] = ACTIONS(474), - [anon_sym_36] = ACTIONS(474), - [anon_sym_where] = ACTIONS(474), - [anon_sym_37] = ACTIONS(474), - [anon_sym_classify] = ACTIONS(474), - [anon_sym_38] = ACTIONS(474), - [anon_sym_deduplicate] = ACTIONS(474), - [anon_sym_39] = ACTIONS(474), - [anon_sym_box] = ACTIONS(474), - [anon_sym_40] = ACTIONS(474), - [anon_sym_unbox] = ACTIONS(474), - [anon_sym_41] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_42] = ACTIONS(474), - [anon_sym_couple] = ACTIONS(474), - [anon_sym_43] = ACTIONS(474), - [anon_sym_join] = ACTIONS(474), - [anon_sym_44] = ACTIONS(474), - [anon_sym_select] = ACTIONS(474), - [anon_sym_45] = ACTIONS(474), - [anon_sym_pick] = ACTIONS(474), - [anon_sym_46] = ACTIONS(474), - [anon_sym_reshape] = ACTIONS(474), - [anon_sym_47] = ACTIONS(474), - [anon_sym_take] = ACTIONS(474), - [anon_sym_48] = ACTIONS(474), - [anon_sym_drop] = ACTIONS(474), - [anon_sym_49] = ACTIONS(474), - [anon_sym_rotate] = ACTIONS(474), - [anon_sym_50] = ACTIONS(474), - [anon_sym_windows] = ACTIONS(474), - [anon_sym_51] = ACTIONS(474), - [anon_sym_keep] = ACTIONS(474), - [anon_sym_52] = ACTIONS(474), - [anon_sym_find] = ACTIONS(474), - [anon_sym_53] = ACTIONS(474), - [anon_sym_member] = ACTIONS(474), - [anon_sym_54] = ACTIONS(474), - [anon_sym_indexof] = ACTIONS(474), - [anon_sym_55] = ACTIONS(474), - [anon_sym_assert] = ACTIONS(474), - [anon_sym_56] = ACTIONS(474), - [anon_sym_wait] = ACTIONS(474), - [anon_sym_parse] = ACTIONS(474), - [anon_sym_random] = ACTIONS(474), - [anon_sym_57] = ACTIONS(474), - [anon_sym_gen] = ACTIONS(474), - [anon_sym_deal] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_now] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_58] = ACTIONS(474), - [anon_sym_dump] = ACTIONS(474), - [anon_sym_regex] = ACTIONS(474), - [anon_sym_utf] = ACTIONS(474), - [anon_sym_send] = ACTIONS(474), - [anon_sym_recv] = ACTIONS(474), - [anon_sym_tryrecv] = ACTIONS(474), - [anon_sym_complex] = ACTIONS(474), - [anon_sym_59] = ACTIONS(474), - [anon_sym_rerank] = ACTIONS(474), - [anon_sym_60] = ACTIONS(474), - [anon_sym_fix] = ACTIONS(474), - [anon_sym_61] = ACTIONS(474), - [anon_sym_reduce] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_scan] = ACTIONS(474), - [anon_sym_BSLASH] = ACTIONS(474), - [anon_sym_each] = ACTIONS(474), - [anon_sym_62] = ACTIONS(474), - [anon_sym_rows] = ACTIONS(474), - [anon_sym_63] = ACTIONS(474), - [anon_sym_repeat] = ACTIONS(474), - [anon_sym_64] = ACTIONS(474), - [anon_sym_dip] = ACTIONS(474), - [anon_sym_65] = ACTIONS(474), - [anon_sym_gap] = ACTIONS(474), - [anon_sym_66] = ACTIONS(474), - [anon_sym_invert] = ACTIONS(474), - [anon_sym_67] = ACTIONS(474), - [anon_sym_spawn] = ACTIONS(474), - [anon_sym_pack] = ACTIONS(474), - [anon_sym_68] = ACTIONS(474), - [anon_sym_rectify] = ACTIONS(474), - [anon_sym_69] = ACTIONS(474), - [anon_sym_this] = ACTIONS(474), - [anon_sym_70] = ACTIONS(474), - [anon_sym_recur] = ACTIONS(474), - [anon_sym_71] = ACTIONS(474), - [anon_sym_fold] = ACTIONS(474), - [anon_sym_72] = ACTIONS(474), - [anon_sym_table] = ACTIONS(474), - [anon_sym_73] = ACTIONS(474), - [anon_sym_cross] = ACTIONS(474), - [anon_sym_74] = ACTIONS(474), - [anon_sym_group] = ACTIONS(474), - [anon_sym_75] = ACTIONS(474), - [anon_sym_partition] = ACTIONS(474), - [anon_sym_76] = ACTIONS(474), - [anon_sym_both] = ACTIONS(474), - [anon_sym_77] = ACTIONS(474), - [anon_sym_bracket] = ACTIONS(474), - [anon_sym_78] = ACTIONS(474), - [anon_sym_fork] = ACTIONS(474), - [anon_sym_79] = ACTIONS(474), - [anon_sym_under] = ACTIONS(474), - [anon_sym_80] = ACTIONS(474), - [anon_sym_fill] = ACTIONS(474), - [anon_sym_81] = ACTIONS(474), - [anon_sym_try] = ACTIONS(472), - [anon_sym_82] = ACTIONS(474), - [anon_sym_do] = ACTIONS(472), - [anon_sym_83] = ACTIONS(474), - [anon_sym_all] = ACTIONS(474), - [anon_sym_84] = ACTIONS(474), - [anon_sym_setinv] = ACTIONS(474), - [anon_sym_setunder] = ACTIONS(474), - [anon_sym_85] = ACTIONS(474), - [anon_sym_86] = ACTIONS(474), - [anon_sym_87] = ACTIONS(474), - [anon_sym_88] = ACTIONS(474), - [anon_sym_89] = ACTIONS(474), - [anon_sym_90] = ACTIONS(474), - [anon_sym_91] = ACTIONS(474), - [anon_sym_92] = ACTIONS(474), - [anon_sym_93] = ACTIONS(474), - [anon_sym_94] = ACTIONS(474), - [anon_sym_95] = ACTIONS(474), - [anon_sym_96] = ACTIONS(474), - [sym__endOfLine] = ACTIONS(474), + [106] = { + [aux_sym_number_token1] = ACTIONS(466), + [sym_fraction] = ACTIONS(468), + [anon_sym_os] = ACTIONS(466), + [anon_sym_Family] = ACTIONS(466), + [anon_sym_Arch] = ACTIONS(466), + [anon_sym_ExeExt] = ACTIONS(466), + [anon_sym_PllExt] = ACTIONS(466), + [anon_sym_Sep] = ACTIONS(466), + [anon_sym_NUmProcs] = ACTIONS(466), + [anon_sym_] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(468), + [sym_string] = ACTIONS(468), + [sym_multiLineString] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [sym_identifierDeprecated] = ACTIONS(466), + [sym_system] = ACTIONS(468), + [sym_comment] = ACTIONS(466), + [sym_openParen] = ACTIONS(468), + [sym_closeParen] = ACTIONS(468), + [sym_openCurly] = ACTIONS(468), + [sym_closeCurly] = ACTIONS(468), + [sym_openBracket] = ACTIONS(468), + [sym_closeBracket] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(468), + [anon_sym_eta] = ACTIONS(468), + [anon_sym_2] = ACTIONS(466), + [anon_sym_pi] = ACTIONS(466), + [anon_sym_3] = ACTIONS(466), + [anon_sym_tau] = ACTIONS(468), + [anon_sym_4] = ACTIONS(466), + [anon_sym_infinity] = ACTIONS(468), + [anon_sym_5] = ACTIONS(468), + [anon_sym_e] = ACTIONS(466), + [anon_sym_NaN] = ACTIONS(466), + [anon_sym_NumProcs] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_COLON] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_identity] = ACTIONS(468), + [anon_sym_id] = ACTIONS(466), + [anon_sym_6] = ACTIONS(468), + [anon_sym_not] = ACTIONS(468), + [anon_sym_7] = ACTIONS(468), + [anon_sym_sign] = ACTIONS(468), + [anon_sym_8] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_9] = ACTIONS(466), + [anon_sym_absolutevalue] = ACTIONS(468), + [anon_sym_10] = ACTIONS(468), + [anon_sym_sqrt] = ACTIONS(468), + [anon_sym_11] = ACTIONS(468), + [anon_sym_sine] = ACTIONS(468), + [anon_sym_12] = ACTIONS(468), + [anon_sym_floor] = ACTIONS(468), + [anon_sym_13] = ACTIONS(468), + [anon_sym_ceiling] = ACTIONS(468), + [anon_sym_14] = ACTIONS(468), + [anon_sym_round] = ACTIONS(468), + [anon_sym_15] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_16] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_17] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_18] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_19] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_20] = ACTIONS(468), + [anon_sym_modulus] = ACTIONS(468), + [anon_sym_21] = ACTIONS(468), + [anon_sym_power] = ACTIONS(468), + [anon_sym_22] = ACTIONS(468), + [anon_sym_logarithm] = ACTIONS(468), + [anon_sym_23] = ACTIONS(468), + [anon_sym_minimum] = ACTIONS(468), + [anon_sym_24] = ACTIONS(468), + [anon_sym_maximum] = ACTIONS(468), + [anon_sym_25] = ACTIONS(468), + [anon_sym_atangent] = ACTIONS(468), + [anon_sym_26] = ACTIONS(468), + [anon_sym_length] = ACTIONS(468), + [anon_sym_27] = ACTIONS(468), + [anon_sym_shape] = ACTIONS(468), + [anon_sym_28] = ACTIONS(468), + [anon_sym_range] = ACTIONS(468), + [anon_sym_29] = ACTIONS(468), + [anon_sym_first] = ACTIONS(468), + [anon_sym_30] = ACTIONS(468), + [anon_sym_reverse] = ACTIONS(468), + [anon_sym_31] = ACTIONS(468), + [anon_sym_deshape] = ACTIONS(468), + [anon_sym_32] = ACTIONS(468), + [anon_sym_bits] = ACTIONS(468), + [anon_sym_33] = ACTIONS(468), + [anon_sym_transpose] = ACTIONS(468), + [anon_sym_34] = ACTIONS(468), + [anon_sym_rise] = ACTIONS(468), + [anon_sym_35] = ACTIONS(468), + [anon_sym_fall] = ACTIONS(468), + [anon_sym_36] = ACTIONS(468), + [anon_sym_where] = ACTIONS(468), + [anon_sym_37] = ACTIONS(468), + [anon_sym_classify] = ACTIONS(468), + [anon_sym_38] = ACTIONS(468), + [anon_sym_deduplicate] = ACTIONS(468), + [anon_sym_39] = ACTIONS(468), + [anon_sym_box] = ACTIONS(468), + [anon_sym_40] = ACTIONS(468), + [anon_sym_unbox] = ACTIONS(468), + [anon_sym_41] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_42] = ACTIONS(468), + [anon_sym_couple] = ACTIONS(468), + [anon_sym_43] = ACTIONS(468), + [anon_sym_join] = ACTIONS(468), + [anon_sym_44] = ACTIONS(468), + [anon_sym_select] = ACTIONS(468), + [anon_sym_45] = ACTIONS(468), + [anon_sym_pick] = ACTIONS(468), + [anon_sym_46] = ACTIONS(468), + [anon_sym_reshape] = ACTIONS(468), + [anon_sym_47] = ACTIONS(468), + [anon_sym_take] = ACTIONS(468), + [anon_sym_48] = ACTIONS(468), + [anon_sym_drop] = ACTIONS(468), + [anon_sym_49] = ACTIONS(468), + [anon_sym_rotate] = ACTIONS(468), + [anon_sym_50] = ACTIONS(468), + [anon_sym_windows] = ACTIONS(468), + [anon_sym_51] = ACTIONS(468), + [anon_sym_keep] = ACTIONS(468), + [anon_sym_52] = ACTIONS(468), + [anon_sym_find] = ACTIONS(468), + [anon_sym_53] = ACTIONS(468), + [anon_sym_member] = ACTIONS(468), + [anon_sym_54] = ACTIONS(468), + [anon_sym_indexof] = ACTIONS(468), + [anon_sym_55] = ACTIONS(468), + [anon_sym_assert] = ACTIONS(468), + [anon_sym_56] = ACTIONS(468), + [anon_sym_wait] = ACTIONS(468), + [anon_sym_parse] = ACTIONS(468), + [anon_sym_random] = ACTIONS(468), + [anon_sym_57] = ACTIONS(468), + [anon_sym_gen] = ACTIONS(468), + [anon_sym_deal] = ACTIONS(468), + [anon_sym_tag] = ACTIONS(468), + [anon_sym_now] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_58] = ACTIONS(468), + [anon_sym_dump] = ACTIONS(468), + [anon_sym_regex] = ACTIONS(468), + [anon_sym_utf] = ACTIONS(468), + [anon_sym_send] = ACTIONS(468), + [anon_sym_recv] = ACTIONS(468), + [anon_sym_tryrecv] = ACTIONS(468), + [anon_sym_complex] = ACTIONS(468), + [anon_sym_59] = ACTIONS(468), + [anon_sym_rerank] = ACTIONS(468), + [anon_sym_60] = ACTIONS(468), + [anon_sym_fix] = ACTIONS(468), + [anon_sym_61] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(468), + [anon_sym_reduce] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_scan] = ACTIONS(468), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_each] = ACTIONS(468), + [anon_sym_62] = ACTIONS(468), + [anon_sym_rows] = ACTIONS(468), + [anon_sym_63] = ACTIONS(468), + [anon_sym_repeat] = ACTIONS(468), + [anon_sym_64] = ACTIONS(468), + [anon_sym_dip] = ACTIONS(468), + [anon_sym_65] = ACTIONS(468), + [anon_sym_gap] = ACTIONS(468), + [anon_sym_66] = ACTIONS(468), + [anon_sym_invert] = ACTIONS(468), + [anon_sym_67] = ACTIONS(468), + [anon_sym_spawn] = ACTIONS(468), + [anon_sym_pack] = ACTIONS(468), + [anon_sym_68] = ACTIONS(468), + [anon_sym_rectify] = ACTIONS(468), + [anon_sym_69] = ACTIONS(468), + [anon_sym_this] = ACTIONS(468), + [anon_sym_70] = ACTIONS(468), + [anon_sym_recur] = ACTIONS(468), + [anon_sym_71] = ACTIONS(468), + [anon_sym_fold] = ACTIONS(468), + [anon_sym_72] = ACTIONS(468), + [anon_sym_table] = ACTIONS(468), + [anon_sym_73] = ACTIONS(468), + [anon_sym_cross] = ACTIONS(468), + [anon_sym_74] = ACTIONS(468), + [anon_sym_group] = ACTIONS(468), + [anon_sym_75] = ACTIONS(468), + [anon_sym_partition] = ACTIONS(468), + [anon_sym_76] = ACTIONS(468), + [anon_sym_both] = ACTIONS(468), + [anon_sym_77] = ACTIONS(468), + [anon_sym_bracket] = ACTIONS(468), + [anon_sym_78] = ACTIONS(468), + [anon_sym_fork] = ACTIONS(468), + [anon_sym_79] = ACTIONS(468), + [anon_sym_under] = ACTIONS(468), + [anon_sym_80] = ACTIONS(468), + [anon_sym_fill] = ACTIONS(468), + [anon_sym_81] = ACTIONS(468), + [anon_sym_try] = ACTIONS(466), + [anon_sym_82] = ACTIONS(468), + [anon_sym_do] = ACTIONS(466), + [anon_sym_83] = ACTIONS(468), + [anon_sym_all] = ACTIONS(468), + [anon_sym_84] = ACTIONS(468), + [anon_sym_setinv] = ACTIONS(468), + [anon_sym_setunder] = ACTIONS(468), + [anon_sym_85] = ACTIONS(468), + [anon_sym_86] = ACTIONS(468), + [anon_sym_87] = ACTIONS(468), + [anon_sym_88] = ACTIONS(468), + [anon_sym_89] = ACTIONS(468), + [anon_sym_90] = ACTIONS(468), + [anon_sym_91] = ACTIONS(468), + [anon_sym_92] = ACTIONS(468), + [sym__endOfLine] = ACTIONS(468), }, - [121] = { - [aux_sym_number_token1] = ACTIONS(554), - [sym_fraction] = ACTIONS(556), - [anon_sym_os] = ACTIONS(554), - [anon_sym_Family] = ACTIONS(554), - [anon_sym_Arch] = ACTIONS(554), - [anon_sym_ExeExt] = ACTIONS(554), - [anon_sym_PllExt] = ACTIONS(554), - [anon_sym_Sep] = ACTIONS(554), - [anon_sym_NUmProcs] = ACTIONS(554), - [anon_sym_] = ACTIONS(556), - [aux_sym_character_token1] = ACTIONS(556), - [sym_string] = ACTIONS(556), - [sym_multiLineString] = ACTIONS(556), - [sym_identifier] = ACTIONS(554), - [sym_identifierDeprecated] = ACTIONS(554), - [sym_system] = ACTIONS(556), - [sym_comment] = ACTIONS(554), - [sym_tripleMinus] = ACTIONS(556), - [sym_openParen] = ACTIONS(556), - [sym_openCurly] = ACTIONS(556), - [sym_openBracket] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_eta] = ACTIONS(556), - [anon_sym_2] = ACTIONS(554), - [anon_sym_pi] = ACTIONS(554), - [anon_sym_3] = ACTIONS(554), - [anon_sym_tau] = ACTIONS(556), - [anon_sym_4] = ACTIONS(554), - [anon_sym_infinity] = ACTIONS(556), - [anon_sym_5] = ACTIONS(556), - [anon_sym_e] = ACTIONS(554), - [anon_sym_NaN] = ACTIONS(554), - [anon_sym_NumProcs] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_COLON] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_identity] = ACTIONS(556), - [anon_sym_id] = ACTIONS(554), - [anon_sym_6] = ACTIONS(556), - [anon_sym_not] = ACTIONS(556), - [anon_sym_7] = ACTIONS(556), - [anon_sym_sign] = ACTIONS(556), - [anon_sym_8] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_9] = ACTIONS(554), - [anon_sym_absolutevalue] = ACTIONS(556), - [anon_sym_10] = ACTIONS(556), - [anon_sym_sqrt] = ACTIONS(556), - [anon_sym_11] = ACTIONS(556), - [anon_sym_sine] = ACTIONS(556), - [anon_sym_12] = ACTIONS(556), - [anon_sym_floor] = ACTIONS(556), - [anon_sym_13] = ACTIONS(556), - [anon_sym_ceiling] = ACTIONS(556), - [anon_sym_14] = ACTIONS(556), - [anon_sym_round] = ACTIONS(556), - [anon_sym_15] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_16] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_17] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_18] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_19] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_20] = ACTIONS(556), - [anon_sym_modulus] = ACTIONS(556), - [anon_sym_21] = ACTIONS(556), - [anon_sym_power] = ACTIONS(556), - [anon_sym_22] = ACTIONS(556), - [anon_sym_logarithm] = ACTIONS(556), - [anon_sym_23] = ACTIONS(556), - [anon_sym_minimum] = ACTIONS(556), - [anon_sym_24] = ACTIONS(556), - [anon_sym_maximum] = ACTIONS(556), - [anon_sym_25] = ACTIONS(556), - [anon_sym_atangent] = ACTIONS(556), - [anon_sym_26] = ACTIONS(556), - [anon_sym_length] = ACTIONS(556), - [anon_sym_27] = ACTIONS(556), - [anon_sym_shape] = ACTIONS(556), - [anon_sym_28] = ACTIONS(556), - [anon_sym_range] = ACTIONS(556), - [anon_sym_29] = ACTIONS(556), - [anon_sym_first] = ACTIONS(556), - [anon_sym_30] = ACTIONS(556), - [anon_sym_reverse] = ACTIONS(556), - [anon_sym_31] = ACTIONS(556), - [anon_sym_deshape] = ACTIONS(556), - [anon_sym_32] = ACTIONS(556), - [anon_sym_bits] = ACTIONS(556), - [anon_sym_33] = ACTIONS(556), - [anon_sym_transpose] = ACTIONS(556), - [anon_sym_34] = ACTIONS(556), - [anon_sym_rise] = ACTIONS(556), - [anon_sym_35] = ACTIONS(556), - [anon_sym_fall] = ACTIONS(556), - [anon_sym_36] = ACTIONS(556), - [anon_sym_where] = ACTIONS(556), - [anon_sym_37] = ACTIONS(556), - [anon_sym_classify] = ACTIONS(556), - [anon_sym_38] = ACTIONS(556), - [anon_sym_deduplicate] = ACTIONS(556), - [anon_sym_39] = ACTIONS(556), - [anon_sym_box] = ACTIONS(556), - [anon_sym_40] = ACTIONS(556), - [anon_sym_unbox] = ACTIONS(556), - [anon_sym_41] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_42] = ACTIONS(556), - [anon_sym_couple] = ACTIONS(556), - [anon_sym_43] = ACTIONS(556), - [anon_sym_join] = ACTIONS(556), - [anon_sym_44] = ACTIONS(556), - [anon_sym_select] = ACTIONS(556), - [anon_sym_45] = ACTIONS(556), - [anon_sym_pick] = ACTIONS(556), - [anon_sym_46] = ACTIONS(556), - [anon_sym_reshape] = ACTIONS(556), - [anon_sym_47] = ACTIONS(556), - [anon_sym_take] = ACTIONS(556), - [anon_sym_48] = ACTIONS(556), - [anon_sym_drop] = ACTIONS(556), - [anon_sym_49] = ACTIONS(556), - [anon_sym_rotate] = ACTIONS(556), - [anon_sym_50] = ACTIONS(556), - [anon_sym_windows] = ACTIONS(556), - [anon_sym_51] = ACTIONS(556), - [anon_sym_keep] = ACTIONS(556), - [anon_sym_52] = ACTIONS(556), - [anon_sym_find] = ACTIONS(556), - [anon_sym_53] = ACTIONS(556), - [anon_sym_member] = ACTIONS(556), - [anon_sym_54] = ACTIONS(556), - [anon_sym_indexof] = ACTIONS(556), - [anon_sym_55] = ACTIONS(556), - [anon_sym_assert] = ACTIONS(556), - [anon_sym_56] = ACTIONS(556), - [anon_sym_wait] = ACTIONS(556), - [anon_sym_parse] = ACTIONS(556), - [anon_sym_random] = ACTIONS(556), - [anon_sym_57] = ACTIONS(556), - [anon_sym_gen] = ACTIONS(556), - [anon_sym_deal] = ACTIONS(556), - [anon_sym_tag] = ACTIONS(556), - [anon_sym_now] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_58] = ACTIONS(556), - [anon_sym_dump] = ACTIONS(556), - [anon_sym_regex] = ACTIONS(556), - [anon_sym_utf] = ACTIONS(556), - [anon_sym_send] = ACTIONS(556), - [anon_sym_recv] = ACTIONS(556), - [anon_sym_tryrecv] = ACTIONS(556), - [anon_sym_complex] = ACTIONS(556), - [anon_sym_59] = ACTIONS(556), - [anon_sym_rerank] = ACTIONS(556), - [anon_sym_60] = ACTIONS(556), - [anon_sym_fix] = ACTIONS(556), - [anon_sym_61] = ACTIONS(556), - [anon_sym_reduce] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_scan] = ACTIONS(556), - [anon_sym_BSLASH] = ACTIONS(556), - [anon_sym_each] = ACTIONS(556), - [anon_sym_62] = ACTIONS(556), - [anon_sym_rows] = ACTIONS(556), - [anon_sym_63] = ACTIONS(556), - [anon_sym_repeat] = ACTIONS(556), - [anon_sym_64] = ACTIONS(556), - [anon_sym_dip] = ACTIONS(556), - [anon_sym_65] = ACTIONS(556), - [anon_sym_gap] = ACTIONS(556), - [anon_sym_66] = ACTIONS(556), - [anon_sym_invert] = ACTIONS(556), - [anon_sym_67] = ACTIONS(556), - [anon_sym_spawn] = ACTIONS(556), - [anon_sym_pack] = ACTIONS(556), - [anon_sym_68] = ACTIONS(556), - [anon_sym_rectify] = ACTIONS(556), - [anon_sym_69] = ACTIONS(556), - [anon_sym_this] = ACTIONS(556), - [anon_sym_70] = ACTIONS(556), - [anon_sym_recur] = ACTIONS(556), - [anon_sym_71] = ACTIONS(556), - [anon_sym_fold] = ACTIONS(556), - [anon_sym_72] = ACTIONS(556), - [anon_sym_table] = ACTIONS(556), - [anon_sym_73] = ACTIONS(556), - [anon_sym_cross] = ACTIONS(556), - [anon_sym_74] = ACTIONS(556), - [anon_sym_group] = ACTIONS(556), - [anon_sym_75] = ACTIONS(556), - [anon_sym_partition] = ACTIONS(556), - [anon_sym_76] = ACTIONS(556), - [anon_sym_both] = ACTIONS(556), - [anon_sym_77] = ACTIONS(556), - [anon_sym_bracket] = ACTIONS(556), - [anon_sym_78] = ACTIONS(556), - [anon_sym_fork] = ACTIONS(556), - [anon_sym_79] = ACTIONS(556), - [anon_sym_under] = ACTIONS(556), - [anon_sym_80] = ACTIONS(556), - [anon_sym_fill] = ACTIONS(556), - [anon_sym_81] = ACTIONS(556), - [anon_sym_try] = ACTIONS(554), - [anon_sym_82] = ACTIONS(556), - [anon_sym_do] = ACTIONS(554), - [anon_sym_83] = ACTIONS(556), - [anon_sym_all] = ACTIONS(556), - [anon_sym_84] = ACTIONS(556), - [anon_sym_setinv] = ACTIONS(556), - [anon_sym_setunder] = ACTIONS(556), - [anon_sym_85] = ACTIONS(556), - [anon_sym_86] = ACTIONS(556), - [anon_sym_87] = ACTIONS(556), - [anon_sym_88] = ACTIONS(556), - [anon_sym_89] = ACTIONS(556), - [anon_sym_90] = ACTIONS(556), - [anon_sym_91] = ACTIONS(556), - [anon_sym_92] = ACTIONS(556), - [anon_sym_93] = ACTIONS(556), - [anon_sym_94] = ACTIONS(556), - [anon_sym_95] = ACTIONS(556), - [anon_sym_96] = ACTIONS(556), - [sym_emptyMultiLineString] = ACTIONS(556), - [sym__endOfLine] = ACTIONS(5), + [107] = { + [aux_sym_number_token1] = ACTIONS(568), + [sym_fraction] = ACTIONS(570), + [anon_sym_os] = ACTIONS(568), + [anon_sym_Family] = ACTIONS(568), + [anon_sym_Arch] = ACTIONS(568), + [anon_sym_ExeExt] = ACTIONS(568), + [anon_sym_PllExt] = ACTIONS(568), + [anon_sym_Sep] = ACTIONS(568), + [anon_sym_NUmProcs] = ACTIONS(568), + [anon_sym_] = ACTIONS(570), + [aux_sym_character_token1] = ACTIONS(570), + [sym_string] = ACTIONS(570), + [sym_multiLineString] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [sym_identifier] = ACTIONS(568), + [sym_identifierDeprecated] = ACTIONS(568), + [sym_system] = ACTIONS(570), + [sym_comment] = ACTIONS(568), + [sym_openParen] = ACTIONS(570), + [sym_closeParen] = ACTIONS(570), + [sym_openCurly] = ACTIONS(570), + [sym_closeCurly] = ACTIONS(570), + [sym_openBracket] = ACTIONS(570), + [sym_closeBracket] = ACTIONS(570), + [sym_underscore] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_eta] = ACTIONS(570), + [anon_sym_2] = ACTIONS(568), + [anon_sym_pi] = ACTIONS(568), + [anon_sym_3] = ACTIONS(568), + [anon_sym_tau] = ACTIONS(570), + [anon_sym_4] = ACTIONS(568), + [anon_sym_infinity] = ACTIONS(570), + [anon_sym_5] = ACTIONS(570), + [anon_sym_e] = ACTIONS(568), + [anon_sym_NaN] = ACTIONS(568), + [anon_sym_NumProcs] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_COLON] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_identity] = ACTIONS(570), + [anon_sym_id] = ACTIONS(568), + [anon_sym_6] = ACTIONS(570), + [anon_sym_not] = ACTIONS(570), + [anon_sym_7] = ACTIONS(570), + [anon_sym_sign] = ACTIONS(570), + [anon_sym_8] = ACTIONS(570), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_9] = ACTIONS(568), + [anon_sym_absolutevalue] = ACTIONS(570), + [anon_sym_10] = ACTIONS(570), + [anon_sym_sqrt] = ACTIONS(570), + [anon_sym_11] = ACTIONS(570), + [anon_sym_sine] = ACTIONS(570), + [anon_sym_12] = ACTIONS(570), + [anon_sym_floor] = ACTIONS(570), + [anon_sym_13] = ACTIONS(570), + [anon_sym_ceiling] = ACTIONS(570), + [anon_sym_14] = ACTIONS(570), + [anon_sym_round] = ACTIONS(570), + [anon_sym_15] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_16] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_17] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_18] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_19] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_20] = ACTIONS(570), + [anon_sym_modulus] = ACTIONS(570), + [anon_sym_21] = ACTIONS(570), + [anon_sym_power] = ACTIONS(570), + [anon_sym_22] = ACTIONS(570), + [anon_sym_logarithm] = ACTIONS(570), + [anon_sym_23] = ACTIONS(570), + [anon_sym_minimum] = ACTIONS(570), + [anon_sym_24] = ACTIONS(570), + [anon_sym_maximum] = ACTIONS(570), + [anon_sym_25] = ACTIONS(570), + [anon_sym_atangent] = ACTIONS(570), + [anon_sym_26] = ACTIONS(570), + [anon_sym_length] = ACTIONS(570), + [anon_sym_27] = ACTIONS(570), + [anon_sym_shape] = ACTIONS(570), + [anon_sym_28] = ACTIONS(570), + [anon_sym_range] = ACTIONS(570), + [anon_sym_29] = ACTIONS(570), + [anon_sym_first] = ACTIONS(570), + [anon_sym_30] = ACTIONS(570), + [anon_sym_reverse] = ACTIONS(570), + [anon_sym_31] = ACTIONS(570), + [anon_sym_deshape] = ACTIONS(570), + [anon_sym_32] = ACTIONS(570), + [anon_sym_bits] = ACTIONS(570), + [anon_sym_33] = ACTIONS(570), + [anon_sym_transpose] = ACTIONS(570), + [anon_sym_34] = ACTIONS(570), + [anon_sym_rise] = ACTIONS(570), + [anon_sym_35] = ACTIONS(570), + [anon_sym_fall] = ACTIONS(570), + [anon_sym_36] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_37] = ACTIONS(570), + [anon_sym_classify] = ACTIONS(570), + [anon_sym_38] = ACTIONS(570), + [anon_sym_deduplicate] = ACTIONS(570), + [anon_sym_39] = ACTIONS(570), + [anon_sym_box] = ACTIONS(570), + [anon_sym_40] = ACTIONS(570), + [anon_sym_unbox] = ACTIONS(570), + [anon_sym_41] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_42] = ACTIONS(570), + [anon_sym_couple] = ACTIONS(570), + [anon_sym_43] = ACTIONS(570), + [anon_sym_join] = ACTIONS(570), + [anon_sym_44] = ACTIONS(570), + [anon_sym_select] = ACTIONS(570), + [anon_sym_45] = ACTIONS(570), + [anon_sym_pick] = ACTIONS(570), + [anon_sym_46] = ACTIONS(570), + [anon_sym_reshape] = ACTIONS(570), + [anon_sym_47] = ACTIONS(570), + [anon_sym_take] = ACTIONS(570), + [anon_sym_48] = ACTIONS(570), + [anon_sym_drop] = ACTIONS(570), + [anon_sym_49] = ACTIONS(570), + [anon_sym_rotate] = ACTIONS(570), + [anon_sym_50] = ACTIONS(570), + [anon_sym_windows] = ACTIONS(570), + [anon_sym_51] = ACTIONS(570), + [anon_sym_keep] = ACTIONS(570), + [anon_sym_52] = ACTIONS(570), + [anon_sym_find] = ACTIONS(570), + [anon_sym_53] = ACTIONS(570), + [anon_sym_member] = ACTIONS(570), + [anon_sym_54] = ACTIONS(570), + [anon_sym_indexof] = ACTIONS(570), + [anon_sym_55] = ACTIONS(570), + [anon_sym_assert] = ACTIONS(570), + [anon_sym_56] = ACTIONS(570), + [anon_sym_wait] = ACTIONS(570), + [anon_sym_parse] = ACTIONS(570), + [anon_sym_random] = ACTIONS(570), + [anon_sym_57] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_deal] = ACTIONS(570), + [anon_sym_tag] = ACTIONS(570), + [anon_sym_now] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_58] = ACTIONS(570), + [anon_sym_dump] = ACTIONS(570), + [anon_sym_regex] = ACTIONS(570), + [anon_sym_utf] = ACTIONS(570), + [anon_sym_send] = ACTIONS(570), + [anon_sym_recv] = ACTIONS(570), + [anon_sym_tryrecv] = ACTIONS(570), + [anon_sym_complex] = ACTIONS(570), + [anon_sym_59] = ACTIONS(570), + [anon_sym_rerank] = ACTIONS(570), + [anon_sym_60] = ACTIONS(570), + [anon_sym_fix] = ACTIONS(570), + [anon_sym_61] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_reduce] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_scan] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(570), + [anon_sym_each] = ACTIONS(570), + [anon_sym_62] = ACTIONS(570), + [anon_sym_rows] = ACTIONS(570), + [anon_sym_63] = ACTIONS(570), + [anon_sym_repeat] = ACTIONS(570), + [anon_sym_64] = ACTIONS(570), + [anon_sym_dip] = ACTIONS(570), + [anon_sym_65] = ACTIONS(570), + [anon_sym_gap] = ACTIONS(570), + [anon_sym_66] = ACTIONS(570), + [anon_sym_invert] = ACTIONS(570), + [anon_sym_67] = ACTIONS(570), + [anon_sym_spawn] = ACTIONS(570), + [anon_sym_pack] = ACTIONS(570), + [anon_sym_68] = ACTIONS(570), + [anon_sym_rectify] = ACTIONS(570), + [anon_sym_69] = ACTIONS(570), + [anon_sym_this] = ACTIONS(570), + [anon_sym_70] = ACTIONS(570), + [anon_sym_recur] = ACTIONS(570), + [anon_sym_71] = ACTIONS(570), + [anon_sym_fold] = ACTIONS(570), + [anon_sym_72] = ACTIONS(570), + [anon_sym_table] = ACTIONS(570), + [anon_sym_73] = ACTIONS(570), + [anon_sym_cross] = ACTIONS(570), + [anon_sym_74] = ACTIONS(570), + [anon_sym_group] = ACTIONS(570), + [anon_sym_75] = ACTIONS(570), + [anon_sym_partition] = ACTIONS(570), + [anon_sym_76] = ACTIONS(570), + [anon_sym_both] = ACTIONS(570), + [anon_sym_77] = ACTIONS(570), + [anon_sym_bracket] = ACTIONS(570), + [anon_sym_78] = ACTIONS(570), + [anon_sym_fork] = ACTIONS(570), + [anon_sym_79] = ACTIONS(570), + [anon_sym_under] = ACTIONS(570), + [anon_sym_80] = ACTIONS(570), + [anon_sym_fill] = ACTIONS(570), + [anon_sym_81] = ACTIONS(570), + [anon_sym_try] = ACTIONS(568), + [anon_sym_82] = ACTIONS(570), + [anon_sym_do] = ACTIONS(568), + [anon_sym_83] = ACTIONS(570), + [anon_sym_all] = ACTIONS(570), + [anon_sym_84] = ACTIONS(570), + [anon_sym_setinv] = ACTIONS(570), + [anon_sym_setunder] = ACTIONS(570), + [anon_sym_85] = ACTIONS(570), + [anon_sym_86] = ACTIONS(570), + [anon_sym_87] = ACTIONS(570), + [anon_sym_88] = ACTIONS(570), + [anon_sym_89] = ACTIONS(570), + [anon_sym_90] = ACTIONS(570), + [anon_sym_91] = ACTIONS(570), + [anon_sym_92] = ACTIONS(570), + [sym__endOfLine] = ACTIONS(570), }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(470), - [aux_sym_number_token1] = ACTIONS(468), - [sym_fraction] = ACTIONS(470), - [anon_sym_os] = ACTIONS(468), - [anon_sym_Family] = ACTIONS(468), - [anon_sym_Arch] = ACTIONS(468), - [anon_sym_ExeExt] = ACTIONS(468), - [anon_sym_PllExt] = ACTIONS(468), - [anon_sym_Sep] = ACTIONS(468), - [anon_sym_NUmProcs] = ACTIONS(468), - [anon_sym_] = ACTIONS(470), - [aux_sym_character_token1] = ACTIONS(470), - [sym_string] = ACTIONS(470), - [sym_multiLineString] = ACTIONS(470), - [sym_identifier] = ACTIONS(468), - [sym_identifierDeprecated] = ACTIONS(468), - [sym_system] = ACTIONS(470), - [sym_comment] = ACTIONS(468), - [sym_openParen] = ACTIONS(470), - [sym_openCurly] = ACTIONS(470), - [sym_openBracket] = ACTIONS(470), - [sym_underscore] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(470), - [anon_sym_eta] = ACTIONS(470), - [anon_sym_2] = ACTIONS(468), - [anon_sym_pi] = ACTIONS(468), - [anon_sym_3] = ACTIONS(468), - [anon_sym_tau] = ACTIONS(470), - [anon_sym_4] = ACTIONS(468), - [anon_sym_infinity] = ACTIONS(470), - [anon_sym_5] = ACTIONS(470), - [anon_sym_e] = ACTIONS(468), - [anon_sym_NaN] = ACTIONS(468), - [anon_sym_NumProcs] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_COLON] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_identity] = ACTIONS(470), - [anon_sym_id] = ACTIONS(468), - [anon_sym_6] = ACTIONS(470), - [anon_sym_not] = ACTIONS(470), - [anon_sym_7] = ACTIONS(470), - [anon_sym_sign] = ACTIONS(470), - [anon_sym_8] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), - [anon_sym_9] = ACTIONS(468), - [anon_sym_absolutevalue] = ACTIONS(470), - [anon_sym_10] = ACTIONS(470), - [anon_sym_sqrt] = ACTIONS(470), - [anon_sym_11] = ACTIONS(470), - [anon_sym_sine] = ACTIONS(470), - [anon_sym_12] = ACTIONS(470), - [anon_sym_floor] = ACTIONS(470), - [anon_sym_13] = ACTIONS(470), - [anon_sym_ceiling] = ACTIONS(470), - [anon_sym_14] = ACTIONS(470), - [anon_sym_round] = ACTIONS(470), - [anon_sym_15] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_16] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_17] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_18] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(470), - [anon_sym_19] = ACTIONS(470), - [anon_sym_PERCENT] = ACTIONS(470), - [anon_sym_20] = ACTIONS(470), - [anon_sym_modulus] = ACTIONS(470), - [anon_sym_21] = ACTIONS(470), - [anon_sym_power] = ACTIONS(470), - [anon_sym_22] = ACTIONS(470), - [anon_sym_logarithm] = ACTIONS(470), - [anon_sym_23] = ACTIONS(470), - [anon_sym_minimum] = ACTIONS(470), - [anon_sym_24] = ACTIONS(470), - [anon_sym_maximum] = ACTIONS(470), - [anon_sym_25] = ACTIONS(470), - [anon_sym_atangent] = ACTIONS(470), - [anon_sym_26] = ACTIONS(470), - [anon_sym_length] = ACTIONS(470), - [anon_sym_27] = ACTIONS(470), - [anon_sym_shape] = ACTIONS(470), - [anon_sym_28] = ACTIONS(470), - [anon_sym_range] = ACTIONS(470), - [anon_sym_29] = ACTIONS(470), - [anon_sym_first] = ACTIONS(470), - [anon_sym_30] = ACTIONS(470), - [anon_sym_reverse] = ACTIONS(470), - [anon_sym_31] = ACTIONS(470), - [anon_sym_deshape] = ACTIONS(470), - [anon_sym_32] = ACTIONS(470), - [anon_sym_bits] = ACTIONS(470), - [anon_sym_33] = ACTIONS(470), - [anon_sym_transpose] = ACTIONS(470), - [anon_sym_34] = ACTIONS(470), - [anon_sym_rise] = ACTIONS(470), - [anon_sym_35] = ACTIONS(470), - [anon_sym_fall] = ACTIONS(470), - [anon_sym_36] = ACTIONS(470), - [anon_sym_where] = ACTIONS(470), - [anon_sym_37] = ACTIONS(470), - [anon_sym_classify] = ACTIONS(470), - [anon_sym_38] = ACTIONS(470), - [anon_sym_deduplicate] = ACTIONS(470), - [anon_sym_39] = ACTIONS(470), - [anon_sym_box] = ACTIONS(470), - [anon_sym_40] = ACTIONS(470), - [anon_sym_unbox] = ACTIONS(470), - [anon_sym_41] = ACTIONS(470), - [anon_sym_match] = ACTIONS(470), - [anon_sym_42] = ACTIONS(470), - [anon_sym_couple] = ACTIONS(470), - [anon_sym_43] = ACTIONS(470), - [anon_sym_join] = ACTIONS(470), - [anon_sym_44] = ACTIONS(470), - [anon_sym_select] = ACTIONS(470), - [anon_sym_45] = ACTIONS(470), - [anon_sym_pick] = ACTIONS(470), - [anon_sym_46] = ACTIONS(470), - [anon_sym_reshape] = ACTIONS(470), - [anon_sym_47] = ACTIONS(470), - [anon_sym_take] = ACTIONS(470), - [anon_sym_48] = ACTIONS(470), - [anon_sym_drop] = ACTIONS(470), - [anon_sym_49] = ACTIONS(470), - [anon_sym_rotate] = ACTIONS(470), - [anon_sym_50] = ACTIONS(470), - [anon_sym_windows] = ACTIONS(470), - [anon_sym_51] = ACTIONS(470), - [anon_sym_keep] = ACTIONS(470), - [anon_sym_52] = ACTIONS(470), - [anon_sym_find] = ACTIONS(470), - [anon_sym_53] = ACTIONS(470), - [anon_sym_member] = ACTIONS(470), - [anon_sym_54] = ACTIONS(470), - [anon_sym_indexof] = ACTIONS(470), - [anon_sym_55] = ACTIONS(470), - [anon_sym_assert] = ACTIONS(470), - [anon_sym_56] = ACTIONS(470), - [anon_sym_wait] = ACTIONS(470), - [anon_sym_parse] = ACTIONS(470), - [anon_sym_random] = ACTIONS(470), - [anon_sym_57] = ACTIONS(470), - [anon_sym_gen] = ACTIONS(470), - [anon_sym_deal] = ACTIONS(470), - [anon_sym_tag] = ACTIONS(470), - [anon_sym_now] = ACTIONS(470), - [anon_sym_type] = ACTIONS(470), - [anon_sym_58] = ACTIONS(470), - [anon_sym_dump] = ACTIONS(470), - [anon_sym_regex] = ACTIONS(470), - [anon_sym_utf] = ACTIONS(470), - [anon_sym_send] = ACTIONS(470), - [anon_sym_recv] = ACTIONS(470), - [anon_sym_tryrecv] = ACTIONS(470), - [anon_sym_complex] = ACTIONS(470), - [anon_sym_59] = ACTIONS(470), - [anon_sym_rerank] = ACTIONS(470), - [anon_sym_60] = ACTIONS(470), - [anon_sym_fix] = ACTIONS(470), - [anon_sym_61] = ACTIONS(470), - [anon_sym_reduce] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_scan] = ACTIONS(470), - [anon_sym_BSLASH] = ACTIONS(470), - [anon_sym_each] = ACTIONS(470), - [anon_sym_62] = ACTIONS(470), - [anon_sym_rows] = ACTIONS(470), - [anon_sym_63] = ACTIONS(470), - [anon_sym_repeat] = ACTIONS(470), - [anon_sym_64] = ACTIONS(470), - [anon_sym_dip] = ACTIONS(470), - [anon_sym_65] = ACTIONS(470), - [anon_sym_gap] = ACTIONS(470), - [anon_sym_66] = ACTIONS(470), - [anon_sym_invert] = ACTIONS(470), - [anon_sym_67] = ACTIONS(470), - [anon_sym_spawn] = ACTIONS(470), - [anon_sym_pack] = ACTIONS(470), - [anon_sym_68] = ACTIONS(470), - [anon_sym_rectify] = ACTIONS(470), - [anon_sym_69] = ACTIONS(470), - [anon_sym_this] = ACTIONS(470), - [anon_sym_70] = ACTIONS(470), - [anon_sym_recur] = ACTIONS(470), - [anon_sym_71] = ACTIONS(470), - [anon_sym_fold] = ACTIONS(470), - [anon_sym_72] = ACTIONS(470), - [anon_sym_table] = ACTIONS(470), - [anon_sym_73] = ACTIONS(470), - [anon_sym_cross] = ACTIONS(470), - [anon_sym_74] = ACTIONS(470), - [anon_sym_group] = ACTIONS(470), - [anon_sym_75] = ACTIONS(470), - [anon_sym_partition] = ACTIONS(470), - [anon_sym_76] = ACTIONS(470), - [anon_sym_both] = ACTIONS(470), - [anon_sym_77] = ACTIONS(470), - [anon_sym_bracket] = ACTIONS(470), - [anon_sym_78] = ACTIONS(470), - [anon_sym_fork] = ACTIONS(470), - [anon_sym_79] = ACTIONS(470), - [anon_sym_under] = ACTIONS(470), - [anon_sym_80] = ACTIONS(470), - [anon_sym_fill] = ACTIONS(470), - [anon_sym_81] = ACTIONS(470), - [anon_sym_try] = ACTIONS(468), - [anon_sym_82] = ACTIONS(470), - [anon_sym_do] = ACTIONS(468), - [anon_sym_83] = ACTIONS(470), - [anon_sym_all] = ACTIONS(470), - [anon_sym_84] = ACTIONS(470), - [anon_sym_setinv] = ACTIONS(470), - [anon_sym_setunder] = ACTIONS(470), - [anon_sym_85] = ACTIONS(470), - [anon_sym_86] = ACTIONS(470), - [anon_sym_87] = ACTIONS(470), - [anon_sym_88] = ACTIONS(470), - [anon_sym_89] = ACTIONS(470), - [anon_sym_90] = ACTIONS(470), - [anon_sym_91] = ACTIONS(470), - [anon_sym_92] = ACTIONS(470), - [anon_sym_93] = ACTIONS(470), - [anon_sym_94] = ACTIONS(470), - [anon_sym_95] = ACTIONS(470), - [anon_sym_96] = ACTIONS(470), - [sym__endOfLine] = ACTIONS(470), + [108] = { + [aux_sym_number_token1] = ACTIONS(560), + [sym_fraction] = ACTIONS(562), + [anon_sym_os] = ACTIONS(560), + [anon_sym_Family] = ACTIONS(560), + [anon_sym_Arch] = ACTIONS(560), + [anon_sym_ExeExt] = ACTIONS(560), + [anon_sym_PllExt] = ACTIONS(560), + [anon_sym_Sep] = ACTIONS(560), + [anon_sym_NUmProcs] = ACTIONS(560), + [anon_sym_] = ACTIONS(562), + [aux_sym_character_token1] = ACTIONS(562), + [sym_string] = ACTIONS(562), + [sym_multiLineString] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), + [sym_identifierDeprecated] = ACTIONS(560), + [sym_system] = ACTIONS(562), + [sym_comment] = ACTIONS(560), + [sym_openParen] = ACTIONS(562), + [sym_closeParen] = ACTIONS(562), + [sym_openCurly] = ACTIONS(562), + [sym_closeCurly] = ACTIONS(562), + [sym_openBracket] = ACTIONS(562), + [sym_closeBracket] = ACTIONS(562), + [sym_underscore] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(562), + [anon_sym_eta] = ACTIONS(562), + [anon_sym_2] = ACTIONS(560), + [anon_sym_pi] = ACTIONS(560), + [anon_sym_3] = ACTIONS(560), + [anon_sym_tau] = ACTIONS(562), + [anon_sym_4] = ACTIONS(560), + [anon_sym_infinity] = ACTIONS(562), + [anon_sym_5] = ACTIONS(562), + [anon_sym_e] = ACTIONS(560), + [anon_sym_NaN] = ACTIONS(560), + [anon_sym_NumProcs] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_identity] = ACTIONS(562), + [anon_sym_id] = ACTIONS(560), + [anon_sym_6] = ACTIONS(562), + [anon_sym_not] = ACTIONS(562), + [anon_sym_7] = ACTIONS(562), + [anon_sym_sign] = ACTIONS(562), + [anon_sym_8] = ACTIONS(562), + [anon_sym_BQUOTE] = ACTIONS(562), + [anon_sym_9] = ACTIONS(560), + [anon_sym_absolutevalue] = ACTIONS(562), + [anon_sym_10] = ACTIONS(562), + [anon_sym_sqrt] = ACTIONS(562), + [anon_sym_11] = ACTIONS(562), + [anon_sym_sine] = ACTIONS(562), + [anon_sym_12] = ACTIONS(562), + [anon_sym_floor] = ACTIONS(562), + [anon_sym_13] = ACTIONS(562), + [anon_sym_ceiling] = ACTIONS(562), + [anon_sym_14] = ACTIONS(562), + [anon_sym_round] = ACTIONS(562), + [anon_sym_15] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_16] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_17] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_18] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_19] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_20] = ACTIONS(562), + [anon_sym_modulus] = ACTIONS(562), + [anon_sym_21] = ACTIONS(562), + [anon_sym_power] = ACTIONS(562), + [anon_sym_22] = ACTIONS(562), + [anon_sym_logarithm] = ACTIONS(562), + [anon_sym_23] = ACTIONS(562), + [anon_sym_minimum] = ACTIONS(562), + [anon_sym_24] = ACTIONS(562), + [anon_sym_maximum] = ACTIONS(562), + [anon_sym_25] = ACTIONS(562), + [anon_sym_atangent] = ACTIONS(562), + [anon_sym_26] = ACTIONS(562), + [anon_sym_length] = ACTIONS(562), + [anon_sym_27] = ACTIONS(562), + [anon_sym_shape] = ACTIONS(562), + [anon_sym_28] = ACTIONS(562), + [anon_sym_range] = ACTIONS(562), + [anon_sym_29] = ACTIONS(562), + [anon_sym_first] = ACTIONS(562), + [anon_sym_30] = ACTIONS(562), + [anon_sym_reverse] = ACTIONS(562), + [anon_sym_31] = ACTIONS(562), + [anon_sym_deshape] = ACTIONS(562), + [anon_sym_32] = ACTIONS(562), + [anon_sym_bits] = ACTIONS(562), + [anon_sym_33] = ACTIONS(562), + [anon_sym_transpose] = ACTIONS(562), + [anon_sym_34] = ACTIONS(562), + [anon_sym_rise] = ACTIONS(562), + [anon_sym_35] = ACTIONS(562), + [anon_sym_fall] = ACTIONS(562), + [anon_sym_36] = ACTIONS(562), + [anon_sym_where] = ACTIONS(562), + [anon_sym_37] = ACTIONS(562), + [anon_sym_classify] = ACTIONS(562), + [anon_sym_38] = ACTIONS(562), + [anon_sym_deduplicate] = ACTIONS(562), + [anon_sym_39] = ACTIONS(562), + [anon_sym_box] = ACTIONS(562), + [anon_sym_40] = ACTIONS(562), + [anon_sym_unbox] = ACTIONS(562), + [anon_sym_41] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_42] = ACTIONS(562), + [anon_sym_couple] = ACTIONS(562), + [anon_sym_43] = ACTIONS(562), + [anon_sym_join] = ACTIONS(562), + [anon_sym_44] = ACTIONS(562), + [anon_sym_select] = ACTIONS(562), + [anon_sym_45] = ACTIONS(562), + [anon_sym_pick] = ACTIONS(562), + [anon_sym_46] = ACTIONS(562), + [anon_sym_reshape] = ACTIONS(562), + [anon_sym_47] = ACTIONS(562), + [anon_sym_take] = ACTIONS(562), + [anon_sym_48] = ACTIONS(562), + [anon_sym_drop] = ACTIONS(562), + [anon_sym_49] = ACTIONS(562), + [anon_sym_rotate] = ACTIONS(562), + [anon_sym_50] = ACTIONS(562), + [anon_sym_windows] = ACTIONS(562), + [anon_sym_51] = ACTIONS(562), + [anon_sym_keep] = ACTIONS(562), + [anon_sym_52] = ACTIONS(562), + [anon_sym_find] = ACTIONS(562), + [anon_sym_53] = ACTIONS(562), + [anon_sym_member] = ACTIONS(562), + [anon_sym_54] = ACTIONS(562), + [anon_sym_indexof] = ACTIONS(562), + [anon_sym_55] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(562), + [anon_sym_56] = ACTIONS(562), + [anon_sym_wait] = ACTIONS(562), + [anon_sym_parse] = ACTIONS(562), + [anon_sym_random] = ACTIONS(562), + [anon_sym_57] = ACTIONS(562), + [anon_sym_gen] = ACTIONS(562), + [anon_sym_deal] = ACTIONS(562), + [anon_sym_tag] = ACTIONS(562), + [anon_sym_now] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_58] = ACTIONS(562), + [anon_sym_dump] = ACTIONS(562), + [anon_sym_regex] = ACTIONS(562), + [anon_sym_utf] = ACTIONS(562), + [anon_sym_send] = ACTIONS(562), + [anon_sym_recv] = ACTIONS(562), + [anon_sym_tryrecv] = ACTIONS(562), + [anon_sym_complex] = ACTIONS(562), + [anon_sym_59] = ACTIONS(562), + [anon_sym_rerank] = ACTIONS(562), + [anon_sym_60] = ACTIONS(562), + [anon_sym_fix] = ACTIONS(562), + [anon_sym_61] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_reduce] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_scan] = ACTIONS(562), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_each] = ACTIONS(562), + [anon_sym_62] = ACTIONS(562), + [anon_sym_rows] = ACTIONS(562), + [anon_sym_63] = ACTIONS(562), + [anon_sym_repeat] = ACTIONS(562), + [anon_sym_64] = ACTIONS(562), + [anon_sym_dip] = ACTIONS(562), + [anon_sym_65] = ACTIONS(562), + [anon_sym_gap] = ACTIONS(562), + [anon_sym_66] = ACTIONS(562), + [anon_sym_invert] = ACTIONS(562), + [anon_sym_67] = ACTIONS(562), + [anon_sym_spawn] = ACTIONS(562), + [anon_sym_pack] = ACTIONS(562), + [anon_sym_68] = ACTIONS(562), + [anon_sym_rectify] = ACTIONS(562), + [anon_sym_69] = ACTIONS(562), + [anon_sym_this] = ACTIONS(562), + [anon_sym_70] = ACTIONS(562), + [anon_sym_recur] = ACTIONS(562), + [anon_sym_71] = ACTIONS(562), + [anon_sym_fold] = ACTIONS(562), + [anon_sym_72] = ACTIONS(562), + [anon_sym_table] = ACTIONS(562), + [anon_sym_73] = ACTIONS(562), + [anon_sym_cross] = ACTIONS(562), + [anon_sym_74] = ACTIONS(562), + [anon_sym_group] = ACTIONS(562), + [anon_sym_75] = ACTIONS(562), + [anon_sym_partition] = ACTIONS(562), + [anon_sym_76] = ACTIONS(562), + [anon_sym_both] = ACTIONS(562), + [anon_sym_77] = ACTIONS(562), + [anon_sym_bracket] = ACTIONS(562), + [anon_sym_78] = ACTIONS(562), + [anon_sym_fork] = ACTIONS(562), + [anon_sym_79] = ACTIONS(562), + [anon_sym_under] = ACTIONS(562), + [anon_sym_80] = ACTIONS(562), + [anon_sym_fill] = ACTIONS(562), + [anon_sym_81] = ACTIONS(562), + [anon_sym_try] = ACTIONS(560), + [anon_sym_82] = ACTIONS(562), + [anon_sym_do] = ACTIONS(560), + [anon_sym_83] = ACTIONS(562), + [anon_sym_all] = ACTIONS(562), + [anon_sym_84] = ACTIONS(562), + [anon_sym_setinv] = ACTIONS(562), + [anon_sym_setunder] = ACTIONS(562), + [anon_sym_85] = ACTIONS(562), + [anon_sym_86] = ACTIONS(562), + [anon_sym_87] = ACTIONS(562), + [anon_sym_88] = ACTIONS(562), + [anon_sym_89] = ACTIONS(562), + [anon_sym_90] = ACTIONS(562), + [anon_sym_91] = ACTIONS(562), + [anon_sym_92] = ACTIONS(562), + [sym__endOfLine] = ACTIONS(562), }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(466), - [aux_sym_number_token1] = ACTIONS(464), - [sym_fraction] = ACTIONS(466), - [anon_sym_os] = ACTIONS(464), - [anon_sym_Family] = ACTIONS(464), - [anon_sym_Arch] = ACTIONS(464), - [anon_sym_ExeExt] = ACTIONS(464), - [anon_sym_PllExt] = ACTIONS(464), - [anon_sym_Sep] = ACTIONS(464), - [anon_sym_NUmProcs] = ACTIONS(464), - [anon_sym_] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(466), - [sym_string] = ACTIONS(466), - [sym_multiLineString] = ACTIONS(466), - [sym_identifier] = ACTIONS(464), - [sym_identifierDeprecated] = ACTIONS(464), - [sym_system] = ACTIONS(466), - [sym_comment] = ACTIONS(464), - [sym_openParen] = ACTIONS(466), - [sym_openCurly] = ACTIONS(466), - [sym_openBracket] = ACTIONS(466), - [sym_underscore] = ACTIONS(466), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_eta] = ACTIONS(466), - [anon_sym_2] = ACTIONS(464), - [anon_sym_pi] = ACTIONS(464), - [anon_sym_3] = ACTIONS(464), - [anon_sym_tau] = ACTIONS(466), - [anon_sym_4] = ACTIONS(464), - [anon_sym_infinity] = ACTIONS(466), - [anon_sym_5] = ACTIONS(466), - [anon_sym_e] = ACTIONS(464), - [anon_sym_NaN] = ACTIONS(464), - [anon_sym_NumProcs] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_identity] = ACTIONS(466), - [anon_sym_id] = ACTIONS(464), - [anon_sym_6] = ACTIONS(466), - [anon_sym_not] = ACTIONS(466), - [anon_sym_7] = ACTIONS(466), - [anon_sym_sign] = ACTIONS(466), - [anon_sym_8] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(466), - [anon_sym_10] = ACTIONS(466), - [anon_sym_sqrt] = ACTIONS(466), - [anon_sym_11] = ACTIONS(466), - [anon_sym_sine] = ACTIONS(466), - [anon_sym_12] = ACTIONS(466), - [anon_sym_floor] = ACTIONS(466), - [anon_sym_13] = ACTIONS(466), - [anon_sym_ceiling] = ACTIONS(466), - [anon_sym_14] = ACTIONS(466), - [anon_sym_round] = ACTIONS(466), - [anon_sym_15] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_16] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_17] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_18] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_19] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_20] = ACTIONS(466), - [anon_sym_modulus] = ACTIONS(466), - [anon_sym_21] = ACTIONS(466), - [anon_sym_power] = ACTIONS(466), - [anon_sym_22] = ACTIONS(466), - [anon_sym_logarithm] = ACTIONS(466), - [anon_sym_23] = ACTIONS(466), - [anon_sym_minimum] = ACTIONS(466), - [anon_sym_24] = ACTIONS(466), - [anon_sym_maximum] = ACTIONS(466), - [anon_sym_25] = ACTIONS(466), - [anon_sym_atangent] = ACTIONS(466), - [anon_sym_26] = ACTIONS(466), - [anon_sym_length] = ACTIONS(466), - [anon_sym_27] = ACTIONS(466), - [anon_sym_shape] = ACTIONS(466), - [anon_sym_28] = ACTIONS(466), - [anon_sym_range] = ACTIONS(466), - [anon_sym_29] = ACTIONS(466), - [anon_sym_first] = ACTIONS(466), - [anon_sym_30] = ACTIONS(466), - [anon_sym_reverse] = ACTIONS(466), - [anon_sym_31] = ACTIONS(466), - [anon_sym_deshape] = ACTIONS(466), - [anon_sym_32] = ACTIONS(466), - [anon_sym_bits] = ACTIONS(466), - [anon_sym_33] = ACTIONS(466), - [anon_sym_transpose] = ACTIONS(466), - [anon_sym_34] = ACTIONS(466), - [anon_sym_rise] = ACTIONS(466), - [anon_sym_35] = ACTIONS(466), - [anon_sym_fall] = ACTIONS(466), - [anon_sym_36] = ACTIONS(466), - [anon_sym_where] = ACTIONS(466), - [anon_sym_37] = ACTIONS(466), - [anon_sym_classify] = ACTIONS(466), - [anon_sym_38] = ACTIONS(466), - [anon_sym_deduplicate] = ACTIONS(466), - [anon_sym_39] = ACTIONS(466), - [anon_sym_box] = ACTIONS(466), - [anon_sym_40] = ACTIONS(466), - [anon_sym_unbox] = ACTIONS(466), - [anon_sym_41] = ACTIONS(466), - [anon_sym_match] = ACTIONS(466), - [anon_sym_42] = ACTIONS(466), - [anon_sym_couple] = ACTIONS(466), - [anon_sym_43] = ACTIONS(466), - [anon_sym_join] = ACTIONS(466), - [anon_sym_44] = ACTIONS(466), - [anon_sym_select] = ACTIONS(466), - [anon_sym_45] = ACTIONS(466), - [anon_sym_pick] = ACTIONS(466), - [anon_sym_46] = ACTIONS(466), - [anon_sym_reshape] = ACTIONS(466), - [anon_sym_47] = ACTIONS(466), - [anon_sym_take] = ACTIONS(466), - [anon_sym_48] = ACTIONS(466), - [anon_sym_drop] = ACTIONS(466), - [anon_sym_49] = ACTIONS(466), - [anon_sym_rotate] = ACTIONS(466), - [anon_sym_50] = ACTIONS(466), - [anon_sym_windows] = ACTIONS(466), - [anon_sym_51] = ACTIONS(466), - [anon_sym_keep] = ACTIONS(466), - [anon_sym_52] = ACTIONS(466), - [anon_sym_find] = ACTIONS(466), - [anon_sym_53] = ACTIONS(466), - [anon_sym_member] = ACTIONS(466), - [anon_sym_54] = ACTIONS(466), - [anon_sym_indexof] = ACTIONS(466), - [anon_sym_55] = ACTIONS(466), - [anon_sym_assert] = ACTIONS(466), - [anon_sym_56] = ACTIONS(466), - [anon_sym_wait] = ACTIONS(466), - [anon_sym_parse] = ACTIONS(466), - [anon_sym_random] = ACTIONS(466), - [anon_sym_57] = ACTIONS(466), - [anon_sym_gen] = ACTIONS(466), - [anon_sym_deal] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_now] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_58] = ACTIONS(466), - [anon_sym_dump] = ACTIONS(466), - [anon_sym_regex] = ACTIONS(466), - [anon_sym_utf] = ACTIONS(466), - [anon_sym_send] = ACTIONS(466), - [anon_sym_recv] = ACTIONS(466), - [anon_sym_tryrecv] = ACTIONS(466), - [anon_sym_complex] = ACTIONS(466), - [anon_sym_59] = ACTIONS(466), - [anon_sym_rerank] = ACTIONS(466), - [anon_sym_60] = ACTIONS(466), - [anon_sym_fix] = ACTIONS(466), - [anon_sym_61] = ACTIONS(466), - [anon_sym_reduce] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_scan] = ACTIONS(466), - [anon_sym_BSLASH] = ACTIONS(466), - [anon_sym_each] = ACTIONS(466), - [anon_sym_62] = ACTIONS(466), - [anon_sym_rows] = ACTIONS(466), - [anon_sym_63] = ACTIONS(466), - [anon_sym_repeat] = ACTIONS(466), - [anon_sym_64] = ACTIONS(466), - [anon_sym_dip] = ACTIONS(466), - [anon_sym_65] = ACTIONS(466), - [anon_sym_gap] = ACTIONS(466), - [anon_sym_66] = ACTIONS(466), - [anon_sym_invert] = ACTIONS(466), - [anon_sym_67] = ACTIONS(466), - [anon_sym_spawn] = ACTIONS(466), - [anon_sym_pack] = ACTIONS(466), - [anon_sym_68] = ACTIONS(466), - [anon_sym_rectify] = ACTIONS(466), - [anon_sym_69] = ACTIONS(466), - [anon_sym_this] = ACTIONS(466), - [anon_sym_70] = ACTIONS(466), - [anon_sym_recur] = ACTIONS(466), - [anon_sym_71] = ACTIONS(466), - [anon_sym_fold] = ACTIONS(466), - [anon_sym_72] = ACTIONS(466), - [anon_sym_table] = ACTIONS(466), - [anon_sym_73] = ACTIONS(466), - [anon_sym_cross] = ACTIONS(466), - [anon_sym_74] = ACTIONS(466), - [anon_sym_group] = ACTIONS(466), - [anon_sym_75] = ACTIONS(466), - [anon_sym_partition] = ACTIONS(466), - [anon_sym_76] = ACTIONS(466), - [anon_sym_both] = ACTIONS(466), - [anon_sym_77] = ACTIONS(466), - [anon_sym_bracket] = ACTIONS(466), - [anon_sym_78] = ACTIONS(466), - [anon_sym_fork] = ACTIONS(466), - [anon_sym_79] = ACTIONS(466), - [anon_sym_under] = ACTIONS(466), - [anon_sym_80] = ACTIONS(466), - [anon_sym_fill] = ACTIONS(466), - [anon_sym_81] = ACTIONS(466), - [anon_sym_try] = ACTIONS(464), - [anon_sym_82] = ACTIONS(466), - [anon_sym_do] = ACTIONS(464), - [anon_sym_83] = ACTIONS(466), - [anon_sym_all] = ACTIONS(466), - [anon_sym_84] = ACTIONS(466), - [anon_sym_setinv] = ACTIONS(466), - [anon_sym_setunder] = ACTIONS(466), - [anon_sym_85] = ACTIONS(466), - [anon_sym_86] = ACTIONS(466), - [anon_sym_87] = ACTIONS(466), - [anon_sym_88] = ACTIONS(466), - [anon_sym_89] = ACTIONS(466), - [anon_sym_90] = ACTIONS(466), - [anon_sym_91] = ACTIONS(466), - [anon_sym_92] = ACTIONS(466), - [anon_sym_93] = ACTIONS(466), - [anon_sym_94] = ACTIONS(466), - [anon_sym_95] = ACTIONS(466), - [anon_sym_96] = ACTIONS(466), - [sym__endOfLine] = ACTIONS(466), + [109] = { + [sym_inlineFunction] = STATE(133), + [sym_function] = STATE(133), + [ts_builtin_sym_end] = ACTIONS(468), + [aux_sym_number_token1] = ACTIONS(466), + [sym_fraction] = ACTIONS(468), + [anon_sym_os] = ACTIONS(466), + [anon_sym_Family] = ACTIONS(466), + [anon_sym_Arch] = ACTIONS(466), + [anon_sym_ExeExt] = ACTIONS(466), + [anon_sym_PllExt] = ACTIONS(466), + [anon_sym_Sep] = ACTIONS(466), + [anon_sym_NUmProcs] = ACTIONS(466), + [anon_sym_] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(468), + [sym_string] = ACTIONS(468), + [sym_multiLineString] = ACTIONS(468), + [sym_identifier] = ACTIONS(572), + [sym_identifierDeprecated] = ACTIONS(466), + [sym_system] = ACTIONS(574), + [sym_comment] = ACTIONS(466), + [sym_openParen] = ACTIONS(576), + [sym_openCurly] = ACTIONS(468), + [sym_openBracket] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(468), + [anon_sym_eta] = ACTIONS(468), + [anon_sym_2] = ACTIONS(466), + [anon_sym_pi] = ACTIONS(466), + [anon_sym_3] = ACTIONS(466), + [anon_sym_tau] = ACTIONS(468), + [anon_sym_4] = ACTIONS(466), + [anon_sym_infinity] = ACTIONS(468), + [anon_sym_5] = ACTIONS(468), + [anon_sym_e] = ACTIONS(466), + [anon_sym_NaN] = ACTIONS(466), + [anon_sym_NumProcs] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_scan] = ACTIONS(468), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_each] = ACTIONS(468), + [anon_sym_62] = ACTIONS(468), + [anon_sym_rows] = ACTIONS(468), + [anon_sym_63] = ACTIONS(468), + [anon_sym_repeat] = ACTIONS(468), + [anon_sym_64] = ACTIONS(468), + [anon_sym_dip] = ACTIONS(468), + [anon_sym_65] = ACTIONS(468), + [anon_sym_gap] = ACTIONS(468), + [anon_sym_66] = ACTIONS(468), + [anon_sym_invert] = ACTIONS(468), + [anon_sym_67] = ACTIONS(468), + [anon_sym_spawn] = ACTIONS(468), + [anon_sym_pack] = ACTIONS(468), + [anon_sym_68] = ACTIONS(468), + [anon_sym_rectify] = ACTIONS(468), + [anon_sym_69] = ACTIONS(468), + [anon_sym_this] = ACTIONS(468), + [anon_sym_70] = ACTIONS(468), + [anon_sym_recur] = ACTIONS(468), + [anon_sym_71] = ACTIONS(468), + [anon_sym_fold] = ACTIONS(468), + [anon_sym_72] = ACTIONS(468), + [anon_sym_table] = ACTIONS(468), + [anon_sym_73] = ACTIONS(468), + [anon_sym_cross] = ACTIONS(468), + [anon_sym_74] = ACTIONS(468), + [anon_sym_group] = ACTIONS(468), + [anon_sym_75] = ACTIONS(468), + [anon_sym_partition] = ACTIONS(468), + [anon_sym_76] = ACTIONS(468), + [anon_sym_both] = ACTIONS(468), + [anon_sym_77] = ACTIONS(468), + [anon_sym_bracket] = ACTIONS(468), + [anon_sym_78] = ACTIONS(468), + [anon_sym_fork] = ACTIONS(468), + [anon_sym_79] = ACTIONS(468), + [anon_sym_under] = ACTIONS(468), + [anon_sym_80] = ACTIONS(468), + [anon_sym_fill] = ACTIONS(468), + [anon_sym_81] = ACTIONS(468), + [anon_sym_try] = ACTIONS(466), + [anon_sym_82] = ACTIONS(468), + [anon_sym_do] = ACTIONS(466), + [anon_sym_83] = ACTIONS(468), + [anon_sym_all] = ACTIONS(468), + [anon_sym_84] = ACTIONS(468), + [anon_sym_setinv] = ACTIONS(468), + [anon_sym_setunder] = ACTIONS(468), + [anon_sym_85] = ACTIONS(468), + [anon_sym_86] = ACTIONS(468), + [anon_sym_87] = ACTIONS(468), + [anon_sym_88] = ACTIONS(468), + [anon_sym_89] = ACTIONS(468), + [anon_sym_90] = ACTIONS(468), + [anon_sym_91] = ACTIONS(468), + [anon_sym_92] = ACTIONS(468), + [sym__endOfLine] = ACTIONS(468), }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(490), - [aux_sym_number_token1] = ACTIONS(488), - [sym_fraction] = ACTIONS(490), - [anon_sym_os] = ACTIONS(488), - [anon_sym_Family] = ACTIONS(488), - [anon_sym_Arch] = ACTIONS(488), - [anon_sym_ExeExt] = ACTIONS(488), - [anon_sym_PllExt] = ACTIONS(488), - [anon_sym_Sep] = ACTIONS(488), - [anon_sym_NUmProcs] = ACTIONS(488), - [anon_sym_] = ACTIONS(490), - [aux_sym_character_token1] = ACTIONS(490), - [sym_string] = ACTIONS(490), - [sym_multiLineString] = ACTIONS(490), - [sym_identifier] = ACTIONS(488), - [sym_identifierDeprecated] = ACTIONS(488), - [sym_system] = ACTIONS(490), - [sym_comment] = ACTIONS(488), - [sym_openParen] = ACTIONS(490), - [sym_openCurly] = ACTIONS(490), - [sym_openBracket] = ACTIONS(490), - [sym_underscore] = ACTIONS(490), - [anon_sym_CARET] = ACTIONS(490), - [anon_sym_eta] = ACTIONS(490), - [anon_sym_2] = ACTIONS(488), - [anon_sym_pi] = ACTIONS(488), - [anon_sym_3] = ACTIONS(488), - [anon_sym_tau] = ACTIONS(490), - [anon_sym_4] = ACTIONS(488), - [anon_sym_infinity] = ACTIONS(490), - [anon_sym_5] = ACTIONS(490), - [anon_sym_e] = ACTIONS(488), - [anon_sym_NaN] = ACTIONS(488), - [anon_sym_NumProcs] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_COLON] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_identity] = ACTIONS(490), - [anon_sym_id] = ACTIONS(488), - [anon_sym_6] = ACTIONS(490), - [anon_sym_not] = ACTIONS(490), - [anon_sym_7] = ACTIONS(490), - [anon_sym_sign] = ACTIONS(490), - [anon_sym_8] = ACTIONS(490), - [anon_sym_BQUOTE] = ACTIONS(490), - [anon_sym_9] = ACTIONS(488), - [anon_sym_absolutevalue] = ACTIONS(490), - [anon_sym_10] = ACTIONS(490), - [anon_sym_sqrt] = ACTIONS(490), - [anon_sym_11] = ACTIONS(490), - [anon_sym_sine] = ACTIONS(490), - [anon_sym_12] = ACTIONS(490), - [anon_sym_floor] = ACTIONS(490), - [anon_sym_13] = ACTIONS(490), - [anon_sym_ceiling] = ACTIONS(490), - [anon_sym_14] = ACTIONS(490), - [anon_sym_round] = ACTIONS(490), - [anon_sym_15] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_16] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_17] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_18] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_19] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_20] = ACTIONS(490), - [anon_sym_modulus] = ACTIONS(490), - [anon_sym_21] = ACTIONS(490), - [anon_sym_power] = ACTIONS(490), - [anon_sym_22] = ACTIONS(490), - [anon_sym_logarithm] = ACTIONS(490), - [anon_sym_23] = ACTIONS(490), - [anon_sym_minimum] = ACTIONS(490), - [anon_sym_24] = ACTIONS(490), - [anon_sym_maximum] = ACTIONS(490), - [anon_sym_25] = ACTIONS(490), - [anon_sym_atangent] = ACTIONS(490), - [anon_sym_26] = ACTIONS(490), - [anon_sym_length] = ACTIONS(490), - [anon_sym_27] = ACTIONS(490), - [anon_sym_shape] = ACTIONS(490), - [anon_sym_28] = ACTIONS(490), - [anon_sym_range] = ACTIONS(490), - [anon_sym_29] = ACTIONS(490), - [anon_sym_first] = ACTIONS(490), - [anon_sym_30] = ACTIONS(490), - [anon_sym_reverse] = ACTIONS(490), - [anon_sym_31] = ACTIONS(490), - [anon_sym_deshape] = ACTIONS(490), - [anon_sym_32] = ACTIONS(490), - [anon_sym_bits] = ACTIONS(490), - [anon_sym_33] = ACTIONS(490), - [anon_sym_transpose] = ACTIONS(490), - [anon_sym_34] = ACTIONS(490), - [anon_sym_rise] = ACTIONS(490), - [anon_sym_35] = ACTIONS(490), - [anon_sym_fall] = ACTIONS(490), - [anon_sym_36] = ACTIONS(490), - [anon_sym_where] = ACTIONS(490), - [anon_sym_37] = ACTIONS(490), - [anon_sym_classify] = ACTIONS(490), - [anon_sym_38] = ACTIONS(490), - [anon_sym_deduplicate] = ACTIONS(490), - [anon_sym_39] = ACTIONS(490), - [anon_sym_box] = ACTIONS(490), - [anon_sym_40] = ACTIONS(490), - [anon_sym_unbox] = ACTIONS(490), - [anon_sym_41] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_42] = ACTIONS(490), - [anon_sym_couple] = ACTIONS(490), - [anon_sym_43] = ACTIONS(490), - [anon_sym_join] = ACTIONS(490), - [anon_sym_44] = ACTIONS(490), - [anon_sym_select] = ACTIONS(490), - [anon_sym_45] = ACTIONS(490), - [anon_sym_pick] = ACTIONS(490), - [anon_sym_46] = ACTIONS(490), - [anon_sym_reshape] = ACTIONS(490), - [anon_sym_47] = ACTIONS(490), - [anon_sym_take] = ACTIONS(490), - [anon_sym_48] = ACTIONS(490), - [anon_sym_drop] = ACTIONS(490), - [anon_sym_49] = ACTIONS(490), - [anon_sym_rotate] = ACTIONS(490), - [anon_sym_50] = ACTIONS(490), - [anon_sym_windows] = ACTIONS(490), - [anon_sym_51] = ACTIONS(490), - [anon_sym_keep] = ACTIONS(490), - [anon_sym_52] = ACTIONS(490), - [anon_sym_find] = ACTIONS(490), - [anon_sym_53] = ACTIONS(490), - [anon_sym_member] = ACTIONS(490), - [anon_sym_54] = ACTIONS(490), - [anon_sym_indexof] = ACTIONS(490), - [anon_sym_55] = ACTIONS(490), - [anon_sym_assert] = ACTIONS(490), - [anon_sym_56] = ACTIONS(490), - [anon_sym_wait] = ACTIONS(490), - [anon_sym_parse] = ACTIONS(490), - [anon_sym_random] = ACTIONS(490), - [anon_sym_57] = ACTIONS(490), - [anon_sym_gen] = ACTIONS(490), - [anon_sym_deal] = ACTIONS(490), - [anon_sym_tag] = ACTIONS(490), - [anon_sym_now] = ACTIONS(490), - [anon_sym_type] = ACTIONS(490), - [anon_sym_58] = ACTIONS(490), - [anon_sym_dump] = ACTIONS(490), - [anon_sym_regex] = ACTIONS(490), - [anon_sym_utf] = ACTIONS(490), - [anon_sym_send] = ACTIONS(490), - [anon_sym_recv] = ACTIONS(490), - [anon_sym_tryrecv] = ACTIONS(490), - [anon_sym_complex] = ACTIONS(490), - [anon_sym_59] = ACTIONS(490), - [anon_sym_rerank] = ACTIONS(490), - [anon_sym_60] = ACTIONS(490), - [anon_sym_fix] = ACTIONS(490), - [anon_sym_61] = ACTIONS(490), - [anon_sym_reduce] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_scan] = ACTIONS(490), - [anon_sym_BSLASH] = ACTIONS(490), - [anon_sym_each] = ACTIONS(490), - [anon_sym_62] = ACTIONS(490), - [anon_sym_rows] = ACTIONS(490), - [anon_sym_63] = ACTIONS(490), - [anon_sym_repeat] = ACTIONS(490), - [anon_sym_64] = ACTIONS(490), - [anon_sym_dip] = ACTIONS(490), - [anon_sym_65] = ACTIONS(490), - [anon_sym_gap] = ACTIONS(490), - [anon_sym_66] = ACTIONS(490), - [anon_sym_invert] = ACTIONS(490), - [anon_sym_67] = ACTIONS(490), - [anon_sym_spawn] = ACTIONS(490), - [anon_sym_pack] = ACTIONS(490), - [anon_sym_68] = ACTIONS(490), - [anon_sym_rectify] = ACTIONS(490), - [anon_sym_69] = ACTIONS(490), - [anon_sym_this] = ACTIONS(490), - [anon_sym_70] = ACTIONS(490), - [anon_sym_recur] = ACTIONS(490), - [anon_sym_71] = ACTIONS(490), - [anon_sym_fold] = ACTIONS(490), - [anon_sym_72] = ACTIONS(490), - [anon_sym_table] = ACTIONS(490), - [anon_sym_73] = ACTIONS(490), - [anon_sym_cross] = ACTIONS(490), - [anon_sym_74] = ACTIONS(490), - [anon_sym_group] = ACTIONS(490), - [anon_sym_75] = ACTIONS(490), - [anon_sym_partition] = ACTIONS(490), - [anon_sym_76] = ACTIONS(490), - [anon_sym_both] = ACTIONS(490), - [anon_sym_77] = ACTIONS(490), - [anon_sym_bracket] = ACTIONS(490), - [anon_sym_78] = ACTIONS(490), - [anon_sym_fork] = ACTIONS(490), - [anon_sym_79] = ACTIONS(490), - [anon_sym_under] = ACTIONS(490), - [anon_sym_80] = ACTIONS(490), - [anon_sym_fill] = ACTIONS(490), - [anon_sym_81] = ACTIONS(490), - [anon_sym_try] = ACTIONS(488), - [anon_sym_82] = ACTIONS(490), - [anon_sym_do] = ACTIONS(488), - [anon_sym_83] = ACTIONS(490), - [anon_sym_all] = ACTIONS(490), - [anon_sym_84] = ACTIONS(490), - [anon_sym_setinv] = ACTIONS(490), - [anon_sym_setunder] = ACTIONS(490), - [anon_sym_85] = ACTIONS(490), - [anon_sym_86] = ACTIONS(490), - [anon_sym_87] = ACTIONS(490), - [anon_sym_88] = ACTIONS(490), - [anon_sym_89] = ACTIONS(490), - [anon_sym_90] = ACTIONS(490), - [anon_sym_91] = ACTIONS(490), - [anon_sym_92] = ACTIONS(490), - [anon_sym_93] = ACTIONS(490), - [anon_sym_94] = ACTIONS(490), - [anon_sym_95] = ACTIONS(490), - [anon_sym_96] = ACTIONS(490), - [sym__endOfLine] = ACTIONS(490), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(458), - [aux_sym_number_token1] = ACTIONS(456), - [sym_fraction] = ACTIONS(458), - [anon_sym_os] = ACTIONS(456), - [anon_sym_Family] = ACTIONS(456), - [anon_sym_Arch] = ACTIONS(456), - [anon_sym_ExeExt] = ACTIONS(456), - [anon_sym_PllExt] = ACTIONS(456), - [anon_sym_Sep] = ACTIONS(456), - [anon_sym_NUmProcs] = ACTIONS(456), - [anon_sym_] = ACTIONS(458), - [aux_sym_character_token1] = ACTIONS(458), - [sym_string] = ACTIONS(458), - [sym_multiLineString] = ACTIONS(458), - [sym_identifier] = ACTIONS(456), - [sym_identifierDeprecated] = ACTIONS(456), - [sym_system] = ACTIONS(458), - [sym_comment] = ACTIONS(456), - [sym_openParen] = ACTIONS(458), - [sym_openCurly] = ACTIONS(458), - [sym_openBracket] = ACTIONS(458), - [sym_underscore] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(458), - [anon_sym_eta] = ACTIONS(458), - [anon_sym_2] = ACTIONS(456), - [anon_sym_pi] = ACTIONS(456), - [anon_sym_3] = ACTIONS(456), - [anon_sym_tau] = ACTIONS(458), - [anon_sym_4] = ACTIONS(456), - [anon_sym_infinity] = ACTIONS(458), - [anon_sym_5] = ACTIONS(458), - [anon_sym_e] = ACTIONS(456), - [anon_sym_NaN] = ACTIONS(456), - [anon_sym_NumProcs] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_identity] = ACTIONS(458), - [anon_sym_id] = ACTIONS(456), - [anon_sym_6] = ACTIONS(458), - [anon_sym_not] = ACTIONS(458), - [anon_sym_7] = ACTIONS(458), - [anon_sym_sign] = ACTIONS(458), - [anon_sym_8] = ACTIONS(458), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_9] = ACTIONS(456), - [anon_sym_absolutevalue] = ACTIONS(458), - [anon_sym_10] = ACTIONS(458), - [anon_sym_sqrt] = ACTIONS(458), - [anon_sym_11] = ACTIONS(458), - [anon_sym_sine] = ACTIONS(458), - [anon_sym_12] = ACTIONS(458), - [anon_sym_floor] = ACTIONS(458), - [anon_sym_13] = ACTIONS(458), - [anon_sym_ceiling] = ACTIONS(458), - [anon_sym_14] = ACTIONS(458), - [anon_sym_round] = ACTIONS(458), - [anon_sym_15] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_16] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_17] = ACTIONS(458), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_18] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_19] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [anon_sym_20] = ACTIONS(458), - [anon_sym_modulus] = ACTIONS(458), - [anon_sym_21] = ACTIONS(458), - [anon_sym_power] = ACTIONS(458), - [anon_sym_22] = ACTIONS(458), - [anon_sym_logarithm] = ACTIONS(458), - [anon_sym_23] = ACTIONS(458), - [anon_sym_minimum] = ACTIONS(458), - [anon_sym_24] = ACTIONS(458), - [anon_sym_maximum] = ACTIONS(458), - [anon_sym_25] = ACTIONS(458), - [anon_sym_atangent] = ACTIONS(458), - [anon_sym_26] = ACTIONS(458), - [anon_sym_length] = ACTIONS(458), - [anon_sym_27] = ACTIONS(458), - [anon_sym_shape] = ACTIONS(458), - [anon_sym_28] = ACTIONS(458), - [anon_sym_range] = ACTIONS(458), - [anon_sym_29] = ACTIONS(458), - [anon_sym_first] = ACTIONS(458), - [anon_sym_30] = ACTIONS(458), - [anon_sym_reverse] = ACTIONS(458), - [anon_sym_31] = ACTIONS(458), - [anon_sym_deshape] = ACTIONS(458), - [anon_sym_32] = ACTIONS(458), - [anon_sym_bits] = ACTIONS(458), - [anon_sym_33] = ACTIONS(458), - [anon_sym_transpose] = ACTIONS(458), - [anon_sym_34] = ACTIONS(458), - [anon_sym_rise] = ACTIONS(458), - [anon_sym_35] = ACTIONS(458), - [anon_sym_fall] = ACTIONS(458), - [anon_sym_36] = ACTIONS(458), - [anon_sym_where] = ACTIONS(458), - [anon_sym_37] = ACTIONS(458), - [anon_sym_classify] = ACTIONS(458), - [anon_sym_38] = ACTIONS(458), - [anon_sym_deduplicate] = ACTIONS(458), - [anon_sym_39] = ACTIONS(458), - [anon_sym_box] = ACTIONS(458), - [anon_sym_40] = ACTIONS(458), - [anon_sym_unbox] = ACTIONS(458), - [anon_sym_41] = ACTIONS(458), - [anon_sym_match] = ACTIONS(458), - [anon_sym_42] = ACTIONS(458), - [anon_sym_couple] = ACTIONS(458), - [anon_sym_43] = ACTIONS(458), - [anon_sym_join] = ACTIONS(458), - [anon_sym_44] = ACTIONS(458), - [anon_sym_select] = ACTIONS(458), - [anon_sym_45] = ACTIONS(458), - [anon_sym_pick] = ACTIONS(458), - [anon_sym_46] = ACTIONS(458), - [anon_sym_reshape] = ACTIONS(458), - [anon_sym_47] = ACTIONS(458), - [anon_sym_take] = ACTIONS(458), - [anon_sym_48] = ACTIONS(458), - [anon_sym_drop] = ACTIONS(458), - [anon_sym_49] = ACTIONS(458), - [anon_sym_rotate] = ACTIONS(458), - [anon_sym_50] = ACTIONS(458), - [anon_sym_windows] = ACTIONS(458), - [anon_sym_51] = ACTIONS(458), - [anon_sym_keep] = ACTIONS(458), - [anon_sym_52] = ACTIONS(458), - [anon_sym_find] = ACTIONS(458), - [anon_sym_53] = ACTIONS(458), - [anon_sym_member] = ACTIONS(458), - [anon_sym_54] = ACTIONS(458), - [anon_sym_indexof] = ACTIONS(458), - [anon_sym_55] = ACTIONS(458), - [anon_sym_assert] = ACTIONS(458), - [anon_sym_56] = ACTIONS(458), - [anon_sym_wait] = ACTIONS(458), - [anon_sym_parse] = ACTIONS(458), - [anon_sym_random] = ACTIONS(458), - [anon_sym_57] = ACTIONS(458), - [anon_sym_gen] = ACTIONS(458), - [anon_sym_deal] = ACTIONS(458), - [anon_sym_tag] = ACTIONS(458), - [anon_sym_now] = ACTIONS(458), - [anon_sym_type] = ACTIONS(458), - [anon_sym_58] = ACTIONS(458), - [anon_sym_dump] = ACTIONS(458), - [anon_sym_regex] = ACTIONS(458), - [anon_sym_utf] = ACTIONS(458), - [anon_sym_send] = ACTIONS(458), - [anon_sym_recv] = ACTIONS(458), - [anon_sym_tryrecv] = ACTIONS(458), - [anon_sym_complex] = ACTIONS(458), - [anon_sym_59] = ACTIONS(458), - [anon_sym_rerank] = ACTIONS(458), - [anon_sym_60] = ACTIONS(458), - [anon_sym_fix] = ACTIONS(458), - [anon_sym_61] = ACTIONS(458), - [anon_sym_reduce] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(458), - [anon_sym_scan] = ACTIONS(458), - [anon_sym_BSLASH] = ACTIONS(458), - [anon_sym_each] = ACTIONS(458), - [anon_sym_62] = ACTIONS(458), - [anon_sym_rows] = ACTIONS(458), - [anon_sym_63] = ACTIONS(458), - [anon_sym_repeat] = ACTIONS(458), - [anon_sym_64] = ACTIONS(458), - [anon_sym_dip] = ACTIONS(458), - [anon_sym_65] = ACTIONS(458), - [anon_sym_gap] = ACTIONS(458), - [anon_sym_66] = ACTIONS(458), - [anon_sym_invert] = ACTIONS(458), - [anon_sym_67] = ACTIONS(458), - [anon_sym_spawn] = ACTIONS(458), - [anon_sym_pack] = ACTIONS(458), - [anon_sym_68] = ACTIONS(458), - [anon_sym_rectify] = ACTIONS(458), - [anon_sym_69] = ACTIONS(458), - [anon_sym_this] = ACTIONS(458), - [anon_sym_70] = ACTIONS(458), - [anon_sym_recur] = ACTIONS(458), - [anon_sym_71] = ACTIONS(458), - [anon_sym_fold] = ACTIONS(458), - [anon_sym_72] = ACTIONS(458), - [anon_sym_table] = ACTIONS(458), - [anon_sym_73] = ACTIONS(458), - [anon_sym_cross] = ACTIONS(458), - [anon_sym_74] = ACTIONS(458), - [anon_sym_group] = ACTIONS(458), - [anon_sym_75] = ACTIONS(458), - [anon_sym_partition] = ACTIONS(458), - [anon_sym_76] = ACTIONS(458), - [anon_sym_both] = ACTIONS(458), - [anon_sym_77] = ACTIONS(458), - [anon_sym_bracket] = ACTIONS(458), - [anon_sym_78] = ACTIONS(458), - [anon_sym_fork] = ACTIONS(458), - [anon_sym_79] = ACTIONS(458), - [anon_sym_under] = ACTIONS(458), - [anon_sym_80] = ACTIONS(458), - [anon_sym_fill] = ACTIONS(458), - [anon_sym_81] = ACTIONS(458), - [anon_sym_try] = ACTIONS(456), - [anon_sym_82] = ACTIONS(458), - [anon_sym_do] = ACTIONS(456), - [anon_sym_83] = ACTIONS(458), - [anon_sym_all] = ACTIONS(458), - [anon_sym_84] = ACTIONS(458), - [anon_sym_setinv] = ACTIONS(458), - [anon_sym_setunder] = ACTIONS(458), - [anon_sym_85] = ACTIONS(458), - [anon_sym_86] = ACTIONS(458), - [anon_sym_87] = ACTIONS(458), - [anon_sym_88] = ACTIONS(458), - [anon_sym_89] = ACTIONS(458), - [anon_sym_90] = ACTIONS(458), - [anon_sym_91] = ACTIONS(458), - [anon_sym_92] = ACTIONS(458), - [anon_sym_93] = ACTIONS(458), - [anon_sym_94] = ACTIONS(458), - [anon_sym_95] = ACTIONS(458), - [anon_sym_96] = ACTIONS(458), - [sym__endOfLine] = ACTIONS(458), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(518), - [aux_sym_number_token1] = ACTIONS(516), - [sym_fraction] = ACTIONS(518), - [anon_sym_os] = ACTIONS(516), - [anon_sym_Family] = ACTIONS(516), - [anon_sym_Arch] = ACTIONS(516), - [anon_sym_ExeExt] = ACTIONS(516), - [anon_sym_PllExt] = ACTIONS(516), - [anon_sym_Sep] = ACTIONS(516), - [anon_sym_NUmProcs] = ACTIONS(516), - [anon_sym_] = ACTIONS(518), - [aux_sym_character_token1] = ACTIONS(518), - [sym_string] = ACTIONS(518), - [sym_multiLineString] = ACTIONS(518), - [sym_identifier] = ACTIONS(516), - [sym_identifierDeprecated] = ACTIONS(516), - [sym_system] = ACTIONS(518), - [sym_comment] = ACTIONS(516), - [sym_openParen] = ACTIONS(518), - [sym_openCurly] = ACTIONS(518), - [sym_openBracket] = ACTIONS(518), - [sym_underscore] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_eta] = ACTIONS(518), - [anon_sym_2] = ACTIONS(516), - [anon_sym_pi] = ACTIONS(516), - [anon_sym_3] = ACTIONS(516), - [anon_sym_tau] = ACTIONS(518), - [anon_sym_4] = ACTIONS(516), - [anon_sym_infinity] = ACTIONS(518), - [anon_sym_5] = ACTIONS(518), - [anon_sym_e] = ACTIONS(516), - [anon_sym_NaN] = ACTIONS(516), - [anon_sym_NumProcs] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_COLON] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(518), - [anon_sym_identity] = ACTIONS(518), - [anon_sym_id] = ACTIONS(516), - [anon_sym_6] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_7] = ACTIONS(518), - [anon_sym_sign] = ACTIONS(518), - [anon_sym_8] = ACTIONS(518), - [anon_sym_BQUOTE] = ACTIONS(518), - [anon_sym_9] = ACTIONS(516), - [anon_sym_absolutevalue] = ACTIONS(518), - [anon_sym_10] = ACTIONS(518), - [anon_sym_sqrt] = ACTIONS(518), - [anon_sym_11] = ACTIONS(518), - [anon_sym_sine] = ACTIONS(518), - [anon_sym_12] = ACTIONS(518), - [anon_sym_floor] = ACTIONS(518), - [anon_sym_13] = ACTIONS(518), - [anon_sym_ceiling] = ACTIONS(518), - [anon_sym_14] = ACTIONS(518), - [anon_sym_round] = ACTIONS(518), - [anon_sym_15] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_16] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_17] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_18] = ACTIONS(518), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_19] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_20] = ACTIONS(518), - [anon_sym_modulus] = ACTIONS(518), - [anon_sym_21] = ACTIONS(518), - [anon_sym_power] = ACTIONS(518), - [anon_sym_22] = ACTIONS(518), - [anon_sym_logarithm] = ACTIONS(518), - [anon_sym_23] = ACTIONS(518), - [anon_sym_minimum] = ACTIONS(518), - [anon_sym_24] = ACTIONS(518), - [anon_sym_maximum] = ACTIONS(518), - [anon_sym_25] = ACTIONS(518), - [anon_sym_atangent] = ACTIONS(518), - [anon_sym_26] = ACTIONS(518), - [anon_sym_length] = ACTIONS(518), - [anon_sym_27] = ACTIONS(518), - [anon_sym_shape] = ACTIONS(518), - [anon_sym_28] = ACTIONS(518), - [anon_sym_range] = ACTIONS(518), - [anon_sym_29] = ACTIONS(518), - [anon_sym_first] = ACTIONS(518), - [anon_sym_30] = ACTIONS(518), - [anon_sym_reverse] = ACTIONS(518), - [anon_sym_31] = ACTIONS(518), - [anon_sym_deshape] = ACTIONS(518), - [anon_sym_32] = ACTIONS(518), - [anon_sym_bits] = ACTIONS(518), - [anon_sym_33] = ACTIONS(518), - [anon_sym_transpose] = ACTIONS(518), - [anon_sym_34] = ACTIONS(518), - [anon_sym_rise] = ACTIONS(518), - [anon_sym_35] = ACTIONS(518), - [anon_sym_fall] = ACTIONS(518), - [anon_sym_36] = ACTIONS(518), - [anon_sym_where] = ACTIONS(518), - [anon_sym_37] = ACTIONS(518), - [anon_sym_classify] = ACTIONS(518), - [anon_sym_38] = ACTIONS(518), - [anon_sym_deduplicate] = ACTIONS(518), - [anon_sym_39] = ACTIONS(518), - [anon_sym_box] = ACTIONS(518), - [anon_sym_40] = ACTIONS(518), - [anon_sym_unbox] = ACTIONS(518), - [anon_sym_41] = ACTIONS(518), - [anon_sym_match] = ACTIONS(518), - [anon_sym_42] = ACTIONS(518), - [anon_sym_couple] = ACTIONS(518), - [anon_sym_43] = ACTIONS(518), - [anon_sym_join] = ACTIONS(518), - [anon_sym_44] = ACTIONS(518), - [anon_sym_select] = ACTIONS(518), - [anon_sym_45] = ACTIONS(518), - [anon_sym_pick] = ACTIONS(518), - [anon_sym_46] = ACTIONS(518), - [anon_sym_reshape] = ACTIONS(518), - [anon_sym_47] = ACTIONS(518), - [anon_sym_take] = ACTIONS(518), - [anon_sym_48] = ACTIONS(518), - [anon_sym_drop] = ACTIONS(518), - [anon_sym_49] = ACTIONS(518), - [anon_sym_rotate] = ACTIONS(518), - [anon_sym_50] = ACTIONS(518), - [anon_sym_windows] = ACTIONS(518), - [anon_sym_51] = ACTIONS(518), - [anon_sym_keep] = ACTIONS(518), - [anon_sym_52] = ACTIONS(518), - [anon_sym_find] = ACTIONS(518), - [anon_sym_53] = ACTIONS(518), - [anon_sym_member] = ACTIONS(518), - [anon_sym_54] = ACTIONS(518), - [anon_sym_indexof] = ACTIONS(518), - [anon_sym_55] = ACTIONS(518), - [anon_sym_assert] = ACTIONS(518), - [anon_sym_56] = ACTIONS(518), - [anon_sym_wait] = ACTIONS(518), - [anon_sym_parse] = ACTIONS(518), - [anon_sym_random] = ACTIONS(518), - [anon_sym_57] = ACTIONS(518), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_deal] = ACTIONS(518), - [anon_sym_tag] = ACTIONS(518), - [anon_sym_now] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_58] = ACTIONS(518), - [anon_sym_dump] = ACTIONS(518), - [anon_sym_regex] = ACTIONS(518), - [anon_sym_utf] = ACTIONS(518), - [anon_sym_send] = ACTIONS(518), - [anon_sym_recv] = ACTIONS(518), - [anon_sym_tryrecv] = ACTIONS(518), - [anon_sym_complex] = ACTIONS(518), - [anon_sym_59] = ACTIONS(518), - [anon_sym_rerank] = ACTIONS(518), - [anon_sym_60] = ACTIONS(518), - [anon_sym_fix] = ACTIONS(518), - [anon_sym_61] = ACTIONS(518), - [anon_sym_reduce] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_scan] = ACTIONS(518), - [anon_sym_BSLASH] = ACTIONS(518), - [anon_sym_each] = ACTIONS(518), - [anon_sym_62] = ACTIONS(518), - [anon_sym_rows] = ACTIONS(518), - [anon_sym_63] = ACTIONS(518), - [anon_sym_repeat] = ACTIONS(518), - [anon_sym_64] = ACTIONS(518), - [anon_sym_dip] = ACTIONS(518), - [anon_sym_65] = ACTIONS(518), - [anon_sym_gap] = ACTIONS(518), - [anon_sym_66] = ACTIONS(518), - [anon_sym_invert] = ACTIONS(518), - [anon_sym_67] = ACTIONS(518), - [anon_sym_spawn] = ACTIONS(518), - [anon_sym_pack] = ACTIONS(518), - [anon_sym_68] = ACTIONS(518), - [anon_sym_rectify] = ACTIONS(518), - [anon_sym_69] = ACTIONS(518), - [anon_sym_this] = ACTIONS(518), - [anon_sym_70] = ACTIONS(518), - [anon_sym_recur] = ACTIONS(518), - [anon_sym_71] = ACTIONS(518), - [anon_sym_fold] = ACTIONS(518), - [anon_sym_72] = ACTIONS(518), - [anon_sym_table] = ACTIONS(518), - [anon_sym_73] = ACTIONS(518), - [anon_sym_cross] = ACTIONS(518), - [anon_sym_74] = ACTIONS(518), - [anon_sym_group] = ACTIONS(518), - [anon_sym_75] = ACTIONS(518), - [anon_sym_partition] = ACTIONS(518), - [anon_sym_76] = ACTIONS(518), - [anon_sym_both] = ACTIONS(518), - [anon_sym_77] = ACTIONS(518), - [anon_sym_bracket] = ACTIONS(518), - [anon_sym_78] = ACTIONS(518), - [anon_sym_fork] = ACTIONS(518), - [anon_sym_79] = ACTIONS(518), - [anon_sym_under] = ACTIONS(518), - [anon_sym_80] = ACTIONS(518), - [anon_sym_fill] = ACTIONS(518), - [anon_sym_81] = ACTIONS(518), - [anon_sym_try] = ACTIONS(516), - [anon_sym_82] = ACTIONS(518), - [anon_sym_do] = ACTIONS(516), - [anon_sym_83] = ACTIONS(518), - [anon_sym_all] = ACTIONS(518), - [anon_sym_84] = ACTIONS(518), - [anon_sym_setinv] = ACTIONS(518), - [anon_sym_setunder] = ACTIONS(518), - [anon_sym_85] = ACTIONS(518), - [anon_sym_86] = ACTIONS(518), - [anon_sym_87] = ACTIONS(518), - [anon_sym_88] = ACTIONS(518), - [anon_sym_89] = ACTIONS(518), - [anon_sym_90] = ACTIONS(518), - [anon_sym_91] = ACTIONS(518), - [anon_sym_92] = ACTIONS(518), - [anon_sym_93] = ACTIONS(518), - [anon_sym_94] = ACTIONS(518), - [anon_sym_95] = ACTIONS(518), - [anon_sym_96] = ACTIONS(518), - [sym__endOfLine] = ACTIONS(518), - }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(530), - [aux_sym_number_token1] = ACTIONS(528), - [sym_fraction] = ACTIONS(530), - [anon_sym_os] = ACTIONS(528), - [anon_sym_Family] = ACTIONS(528), - [anon_sym_Arch] = ACTIONS(528), - [anon_sym_ExeExt] = ACTIONS(528), - [anon_sym_PllExt] = ACTIONS(528), - [anon_sym_Sep] = ACTIONS(528), - [anon_sym_NUmProcs] = ACTIONS(528), - [anon_sym_] = ACTIONS(530), - [aux_sym_character_token1] = ACTIONS(530), - [sym_string] = ACTIONS(530), - [sym_multiLineString] = ACTIONS(530), - [sym_identifier] = ACTIONS(528), - [sym_identifierDeprecated] = ACTIONS(528), - [sym_system] = ACTIONS(530), - [sym_comment] = ACTIONS(528), - [sym_openParen] = ACTIONS(530), - [sym_openCurly] = ACTIONS(530), - [sym_openBracket] = ACTIONS(530), - [sym_underscore] = ACTIONS(530), - [anon_sym_CARET] = ACTIONS(530), - [anon_sym_eta] = ACTIONS(530), - [anon_sym_2] = ACTIONS(528), - [anon_sym_pi] = ACTIONS(528), - [anon_sym_3] = ACTIONS(528), - [anon_sym_tau] = ACTIONS(530), - [anon_sym_4] = ACTIONS(528), - [anon_sym_infinity] = ACTIONS(530), - [anon_sym_5] = ACTIONS(530), - [anon_sym_e] = ACTIONS(528), - [anon_sym_NaN] = ACTIONS(528), - [anon_sym_NumProcs] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(530), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_identity] = ACTIONS(530), - [anon_sym_id] = ACTIONS(528), - [anon_sym_6] = ACTIONS(530), - [anon_sym_not] = ACTIONS(530), - [anon_sym_7] = ACTIONS(530), - [anon_sym_sign] = ACTIONS(530), - [anon_sym_8] = ACTIONS(530), - [anon_sym_BQUOTE] = ACTIONS(530), - [anon_sym_9] = ACTIONS(528), - [anon_sym_absolutevalue] = ACTIONS(530), - [anon_sym_10] = ACTIONS(530), - [anon_sym_sqrt] = ACTIONS(530), - [anon_sym_11] = ACTIONS(530), - [anon_sym_sine] = ACTIONS(530), - [anon_sym_12] = ACTIONS(530), - [anon_sym_floor] = ACTIONS(530), - [anon_sym_13] = ACTIONS(530), - [anon_sym_ceiling] = ACTIONS(530), - [anon_sym_14] = ACTIONS(530), - [anon_sym_round] = ACTIONS(530), - [anon_sym_15] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_16] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_17] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_18] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_19] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(530), - [anon_sym_20] = ACTIONS(530), - [anon_sym_modulus] = ACTIONS(530), - [anon_sym_21] = ACTIONS(530), - [anon_sym_power] = ACTIONS(530), - [anon_sym_22] = ACTIONS(530), - [anon_sym_logarithm] = ACTIONS(530), - [anon_sym_23] = ACTIONS(530), - [anon_sym_minimum] = ACTIONS(530), - [anon_sym_24] = ACTIONS(530), - [anon_sym_maximum] = ACTIONS(530), - [anon_sym_25] = ACTIONS(530), - [anon_sym_atangent] = ACTIONS(530), - [anon_sym_26] = ACTIONS(530), - [anon_sym_length] = ACTIONS(530), - [anon_sym_27] = ACTIONS(530), - [anon_sym_shape] = ACTIONS(530), - [anon_sym_28] = ACTIONS(530), - [anon_sym_range] = ACTIONS(530), - [anon_sym_29] = ACTIONS(530), - [anon_sym_first] = ACTIONS(530), - [anon_sym_30] = ACTIONS(530), - [anon_sym_reverse] = ACTIONS(530), - [anon_sym_31] = ACTIONS(530), - [anon_sym_deshape] = ACTIONS(530), - [anon_sym_32] = ACTIONS(530), - [anon_sym_bits] = ACTIONS(530), - [anon_sym_33] = ACTIONS(530), - [anon_sym_transpose] = ACTIONS(530), - [anon_sym_34] = ACTIONS(530), - [anon_sym_rise] = ACTIONS(530), - [anon_sym_35] = ACTIONS(530), - [anon_sym_fall] = ACTIONS(530), - [anon_sym_36] = ACTIONS(530), - [anon_sym_where] = ACTIONS(530), - [anon_sym_37] = ACTIONS(530), - [anon_sym_classify] = ACTIONS(530), - [anon_sym_38] = ACTIONS(530), - [anon_sym_deduplicate] = ACTIONS(530), - [anon_sym_39] = ACTIONS(530), - [anon_sym_box] = ACTIONS(530), - [anon_sym_40] = ACTIONS(530), - [anon_sym_unbox] = ACTIONS(530), - [anon_sym_41] = ACTIONS(530), - [anon_sym_match] = ACTIONS(530), - [anon_sym_42] = ACTIONS(530), - [anon_sym_couple] = ACTIONS(530), - [anon_sym_43] = ACTIONS(530), - [anon_sym_join] = ACTIONS(530), - [anon_sym_44] = ACTIONS(530), - [anon_sym_select] = ACTIONS(530), - [anon_sym_45] = ACTIONS(530), - [anon_sym_pick] = ACTIONS(530), - [anon_sym_46] = ACTIONS(530), - [anon_sym_reshape] = ACTIONS(530), - [anon_sym_47] = ACTIONS(530), - [anon_sym_take] = ACTIONS(530), - [anon_sym_48] = ACTIONS(530), - [anon_sym_drop] = ACTIONS(530), - [anon_sym_49] = ACTIONS(530), - [anon_sym_rotate] = ACTIONS(530), - [anon_sym_50] = ACTIONS(530), - [anon_sym_windows] = ACTIONS(530), - [anon_sym_51] = ACTIONS(530), - [anon_sym_keep] = ACTIONS(530), - [anon_sym_52] = ACTIONS(530), - [anon_sym_find] = ACTIONS(530), - [anon_sym_53] = ACTIONS(530), - [anon_sym_member] = ACTIONS(530), - [anon_sym_54] = ACTIONS(530), - [anon_sym_indexof] = ACTIONS(530), - [anon_sym_55] = ACTIONS(530), - [anon_sym_assert] = ACTIONS(530), - [anon_sym_56] = ACTIONS(530), - [anon_sym_wait] = ACTIONS(530), - [anon_sym_parse] = ACTIONS(530), - [anon_sym_random] = ACTIONS(530), - [anon_sym_57] = ACTIONS(530), - [anon_sym_gen] = ACTIONS(530), - [anon_sym_deal] = ACTIONS(530), - [anon_sym_tag] = ACTIONS(530), - [anon_sym_now] = ACTIONS(530), - [anon_sym_type] = ACTIONS(530), - [anon_sym_58] = ACTIONS(530), - [anon_sym_dump] = ACTIONS(530), - [anon_sym_regex] = ACTIONS(530), - [anon_sym_utf] = ACTIONS(530), - [anon_sym_send] = ACTIONS(530), - [anon_sym_recv] = ACTIONS(530), - [anon_sym_tryrecv] = ACTIONS(530), - [anon_sym_complex] = ACTIONS(530), - [anon_sym_59] = ACTIONS(530), - [anon_sym_rerank] = ACTIONS(530), - [anon_sym_60] = ACTIONS(530), - [anon_sym_fix] = ACTIONS(530), - [anon_sym_61] = ACTIONS(530), - [anon_sym_reduce] = ACTIONS(530), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_scan] = ACTIONS(530), - [anon_sym_BSLASH] = ACTIONS(530), - [anon_sym_each] = ACTIONS(530), - [anon_sym_62] = ACTIONS(530), - [anon_sym_rows] = ACTIONS(530), - [anon_sym_63] = ACTIONS(530), - [anon_sym_repeat] = ACTIONS(530), - [anon_sym_64] = ACTIONS(530), - [anon_sym_dip] = ACTIONS(530), - [anon_sym_65] = ACTIONS(530), - [anon_sym_gap] = ACTIONS(530), - [anon_sym_66] = ACTIONS(530), - [anon_sym_invert] = ACTIONS(530), - [anon_sym_67] = ACTIONS(530), - [anon_sym_spawn] = ACTIONS(530), - [anon_sym_pack] = ACTIONS(530), - [anon_sym_68] = ACTIONS(530), - [anon_sym_rectify] = ACTIONS(530), - [anon_sym_69] = ACTIONS(530), - [anon_sym_this] = ACTIONS(530), - [anon_sym_70] = ACTIONS(530), - [anon_sym_recur] = ACTIONS(530), - [anon_sym_71] = ACTIONS(530), - [anon_sym_fold] = ACTIONS(530), - [anon_sym_72] = ACTIONS(530), - [anon_sym_table] = ACTIONS(530), - [anon_sym_73] = ACTIONS(530), - [anon_sym_cross] = ACTIONS(530), - [anon_sym_74] = ACTIONS(530), - [anon_sym_group] = ACTIONS(530), - [anon_sym_75] = ACTIONS(530), - [anon_sym_partition] = ACTIONS(530), - [anon_sym_76] = ACTIONS(530), - [anon_sym_both] = ACTIONS(530), - [anon_sym_77] = ACTIONS(530), - [anon_sym_bracket] = ACTIONS(530), - [anon_sym_78] = ACTIONS(530), - [anon_sym_fork] = ACTIONS(530), - [anon_sym_79] = ACTIONS(530), - [anon_sym_under] = ACTIONS(530), - [anon_sym_80] = ACTIONS(530), - [anon_sym_fill] = ACTIONS(530), - [anon_sym_81] = ACTIONS(530), - [anon_sym_try] = ACTIONS(528), - [anon_sym_82] = ACTIONS(530), - [anon_sym_do] = ACTIONS(528), - [anon_sym_83] = ACTIONS(530), - [anon_sym_all] = ACTIONS(530), - [anon_sym_84] = ACTIONS(530), - [anon_sym_setinv] = ACTIONS(530), - [anon_sym_setunder] = ACTIONS(530), - [anon_sym_85] = ACTIONS(530), - [anon_sym_86] = ACTIONS(530), - [anon_sym_87] = ACTIONS(530), - [anon_sym_88] = ACTIONS(530), - [anon_sym_89] = ACTIONS(530), - [anon_sym_90] = ACTIONS(530), - [anon_sym_91] = ACTIONS(530), - [anon_sym_92] = ACTIONS(530), - [anon_sym_93] = ACTIONS(530), - [anon_sym_94] = ACTIONS(530), - [anon_sym_95] = ACTIONS(530), - [anon_sym_96] = ACTIONS(530), - [sym__endOfLine] = ACTIONS(530), - }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(498), - [aux_sym_number_token1] = ACTIONS(496), - [sym_fraction] = ACTIONS(498), - [anon_sym_os] = ACTIONS(496), - [anon_sym_Family] = ACTIONS(496), - [anon_sym_Arch] = ACTIONS(496), - [anon_sym_ExeExt] = ACTIONS(496), - [anon_sym_PllExt] = ACTIONS(496), - [anon_sym_Sep] = ACTIONS(496), - [anon_sym_NUmProcs] = ACTIONS(496), - [anon_sym_] = ACTIONS(498), - [aux_sym_character_token1] = ACTIONS(498), - [sym_string] = ACTIONS(498), - [sym_multiLineString] = ACTIONS(498), - [sym_identifier] = ACTIONS(496), - [sym_identifierDeprecated] = ACTIONS(496), - [sym_system] = ACTIONS(498), - [sym_comment] = ACTIONS(496), - [sym_openParen] = ACTIONS(498), - [sym_openCurly] = ACTIONS(498), - [sym_openBracket] = ACTIONS(498), - [sym_underscore] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_eta] = ACTIONS(498), - [anon_sym_2] = ACTIONS(496), - [anon_sym_pi] = ACTIONS(496), - [anon_sym_3] = ACTIONS(496), - [anon_sym_tau] = ACTIONS(498), - [anon_sym_4] = ACTIONS(496), - [anon_sym_infinity] = ACTIONS(498), - [anon_sym_5] = ACTIONS(498), - [anon_sym_e] = ACTIONS(496), - [anon_sym_NaN] = ACTIONS(496), - [anon_sym_NumProcs] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(498), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_COLON] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_identity] = ACTIONS(498), - [anon_sym_id] = ACTIONS(496), - [anon_sym_6] = ACTIONS(498), - [anon_sym_not] = ACTIONS(498), - [anon_sym_7] = ACTIONS(498), - [anon_sym_sign] = ACTIONS(498), - [anon_sym_8] = ACTIONS(498), - [anon_sym_BQUOTE] = ACTIONS(498), - [anon_sym_9] = ACTIONS(496), - [anon_sym_absolutevalue] = ACTIONS(498), - [anon_sym_10] = ACTIONS(498), - [anon_sym_sqrt] = ACTIONS(498), - [anon_sym_11] = ACTIONS(498), - [anon_sym_sine] = ACTIONS(498), - [anon_sym_12] = ACTIONS(498), - [anon_sym_floor] = ACTIONS(498), - [anon_sym_13] = ACTIONS(498), - [anon_sym_ceiling] = ACTIONS(498), - [anon_sym_14] = ACTIONS(498), - [anon_sym_round] = ACTIONS(498), - [anon_sym_15] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_16] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_17] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_18] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_19] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_20] = ACTIONS(498), - [anon_sym_modulus] = ACTIONS(498), - [anon_sym_21] = ACTIONS(498), - [anon_sym_power] = ACTIONS(498), - [anon_sym_22] = ACTIONS(498), - [anon_sym_logarithm] = ACTIONS(498), - [anon_sym_23] = ACTIONS(498), - [anon_sym_minimum] = ACTIONS(498), - [anon_sym_24] = ACTIONS(498), - [anon_sym_maximum] = ACTIONS(498), - [anon_sym_25] = ACTIONS(498), - [anon_sym_atangent] = ACTIONS(498), - [anon_sym_26] = ACTIONS(498), - [anon_sym_length] = ACTIONS(498), - [anon_sym_27] = ACTIONS(498), - [anon_sym_shape] = ACTIONS(498), - [anon_sym_28] = ACTIONS(498), - [anon_sym_range] = ACTIONS(498), - [anon_sym_29] = ACTIONS(498), - [anon_sym_first] = ACTIONS(498), - [anon_sym_30] = ACTIONS(498), - [anon_sym_reverse] = ACTIONS(498), - [anon_sym_31] = ACTIONS(498), - [anon_sym_deshape] = ACTIONS(498), - [anon_sym_32] = ACTIONS(498), - [anon_sym_bits] = ACTIONS(498), - [anon_sym_33] = ACTIONS(498), - [anon_sym_transpose] = ACTIONS(498), - [anon_sym_34] = ACTIONS(498), - [anon_sym_rise] = ACTIONS(498), - [anon_sym_35] = ACTIONS(498), - [anon_sym_fall] = ACTIONS(498), - [anon_sym_36] = ACTIONS(498), - [anon_sym_where] = ACTIONS(498), - [anon_sym_37] = ACTIONS(498), - [anon_sym_classify] = ACTIONS(498), - [anon_sym_38] = ACTIONS(498), - [anon_sym_deduplicate] = ACTIONS(498), - [anon_sym_39] = ACTIONS(498), - [anon_sym_box] = ACTIONS(498), - [anon_sym_40] = ACTIONS(498), - [anon_sym_unbox] = ACTIONS(498), - [anon_sym_41] = ACTIONS(498), - [anon_sym_match] = ACTIONS(498), - [anon_sym_42] = ACTIONS(498), - [anon_sym_couple] = ACTIONS(498), - [anon_sym_43] = ACTIONS(498), - [anon_sym_join] = ACTIONS(498), - [anon_sym_44] = ACTIONS(498), - [anon_sym_select] = ACTIONS(498), - [anon_sym_45] = ACTIONS(498), - [anon_sym_pick] = ACTIONS(498), - [anon_sym_46] = ACTIONS(498), - [anon_sym_reshape] = ACTIONS(498), - [anon_sym_47] = ACTIONS(498), - [anon_sym_take] = ACTIONS(498), - [anon_sym_48] = ACTIONS(498), - [anon_sym_drop] = ACTIONS(498), - [anon_sym_49] = ACTIONS(498), - [anon_sym_rotate] = ACTIONS(498), - [anon_sym_50] = ACTIONS(498), - [anon_sym_windows] = ACTIONS(498), - [anon_sym_51] = ACTIONS(498), - [anon_sym_keep] = ACTIONS(498), - [anon_sym_52] = ACTIONS(498), - [anon_sym_find] = ACTIONS(498), - [anon_sym_53] = ACTIONS(498), - [anon_sym_member] = ACTIONS(498), - [anon_sym_54] = ACTIONS(498), - [anon_sym_indexof] = ACTIONS(498), - [anon_sym_55] = ACTIONS(498), - [anon_sym_assert] = ACTIONS(498), - [anon_sym_56] = ACTIONS(498), - [anon_sym_wait] = ACTIONS(498), - [anon_sym_parse] = ACTIONS(498), - [anon_sym_random] = ACTIONS(498), - [anon_sym_57] = ACTIONS(498), - [anon_sym_gen] = ACTIONS(498), - [anon_sym_deal] = ACTIONS(498), - [anon_sym_tag] = ACTIONS(498), - [anon_sym_now] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_58] = ACTIONS(498), - [anon_sym_dump] = ACTIONS(498), - [anon_sym_regex] = ACTIONS(498), - [anon_sym_utf] = ACTIONS(498), - [anon_sym_send] = ACTIONS(498), - [anon_sym_recv] = ACTIONS(498), - [anon_sym_tryrecv] = ACTIONS(498), - [anon_sym_complex] = ACTIONS(498), - [anon_sym_59] = ACTIONS(498), - [anon_sym_rerank] = ACTIONS(498), - [anon_sym_60] = ACTIONS(498), - [anon_sym_fix] = ACTIONS(498), - [anon_sym_61] = ACTIONS(498), - [anon_sym_reduce] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_scan] = ACTIONS(498), - [anon_sym_BSLASH] = ACTIONS(498), - [anon_sym_each] = ACTIONS(498), - [anon_sym_62] = ACTIONS(498), - [anon_sym_rows] = ACTIONS(498), - [anon_sym_63] = ACTIONS(498), - [anon_sym_repeat] = ACTIONS(498), - [anon_sym_64] = ACTIONS(498), - [anon_sym_dip] = ACTIONS(498), - [anon_sym_65] = ACTIONS(498), - [anon_sym_gap] = ACTIONS(498), - [anon_sym_66] = ACTIONS(498), - [anon_sym_invert] = ACTIONS(498), - [anon_sym_67] = ACTIONS(498), - [anon_sym_spawn] = ACTIONS(498), - [anon_sym_pack] = ACTIONS(498), - [anon_sym_68] = ACTIONS(498), - [anon_sym_rectify] = ACTIONS(498), - [anon_sym_69] = ACTIONS(498), - [anon_sym_this] = ACTIONS(498), - [anon_sym_70] = ACTIONS(498), - [anon_sym_recur] = ACTIONS(498), - [anon_sym_71] = ACTIONS(498), - [anon_sym_fold] = ACTIONS(498), - [anon_sym_72] = ACTIONS(498), - [anon_sym_table] = ACTIONS(498), - [anon_sym_73] = ACTIONS(498), - [anon_sym_cross] = ACTIONS(498), - [anon_sym_74] = ACTIONS(498), - [anon_sym_group] = ACTIONS(498), - [anon_sym_75] = ACTIONS(498), - [anon_sym_partition] = ACTIONS(498), - [anon_sym_76] = ACTIONS(498), - [anon_sym_both] = ACTIONS(498), - [anon_sym_77] = ACTIONS(498), - [anon_sym_bracket] = ACTIONS(498), - [anon_sym_78] = ACTIONS(498), - [anon_sym_fork] = ACTIONS(498), - [anon_sym_79] = ACTIONS(498), - [anon_sym_under] = ACTIONS(498), - [anon_sym_80] = ACTIONS(498), - [anon_sym_fill] = ACTIONS(498), - [anon_sym_81] = ACTIONS(498), - [anon_sym_try] = ACTIONS(496), - [anon_sym_82] = ACTIONS(498), - [anon_sym_do] = ACTIONS(496), - [anon_sym_83] = ACTIONS(498), - [anon_sym_all] = ACTIONS(498), - [anon_sym_84] = ACTIONS(498), - [anon_sym_setinv] = ACTIONS(498), - [anon_sym_setunder] = ACTIONS(498), - [anon_sym_85] = ACTIONS(498), - [anon_sym_86] = ACTIONS(498), - [anon_sym_87] = ACTIONS(498), - [anon_sym_88] = ACTIONS(498), - [anon_sym_89] = ACTIONS(498), - [anon_sym_90] = ACTIONS(498), - [anon_sym_91] = ACTIONS(498), - [anon_sym_92] = ACTIONS(498), - [anon_sym_93] = ACTIONS(498), - [anon_sym_94] = ACTIONS(498), - [anon_sym_95] = ACTIONS(498), - [anon_sym_96] = ACTIONS(498), - [sym__endOfLine] = ACTIONS(498), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(432), - [aux_sym_number_token1] = ACTIONS(430), - [sym_fraction] = ACTIONS(432), - [anon_sym_os] = ACTIONS(430), - [anon_sym_Family] = ACTIONS(430), - [anon_sym_Arch] = ACTIONS(430), - [anon_sym_ExeExt] = ACTIONS(430), - [anon_sym_PllExt] = ACTIONS(430), - [anon_sym_Sep] = ACTIONS(430), - [anon_sym_NUmProcs] = ACTIONS(430), - [anon_sym_] = ACTIONS(432), - [aux_sym_character_token1] = ACTIONS(432), - [sym_string] = ACTIONS(432), - [sym_multiLineString] = ACTIONS(432), - [sym_identifier] = ACTIONS(430), - [sym_identifierDeprecated] = ACTIONS(430), - [sym_system] = ACTIONS(432), - [sym_comment] = ACTIONS(430), - [sym_openParen] = ACTIONS(432), - [sym_openCurly] = ACTIONS(432), - [sym_openBracket] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_eta] = ACTIONS(432), - [anon_sym_2] = ACTIONS(430), - [anon_sym_pi] = ACTIONS(430), - [anon_sym_3] = ACTIONS(430), - [anon_sym_tau] = ACTIONS(432), - [anon_sym_4] = ACTIONS(430), - [anon_sym_infinity] = ACTIONS(432), - [anon_sym_5] = ACTIONS(432), - [anon_sym_e] = ACTIONS(430), - [anon_sym_NaN] = ACTIONS(430), - [anon_sym_NumProcs] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_COLON] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_identity] = ACTIONS(432), - [anon_sym_id] = ACTIONS(430), - [anon_sym_6] = ACTIONS(432), - [anon_sym_not] = ACTIONS(432), - [anon_sym_7] = ACTIONS(432), - [anon_sym_sign] = ACTIONS(432), - [anon_sym_8] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(432), - [anon_sym_9] = ACTIONS(430), - [anon_sym_absolutevalue] = ACTIONS(432), - [anon_sym_10] = ACTIONS(432), - [anon_sym_sqrt] = ACTIONS(432), - [anon_sym_11] = ACTIONS(432), - [anon_sym_sine] = ACTIONS(432), - [anon_sym_12] = ACTIONS(432), - [anon_sym_floor] = ACTIONS(432), - [anon_sym_13] = ACTIONS(432), - [anon_sym_ceiling] = ACTIONS(432), - [anon_sym_14] = ACTIONS(432), - [anon_sym_round] = ACTIONS(432), - [anon_sym_15] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_16] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_17] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_18] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_19] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_20] = ACTIONS(432), - [anon_sym_modulus] = ACTIONS(432), - [anon_sym_21] = ACTIONS(432), - [anon_sym_power] = ACTIONS(432), - [anon_sym_22] = ACTIONS(432), - [anon_sym_logarithm] = ACTIONS(432), - [anon_sym_23] = ACTIONS(432), - [anon_sym_minimum] = ACTIONS(432), - [anon_sym_24] = ACTIONS(432), - [anon_sym_maximum] = ACTIONS(432), - [anon_sym_25] = ACTIONS(432), - [anon_sym_atangent] = ACTIONS(432), - [anon_sym_26] = ACTIONS(432), - [anon_sym_length] = ACTIONS(432), - [anon_sym_27] = ACTIONS(432), - [anon_sym_shape] = ACTIONS(432), - [anon_sym_28] = ACTIONS(432), - [anon_sym_range] = ACTIONS(432), - [anon_sym_29] = ACTIONS(432), - [anon_sym_first] = ACTIONS(432), - [anon_sym_30] = ACTIONS(432), - [anon_sym_reverse] = ACTIONS(432), - [anon_sym_31] = ACTIONS(432), - [anon_sym_deshape] = ACTIONS(432), - [anon_sym_32] = ACTIONS(432), - [anon_sym_bits] = ACTIONS(432), - [anon_sym_33] = ACTIONS(432), - [anon_sym_transpose] = ACTIONS(432), - [anon_sym_34] = ACTIONS(432), - [anon_sym_rise] = ACTIONS(432), - [anon_sym_35] = ACTIONS(432), - [anon_sym_fall] = ACTIONS(432), - [anon_sym_36] = ACTIONS(432), - [anon_sym_where] = ACTIONS(432), - [anon_sym_37] = ACTIONS(432), - [anon_sym_classify] = ACTIONS(432), - [anon_sym_38] = ACTIONS(432), - [anon_sym_deduplicate] = ACTIONS(432), - [anon_sym_39] = ACTIONS(432), - [anon_sym_box] = ACTIONS(432), - [anon_sym_40] = ACTIONS(432), - [anon_sym_unbox] = ACTIONS(432), - [anon_sym_41] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_42] = ACTIONS(432), - [anon_sym_couple] = ACTIONS(432), - [anon_sym_43] = ACTIONS(432), - [anon_sym_join] = ACTIONS(432), - [anon_sym_44] = ACTIONS(432), - [anon_sym_select] = ACTIONS(432), - [anon_sym_45] = ACTIONS(432), - [anon_sym_pick] = ACTIONS(432), - [anon_sym_46] = ACTIONS(432), - [anon_sym_reshape] = ACTIONS(432), - [anon_sym_47] = ACTIONS(432), - [anon_sym_take] = ACTIONS(432), - [anon_sym_48] = ACTIONS(432), - [anon_sym_drop] = ACTIONS(432), - [anon_sym_49] = ACTIONS(432), - [anon_sym_rotate] = ACTIONS(432), - [anon_sym_50] = ACTIONS(432), - [anon_sym_windows] = ACTIONS(432), - [anon_sym_51] = ACTIONS(432), - [anon_sym_keep] = ACTIONS(432), - [anon_sym_52] = ACTIONS(432), - [anon_sym_find] = ACTIONS(432), - [anon_sym_53] = ACTIONS(432), - [anon_sym_member] = ACTIONS(432), - [anon_sym_54] = ACTIONS(432), - [anon_sym_indexof] = ACTIONS(432), - [anon_sym_55] = ACTIONS(432), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_56] = ACTIONS(432), - [anon_sym_wait] = ACTIONS(432), - [anon_sym_parse] = ACTIONS(432), - [anon_sym_random] = ACTIONS(432), - [anon_sym_57] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(432), - [anon_sym_deal] = ACTIONS(432), - [anon_sym_tag] = ACTIONS(432), - [anon_sym_now] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_58] = ACTIONS(432), - [anon_sym_dump] = ACTIONS(432), - [anon_sym_regex] = ACTIONS(432), - [anon_sym_utf] = ACTIONS(432), - [anon_sym_send] = ACTIONS(432), - [anon_sym_recv] = ACTIONS(432), - [anon_sym_tryrecv] = ACTIONS(432), - [anon_sym_complex] = ACTIONS(432), - [anon_sym_59] = ACTIONS(432), - [anon_sym_rerank] = ACTIONS(432), - [anon_sym_60] = ACTIONS(432), - [anon_sym_fix] = ACTIONS(432), - [anon_sym_61] = ACTIONS(432), - [anon_sym_reduce] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_scan] = ACTIONS(432), - [anon_sym_BSLASH] = ACTIONS(432), - [anon_sym_each] = ACTIONS(432), - [anon_sym_62] = ACTIONS(432), - [anon_sym_rows] = ACTIONS(432), - [anon_sym_63] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_64] = ACTIONS(432), - [anon_sym_dip] = ACTIONS(432), - [anon_sym_65] = ACTIONS(432), - [anon_sym_gap] = ACTIONS(432), - [anon_sym_66] = ACTIONS(432), - [anon_sym_invert] = ACTIONS(432), - [anon_sym_67] = ACTIONS(432), - [anon_sym_spawn] = ACTIONS(432), - [anon_sym_pack] = ACTIONS(432), - [anon_sym_68] = ACTIONS(432), - [anon_sym_rectify] = ACTIONS(432), - [anon_sym_69] = ACTIONS(432), - [anon_sym_this] = ACTIONS(432), - [anon_sym_70] = ACTIONS(432), - [anon_sym_recur] = ACTIONS(432), - [anon_sym_71] = ACTIONS(432), - [anon_sym_fold] = ACTIONS(432), - [anon_sym_72] = ACTIONS(432), - [anon_sym_table] = ACTIONS(432), - [anon_sym_73] = ACTIONS(432), - [anon_sym_cross] = ACTIONS(432), - [anon_sym_74] = ACTIONS(432), - [anon_sym_group] = ACTIONS(432), - [anon_sym_75] = ACTIONS(432), - [anon_sym_partition] = ACTIONS(432), - [anon_sym_76] = ACTIONS(432), - [anon_sym_both] = ACTIONS(432), - [anon_sym_77] = ACTIONS(432), - [anon_sym_bracket] = ACTIONS(432), - [anon_sym_78] = ACTIONS(432), - [anon_sym_fork] = ACTIONS(432), - [anon_sym_79] = ACTIONS(432), - [anon_sym_under] = ACTIONS(432), - [anon_sym_80] = ACTIONS(432), - [anon_sym_fill] = ACTIONS(432), - [anon_sym_81] = ACTIONS(432), - [anon_sym_try] = ACTIONS(430), - [anon_sym_82] = ACTIONS(432), - [anon_sym_do] = ACTIONS(430), - [anon_sym_83] = ACTIONS(432), - [anon_sym_all] = ACTIONS(432), - [anon_sym_84] = ACTIONS(432), - [anon_sym_setinv] = ACTIONS(432), - [anon_sym_setunder] = ACTIONS(432), - [anon_sym_85] = ACTIONS(432), - [anon_sym_86] = ACTIONS(432), - [anon_sym_87] = ACTIONS(432), - [anon_sym_88] = ACTIONS(432), - [anon_sym_89] = ACTIONS(432), - [anon_sym_90] = ACTIONS(432), - [anon_sym_91] = ACTIONS(432), - [anon_sym_92] = ACTIONS(432), - [anon_sym_93] = ACTIONS(432), - [anon_sym_94] = ACTIONS(432), - [anon_sym_95] = ACTIONS(432), - [anon_sym_96] = ACTIONS(432), - [sym__endOfLine] = ACTIONS(432), - }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(494), - [aux_sym_number_token1] = ACTIONS(492), - [sym_fraction] = ACTIONS(494), - [anon_sym_os] = ACTIONS(492), - [anon_sym_Family] = ACTIONS(492), - [anon_sym_Arch] = ACTIONS(492), - [anon_sym_ExeExt] = ACTIONS(492), - [anon_sym_PllExt] = ACTIONS(492), - [anon_sym_Sep] = ACTIONS(492), - [anon_sym_NUmProcs] = ACTIONS(492), - [anon_sym_] = ACTIONS(494), - [aux_sym_character_token1] = ACTIONS(494), - [sym_string] = ACTIONS(494), - [sym_multiLineString] = ACTIONS(494), - [sym_identifier] = ACTIONS(492), - [sym_identifierDeprecated] = ACTIONS(492), - [sym_system] = ACTIONS(494), - [sym_comment] = ACTIONS(492), - [sym_openParen] = ACTIONS(494), - [sym_openCurly] = ACTIONS(494), - [sym_openBracket] = ACTIONS(494), - [sym_underscore] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_eta] = ACTIONS(494), - [anon_sym_2] = ACTIONS(492), - [anon_sym_pi] = ACTIONS(492), - [anon_sym_3] = ACTIONS(492), - [anon_sym_tau] = ACTIONS(494), - [anon_sym_4] = ACTIONS(492), - [anon_sym_infinity] = ACTIONS(494), - [anon_sym_5] = ACTIONS(494), - [anon_sym_e] = ACTIONS(492), - [anon_sym_NaN] = ACTIONS(492), - [anon_sym_NumProcs] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_identity] = ACTIONS(494), - [anon_sym_id] = ACTIONS(492), - [anon_sym_6] = ACTIONS(494), - [anon_sym_not] = ACTIONS(494), - [anon_sym_7] = ACTIONS(494), - [anon_sym_sign] = ACTIONS(494), - [anon_sym_8] = ACTIONS(494), - [anon_sym_BQUOTE] = ACTIONS(494), - [anon_sym_9] = ACTIONS(492), - [anon_sym_absolutevalue] = ACTIONS(494), - [anon_sym_10] = ACTIONS(494), - [anon_sym_sqrt] = ACTIONS(494), - [anon_sym_11] = ACTIONS(494), - [anon_sym_sine] = ACTIONS(494), - [anon_sym_12] = ACTIONS(494), - [anon_sym_floor] = ACTIONS(494), - [anon_sym_13] = ACTIONS(494), - [anon_sym_ceiling] = ACTIONS(494), - [anon_sym_14] = ACTIONS(494), - [anon_sym_round] = ACTIONS(494), - [anon_sym_15] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_16] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_17] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_18] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_19] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_20] = ACTIONS(494), - [anon_sym_modulus] = ACTIONS(494), - [anon_sym_21] = ACTIONS(494), - [anon_sym_power] = ACTIONS(494), - [anon_sym_22] = ACTIONS(494), - [anon_sym_logarithm] = ACTIONS(494), - [anon_sym_23] = ACTIONS(494), - [anon_sym_minimum] = ACTIONS(494), - [anon_sym_24] = ACTIONS(494), - [anon_sym_maximum] = ACTIONS(494), - [anon_sym_25] = ACTIONS(494), - [anon_sym_atangent] = ACTIONS(494), - [anon_sym_26] = ACTIONS(494), - [anon_sym_length] = ACTIONS(494), - [anon_sym_27] = ACTIONS(494), - [anon_sym_shape] = ACTIONS(494), - [anon_sym_28] = ACTIONS(494), - [anon_sym_range] = ACTIONS(494), - [anon_sym_29] = ACTIONS(494), - [anon_sym_first] = ACTIONS(494), - [anon_sym_30] = ACTIONS(494), - [anon_sym_reverse] = ACTIONS(494), - [anon_sym_31] = ACTIONS(494), - [anon_sym_deshape] = ACTIONS(494), - [anon_sym_32] = ACTIONS(494), - [anon_sym_bits] = ACTIONS(494), - [anon_sym_33] = ACTIONS(494), - [anon_sym_transpose] = ACTIONS(494), - [anon_sym_34] = ACTIONS(494), - [anon_sym_rise] = ACTIONS(494), - [anon_sym_35] = ACTIONS(494), - [anon_sym_fall] = ACTIONS(494), - [anon_sym_36] = ACTIONS(494), - [anon_sym_where] = ACTIONS(494), - [anon_sym_37] = ACTIONS(494), - [anon_sym_classify] = ACTIONS(494), - [anon_sym_38] = ACTIONS(494), - [anon_sym_deduplicate] = ACTIONS(494), - [anon_sym_39] = ACTIONS(494), - [anon_sym_box] = ACTIONS(494), - [anon_sym_40] = ACTIONS(494), - [anon_sym_unbox] = ACTIONS(494), - [anon_sym_41] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_42] = ACTIONS(494), - [anon_sym_couple] = ACTIONS(494), - [anon_sym_43] = ACTIONS(494), - [anon_sym_join] = ACTIONS(494), - [anon_sym_44] = ACTIONS(494), - [anon_sym_select] = ACTIONS(494), - [anon_sym_45] = ACTIONS(494), - [anon_sym_pick] = ACTIONS(494), - [anon_sym_46] = ACTIONS(494), - [anon_sym_reshape] = ACTIONS(494), - [anon_sym_47] = ACTIONS(494), - [anon_sym_take] = ACTIONS(494), - [anon_sym_48] = ACTIONS(494), - [anon_sym_drop] = ACTIONS(494), - [anon_sym_49] = ACTIONS(494), - [anon_sym_rotate] = ACTIONS(494), - [anon_sym_50] = ACTIONS(494), - [anon_sym_windows] = ACTIONS(494), - [anon_sym_51] = ACTIONS(494), - [anon_sym_keep] = ACTIONS(494), - [anon_sym_52] = ACTIONS(494), - [anon_sym_find] = ACTIONS(494), - [anon_sym_53] = ACTIONS(494), - [anon_sym_member] = ACTIONS(494), - [anon_sym_54] = ACTIONS(494), - [anon_sym_indexof] = ACTIONS(494), - [anon_sym_55] = ACTIONS(494), - [anon_sym_assert] = ACTIONS(494), - [anon_sym_56] = ACTIONS(494), - [anon_sym_wait] = ACTIONS(494), - [anon_sym_parse] = ACTIONS(494), - [anon_sym_random] = ACTIONS(494), - [anon_sym_57] = ACTIONS(494), - [anon_sym_gen] = ACTIONS(494), - [anon_sym_deal] = ACTIONS(494), - [anon_sym_tag] = ACTIONS(494), - [anon_sym_now] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_58] = ACTIONS(494), - [anon_sym_dump] = ACTIONS(494), - [anon_sym_regex] = ACTIONS(494), - [anon_sym_utf] = ACTIONS(494), - [anon_sym_send] = ACTIONS(494), - [anon_sym_recv] = ACTIONS(494), - [anon_sym_tryrecv] = ACTIONS(494), - [anon_sym_complex] = ACTIONS(494), - [anon_sym_59] = ACTIONS(494), - [anon_sym_rerank] = ACTIONS(494), - [anon_sym_60] = ACTIONS(494), - [anon_sym_fix] = ACTIONS(494), - [anon_sym_61] = ACTIONS(494), - [anon_sym_reduce] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_scan] = ACTIONS(494), - [anon_sym_BSLASH] = ACTIONS(494), - [anon_sym_each] = ACTIONS(494), - [anon_sym_62] = ACTIONS(494), - [anon_sym_rows] = ACTIONS(494), - [anon_sym_63] = ACTIONS(494), - [anon_sym_repeat] = ACTIONS(494), - [anon_sym_64] = ACTIONS(494), - [anon_sym_dip] = ACTIONS(494), - [anon_sym_65] = ACTIONS(494), - [anon_sym_gap] = ACTIONS(494), - [anon_sym_66] = ACTIONS(494), - [anon_sym_invert] = ACTIONS(494), - [anon_sym_67] = ACTIONS(494), - [anon_sym_spawn] = ACTIONS(494), - [anon_sym_pack] = ACTIONS(494), - [anon_sym_68] = ACTIONS(494), - [anon_sym_rectify] = ACTIONS(494), - [anon_sym_69] = ACTIONS(494), - [anon_sym_this] = ACTIONS(494), - [anon_sym_70] = ACTIONS(494), - [anon_sym_recur] = ACTIONS(494), - [anon_sym_71] = ACTIONS(494), - [anon_sym_fold] = ACTIONS(494), - [anon_sym_72] = ACTIONS(494), - [anon_sym_table] = ACTIONS(494), - [anon_sym_73] = ACTIONS(494), - [anon_sym_cross] = ACTIONS(494), - [anon_sym_74] = ACTIONS(494), - [anon_sym_group] = ACTIONS(494), - [anon_sym_75] = ACTIONS(494), - [anon_sym_partition] = ACTIONS(494), - [anon_sym_76] = ACTIONS(494), - [anon_sym_both] = ACTIONS(494), - [anon_sym_77] = ACTIONS(494), - [anon_sym_bracket] = ACTIONS(494), - [anon_sym_78] = ACTIONS(494), - [anon_sym_fork] = ACTIONS(494), - [anon_sym_79] = ACTIONS(494), - [anon_sym_under] = ACTIONS(494), - [anon_sym_80] = ACTIONS(494), - [anon_sym_fill] = ACTIONS(494), - [anon_sym_81] = ACTIONS(494), - [anon_sym_try] = ACTIONS(492), - [anon_sym_82] = ACTIONS(494), - [anon_sym_do] = ACTIONS(492), - [anon_sym_83] = ACTIONS(494), - [anon_sym_all] = ACTIONS(494), - [anon_sym_84] = ACTIONS(494), - [anon_sym_setinv] = ACTIONS(494), - [anon_sym_setunder] = ACTIONS(494), - [anon_sym_85] = ACTIONS(494), - [anon_sym_86] = ACTIONS(494), - [anon_sym_87] = ACTIONS(494), - [anon_sym_88] = ACTIONS(494), - [anon_sym_89] = ACTIONS(494), - [anon_sym_90] = ACTIONS(494), - [anon_sym_91] = ACTIONS(494), - [anon_sym_92] = ACTIONS(494), - [anon_sym_93] = ACTIONS(494), - [anon_sym_94] = ACTIONS(494), - [anon_sym_95] = ACTIONS(494), - [anon_sym_96] = ACTIONS(494), - [sym__endOfLine] = ACTIONS(494), - }, - [131] = { - [aux_sym_number_token1] = ACTIONS(464), - [sym_fraction] = ACTIONS(466), - [anon_sym_os] = ACTIONS(464), - [anon_sym_Family] = ACTIONS(464), - [anon_sym_Arch] = ACTIONS(464), - [anon_sym_ExeExt] = ACTIONS(464), - [anon_sym_PllExt] = ACTIONS(464), - [anon_sym_Sep] = ACTIONS(464), - [anon_sym_NUmProcs] = ACTIONS(464), - [anon_sym_] = ACTIONS(466), - [aux_sym_character_token1] = ACTIONS(466), - [sym_string] = ACTIONS(466), - [sym_multiLineString] = ACTIONS(466), - [sym_identifier] = ACTIONS(464), - [sym_identifierDeprecated] = ACTIONS(464), - [sym_system] = ACTIONS(466), - [sym_comment] = ACTIONS(464), - [sym_openParen] = ACTIONS(466), - [sym_openCurly] = ACTIONS(466), - [sym_openBracket] = ACTIONS(466), - [sym_underscore] = ACTIONS(466), - [sym_leftArrow] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_eta] = ACTIONS(466), - [anon_sym_2] = ACTIONS(464), - [anon_sym_pi] = ACTIONS(464), - [anon_sym_3] = ACTIONS(464), - [anon_sym_tau] = ACTIONS(466), - [anon_sym_4] = ACTIONS(464), - [anon_sym_infinity] = ACTIONS(466), - [anon_sym_5] = ACTIONS(466), - [anon_sym_e] = ACTIONS(464), - [anon_sym_NaN] = ACTIONS(464), - [anon_sym_NumProcs] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(466), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(466), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_identity] = ACTIONS(466), - [anon_sym_id] = ACTIONS(464), - [anon_sym_6] = ACTIONS(466), - [anon_sym_not] = ACTIONS(466), - [anon_sym_7] = ACTIONS(466), - [anon_sym_sign] = ACTIONS(466), - [anon_sym_8] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_9] = ACTIONS(464), - [anon_sym_absolutevalue] = ACTIONS(466), - [anon_sym_10] = ACTIONS(466), - [anon_sym_sqrt] = ACTIONS(466), - [anon_sym_11] = ACTIONS(466), - [anon_sym_sine] = ACTIONS(466), - [anon_sym_12] = ACTIONS(466), - [anon_sym_floor] = ACTIONS(466), - [anon_sym_13] = ACTIONS(466), - [anon_sym_ceiling] = ACTIONS(466), - [anon_sym_14] = ACTIONS(466), - [anon_sym_round] = ACTIONS(466), - [anon_sym_15] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_16] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_17] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_18] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_19] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_20] = ACTIONS(466), - [anon_sym_modulus] = ACTIONS(466), - [anon_sym_21] = ACTIONS(466), - [anon_sym_power] = ACTIONS(466), - [anon_sym_22] = ACTIONS(466), - [anon_sym_logarithm] = ACTIONS(466), - [anon_sym_23] = ACTIONS(466), - [anon_sym_minimum] = ACTIONS(466), - [anon_sym_24] = ACTIONS(466), - [anon_sym_maximum] = ACTIONS(466), - [anon_sym_25] = ACTIONS(466), - [anon_sym_atangent] = ACTIONS(466), - [anon_sym_26] = ACTIONS(466), - [anon_sym_length] = ACTIONS(466), - [anon_sym_27] = ACTIONS(466), - [anon_sym_shape] = ACTIONS(466), - [anon_sym_28] = ACTIONS(466), - [anon_sym_range] = ACTIONS(466), - [anon_sym_29] = ACTIONS(466), - [anon_sym_first] = ACTIONS(466), - [anon_sym_30] = ACTIONS(466), - [anon_sym_reverse] = ACTIONS(466), - [anon_sym_31] = ACTIONS(466), - [anon_sym_deshape] = ACTIONS(466), - [anon_sym_32] = ACTIONS(466), - [anon_sym_bits] = ACTIONS(466), - [anon_sym_33] = ACTIONS(466), - [anon_sym_transpose] = ACTIONS(466), - [anon_sym_34] = ACTIONS(466), - [anon_sym_rise] = ACTIONS(466), - [anon_sym_35] = ACTIONS(466), - [anon_sym_fall] = ACTIONS(466), - [anon_sym_36] = ACTIONS(466), - [anon_sym_where] = ACTIONS(466), - [anon_sym_37] = ACTIONS(466), - [anon_sym_classify] = ACTIONS(466), - [anon_sym_38] = ACTIONS(466), - [anon_sym_deduplicate] = ACTIONS(466), - [anon_sym_39] = ACTIONS(466), - [anon_sym_box] = ACTIONS(466), - [anon_sym_40] = ACTIONS(466), - [anon_sym_unbox] = ACTIONS(466), - [anon_sym_41] = ACTIONS(466), - [anon_sym_match] = ACTIONS(466), - [anon_sym_42] = ACTIONS(466), - [anon_sym_couple] = ACTIONS(466), - [anon_sym_43] = ACTIONS(466), - [anon_sym_join] = ACTIONS(466), - [anon_sym_44] = ACTIONS(466), - [anon_sym_select] = ACTIONS(466), - [anon_sym_45] = ACTIONS(466), - [anon_sym_pick] = ACTIONS(466), - [anon_sym_46] = ACTIONS(466), - [anon_sym_reshape] = ACTIONS(466), - [anon_sym_47] = ACTIONS(466), - [anon_sym_take] = ACTIONS(466), - [anon_sym_48] = ACTIONS(466), - [anon_sym_drop] = ACTIONS(466), - [anon_sym_49] = ACTIONS(466), - [anon_sym_rotate] = ACTIONS(466), - [anon_sym_50] = ACTIONS(466), - [anon_sym_windows] = ACTIONS(466), - [anon_sym_51] = ACTIONS(466), - [anon_sym_keep] = ACTIONS(466), - [anon_sym_52] = ACTIONS(466), - [anon_sym_find] = ACTIONS(466), - [anon_sym_53] = ACTIONS(466), - [anon_sym_member] = ACTIONS(466), - [anon_sym_54] = ACTIONS(466), - [anon_sym_indexof] = ACTIONS(466), - [anon_sym_55] = ACTIONS(466), - [anon_sym_assert] = ACTIONS(466), - [anon_sym_56] = ACTIONS(466), - [anon_sym_wait] = ACTIONS(466), - [anon_sym_parse] = ACTIONS(466), - [anon_sym_random] = ACTIONS(466), - [anon_sym_57] = ACTIONS(466), - [anon_sym_gen] = ACTIONS(466), - [anon_sym_deal] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_now] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_58] = ACTIONS(466), - [anon_sym_dump] = ACTIONS(466), - [anon_sym_regex] = ACTIONS(466), - [anon_sym_utf] = ACTIONS(466), - [anon_sym_send] = ACTIONS(466), - [anon_sym_recv] = ACTIONS(466), - [anon_sym_tryrecv] = ACTIONS(466), - [anon_sym_complex] = ACTIONS(466), - [anon_sym_59] = ACTIONS(466), - [anon_sym_rerank] = ACTIONS(466), - [anon_sym_60] = ACTIONS(466), - [anon_sym_fix] = ACTIONS(466), - [anon_sym_61] = ACTIONS(466), - [anon_sym_reduce] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), - [anon_sym_scan] = ACTIONS(466), - [anon_sym_BSLASH] = ACTIONS(466), - [anon_sym_each] = ACTIONS(466), - [anon_sym_62] = ACTIONS(466), - [anon_sym_rows] = ACTIONS(466), - [anon_sym_63] = ACTIONS(466), - [anon_sym_repeat] = ACTIONS(466), - [anon_sym_64] = ACTIONS(466), - [anon_sym_dip] = ACTIONS(466), - [anon_sym_65] = ACTIONS(466), - [anon_sym_gap] = ACTIONS(466), - [anon_sym_66] = ACTIONS(466), - [anon_sym_invert] = ACTIONS(466), - [anon_sym_67] = ACTIONS(466), - [anon_sym_spawn] = ACTIONS(466), - [anon_sym_pack] = ACTIONS(466), - [anon_sym_68] = ACTIONS(466), - [anon_sym_rectify] = ACTIONS(466), - [anon_sym_69] = ACTIONS(466), - [anon_sym_this] = ACTIONS(466), - [anon_sym_70] = ACTIONS(466), - [anon_sym_recur] = ACTIONS(466), - [anon_sym_71] = ACTIONS(466), - [anon_sym_fold] = ACTIONS(466), - [anon_sym_72] = ACTIONS(466), - [anon_sym_table] = ACTIONS(466), - [anon_sym_73] = ACTIONS(466), - [anon_sym_cross] = ACTIONS(466), - [anon_sym_74] = ACTIONS(466), - [anon_sym_group] = ACTIONS(466), - [anon_sym_75] = ACTIONS(466), - [anon_sym_partition] = ACTIONS(466), - [anon_sym_76] = ACTIONS(466), - [anon_sym_both] = ACTIONS(466), - [anon_sym_77] = ACTIONS(466), - [anon_sym_bracket] = ACTIONS(466), - [anon_sym_78] = ACTIONS(466), - [anon_sym_fork] = ACTIONS(466), - [anon_sym_79] = ACTIONS(466), - [anon_sym_under] = ACTIONS(466), - [anon_sym_80] = ACTIONS(466), - [anon_sym_fill] = ACTIONS(466), - [anon_sym_81] = ACTIONS(466), - [anon_sym_try] = ACTIONS(464), - [anon_sym_82] = ACTIONS(466), - [anon_sym_do] = ACTIONS(464), - [anon_sym_83] = ACTIONS(466), - [anon_sym_all] = ACTIONS(466), - [anon_sym_84] = ACTIONS(466), - [anon_sym_setinv] = ACTIONS(466), - [anon_sym_setunder] = ACTIONS(466), - [anon_sym_85] = ACTIONS(466), - [anon_sym_86] = ACTIONS(466), - [anon_sym_87] = ACTIONS(466), - [anon_sym_88] = ACTIONS(466), - [anon_sym_89] = ACTIONS(466), - [anon_sym_90] = ACTIONS(466), - [anon_sym_91] = ACTIONS(466), - [anon_sym_92] = ACTIONS(466), - [anon_sym_93] = ACTIONS(466), - [anon_sym_94] = ACTIONS(466), - [anon_sym_95] = ACTIONS(466), - [anon_sym_96] = ACTIONS(466), - [sym__endOfLine] = ACTIONS(466), - }, - [132] = { - [aux_sym_number_token1] = ACTIONS(568), - [sym_fraction] = ACTIONS(570), - [anon_sym_os] = ACTIONS(568), - [anon_sym_Family] = ACTIONS(568), - [anon_sym_Arch] = ACTIONS(568), - [anon_sym_ExeExt] = ACTIONS(568), - [anon_sym_PllExt] = ACTIONS(568), - [anon_sym_Sep] = ACTIONS(568), - [anon_sym_NUmProcs] = ACTIONS(568), - [anon_sym_] = ACTIONS(570), - [aux_sym_character_token1] = ACTIONS(570), - [sym_string] = ACTIONS(570), - [sym_multiLineString] = ACTIONS(570), - [sym_identifier] = ACTIONS(568), - [sym_identifierDeprecated] = ACTIONS(568), - [sym_system] = ACTIONS(570), - [sym_comment] = ACTIONS(568), - [sym_openParen] = ACTIONS(570), - [sym_openCurly] = ACTIONS(570), - [sym_closeCurly] = ACTIONS(570), - [sym_openBracket] = ACTIONS(570), - [sym_closeBracket] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_eta] = ACTIONS(570), - [anon_sym_2] = ACTIONS(568), - [anon_sym_pi] = ACTIONS(568), - [anon_sym_3] = ACTIONS(568), - [anon_sym_tau] = ACTIONS(570), - [anon_sym_4] = ACTIONS(568), - [anon_sym_infinity] = ACTIONS(570), - [anon_sym_5] = ACTIONS(570), - [anon_sym_e] = ACTIONS(568), - [anon_sym_NaN] = ACTIONS(568), - [anon_sym_NumProcs] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_identity] = ACTIONS(570), - [anon_sym_id] = ACTIONS(568), - [anon_sym_6] = ACTIONS(570), - [anon_sym_not] = ACTIONS(570), - [anon_sym_7] = ACTIONS(570), - [anon_sym_sign] = ACTIONS(570), - [anon_sym_8] = ACTIONS(570), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_9] = ACTIONS(568), - [anon_sym_absolutevalue] = ACTIONS(570), - [anon_sym_10] = ACTIONS(570), - [anon_sym_sqrt] = ACTIONS(570), - [anon_sym_11] = ACTIONS(570), - [anon_sym_sine] = ACTIONS(570), - [anon_sym_12] = ACTIONS(570), - [anon_sym_floor] = ACTIONS(570), - [anon_sym_13] = ACTIONS(570), - [anon_sym_ceiling] = ACTIONS(570), - [anon_sym_14] = ACTIONS(570), - [anon_sym_round] = ACTIONS(570), - [anon_sym_15] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_16] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_17] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_18] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_19] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_20] = ACTIONS(570), - [anon_sym_modulus] = ACTIONS(570), - [anon_sym_21] = ACTIONS(570), - [anon_sym_power] = ACTIONS(570), - [anon_sym_22] = ACTIONS(570), - [anon_sym_logarithm] = ACTIONS(570), - [anon_sym_23] = ACTIONS(570), - [anon_sym_minimum] = ACTIONS(570), - [anon_sym_24] = ACTIONS(570), - [anon_sym_maximum] = ACTIONS(570), - [anon_sym_25] = ACTIONS(570), - [anon_sym_atangent] = ACTIONS(570), - [anon_sym_26] = ACTIONS(570), - [anon_sym_length] = ACTIONS(570), - [anon_sym_27] = ACTIONS(570), - [anon_sym_shape] = ACTIONS(570), - [anon_sym_28] = ACTIONS(570), - [anon_sym_range] = ACTIONS(570), - [anon_sym_29] = ACTIONS(570), - [anon_sym_first] = ACTIONS(570), - [anon_sym_30] = ACTIONS(570), - [anon_sym_reverse] = ACTIONS(570), - [anon_sym_31] = ACTIONS(570), - [anon_sym_deshape] = ACTIONS(570), - [anon_sym_32] = ACTIONS(570), - [anon_sym_bits] = ACTIONS(570), - [anon_sym_33] = ACTIONS(570), - [anon_sym_transpose] = ACTIONS(570), - [anon_sym_34] = ACTIONS(570), - [anon_sym_rise] = ACTIONS(570), - [anon_sym_35] = ACTIONS(570), - [anon_sym_fall] = ACTIONS(570), - [anon_sym_36] = ACTIONS(570), - [anon_sym_where] = ACTIONS(570), - [anon_sym_37] = ACTIONS(570), - [anon_sym_classify] = ACTIONS(570), - [anon_sym_38] = ACTIONS(570), - [anon_sym_deduplicate] = ACTIONS(570), - [anon_sym_39] = ACTIONS(570), - [anon_sym_box] = ACTIONS(570), - [anon_sym_40] = ACTIONS(570), - [anon_sym_unbox] = ACTIONS(570), - [anon_sym_41] = ACTIONS(570), - [anon_sym_match] = ACTIONS(570), - [anon_sym_42] = ACTIONS(570), - [anon_sym_couple] = ACTIONS(570), - [anon_sym_43] = ACTIONS(570), - [anon_sym_join] = ACTIONS(570), - [anon_sym_44] = ACTIONS(570), - [anon_sym_select] = ACTIONS(570), - [anon_sym_45] = ACTIONS(570), - [anon_sym_pick] = ACTIONS(570), - [anon_sym_46] = ACTIONS(570), - [anon_sym_reshape] = ACTIONS(570), - [anon_sym_47] = ACTIONS(570), - [anon_sym_take] = ACTIONS(570), - [anon_sym_48] = ACTIONS(570), - [anon_sym_drop] = ACTIONS(570), - [anon_sym_49] = ACTIONS(570), - [anon_sym_rotate] = ACTIONS(570), - [anon_sym_50] = ACTIONS(570), - [anon_sym_windows] = ACTIONS(570), - [anon_sym_51] = ACTIONS(570), - [anon_sym_keep] = ACTIONS(570), - [anon_sym_52] = ACTIONS(570), - [anon_sym_find] = ACTIONS(570), - [anon_sym_53] = ACTIONS(570), - [anon_sym_member] = ACTIONS(570), - [anon_sym_54] = ACTIONS(570), - [anon_sym_indexof] = ACTIONS(570), - [anon_sym_55] = ACTIONS(570), - [anon_sym_assert] = ACTIONS(570), - [anon_sym_56] = ACTIONS(570), - [anon_sym_wait] = ACTIONS(570), - [anon_sym_parse] = ACTIONS(570), - [anon_sym_random] = ACTIONS(570), - [anon_sym_57] = ACTIONS(570), - [anon_sym_gen] = ACTIONS(570), - [anon_sym_deal] = ACTIONS(570), - [anon_sym_tag] = ACTIONS(570), - [anon_sym_now] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_58] = ACTIONS(570), - [anon_sym_dump] = ACTIONS(570), - [anon_sym_regex] = ACTIONS(570), - [anon_sym_utf] = ACTIONS(570), - [anon_sym_send] = ACTIONS(570), - [anon_sym_recv] = ACTIONS(570), - [anon_sym_tryrecv] = ACTIONS(570), - [anon_sym_complex] = ACTIONS(570), - [anon_sym_59] = ACTIONS(570), - [anon_sym_rerank] = ACTIONS(570), - [anon_sym_60] = ACTIONS(570), - [anon_sym_fix] = ACTIONS(570), - [anon_sym_61] = ACTIONS(570), - [anon_sym_reduce] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_scan] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(570), - [anon_sym_each] = ACTIONS(570), - [anon_sym_62] = ACTIONS(570), - [anon_sym_rows] = ACTIONS(570), - [anon_sym_63] = ACTIONS(570), - [anon_sym_repeat] = ACTIONS(570), - [anon_sym_64] = ACTIONS(570), - [anon_sym_dip] = ACTIONS(570), - [anon_sym_65] = ACTIONS(570), - [anon_sym_gap] = ACTIONS(570), - [anon_sym_66] = ACTIONS(570), - [anon_sym_invert] = ACTIONS(570), - [anon_sym_67] = ACTIONS(570), - [anon_sym_spawn] = ACTIONS(570), - [anon_sym_pack] = ACTIONS(570), - [anon_sym_68] = ACTIONS(570), - [anon_sym_rectify] = ACTIONS(570), - [anon_sym_69] = ACTIONS(570), - [anon_sym_this] = ACTIONS(570), - [anon_sym_70] = ACTIONS(570), - [anon_sym_recur] = ACTIONS(570), - [anon_sym_71] = ACTIONS(570), - [anon_sym_fold] = ACTIONS(570), - [anon_sym_72] = ACTIONS(570), - [anon_sym_table] = ACTIONS(570), - [anon_sym_73] = ACTIONS(570), - [anon_sym_cross] = ACTIONS(570), - [anon_sym_74] = ACTIONS(570), - [anon_sym_group] = ACTIONS(570), - [anon_sym_75] = ACTIONS(570), - [anon_sym_partition] = ACTIONS(570), - [anon_sym_76] = ACTIONS(570), - [anon_sym_both] = ACTIONS(570), - [anon_sym_77] = ACTIONS(570), - [anon_sym_bracket] = ACTIONS(570), - [anon_sym_78] = ACTIONS(570), - [anon_sym_fork] = ACTIONS(570), - [anon_sym_79] = ACTIONS(570), - [anon_sym_under] = ACTIONS(570), - [anon_sym_80] = ACTIONS(570), - [anon_sym_fill] = ACTIONS(570), - [anon_sym_81] = ACTIONS(570), - [anon_sym_try] = ACTIONS(568), - [anon_sym_82] = ACTIONS(570), - [anon_sym_do] = ACTIONS(568), - [anon_sym_83] = ACTIONS(570), - [anon_sym_all] = ACTIONS(570), - [anon_sym_84] = ACTIONS(570), - [anon_sym_setinv] = ACTIONS(570), - [anon_sym_setunder] = ACTIONS(570), - [anon_sym_85] = ACTIONS(570), - [anon_sym_86] = ACTIONS(570), - [anon_sym_87] = ACTIONS(570), - [anon_sym_88] = ACTIONS(570), - [anon_sym_89] = ACTIONS(570), - [anon_sym_90] = ACTIONS(570), - [anon_sym_91] = ACTIONS(570), - [anon_sym_92] = ACTIONS(570), - [anon_sym_93] = ACTIONS(570), - [anon_sym_94] = ACTIONS(570), - [anon_sym_95] = ACTIONS(570), - [anon_sym_96] = ACTIONS(570), - [sym__endOfLine] = ACTIONS(570), - }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(462), - [aux_sym_number_token1] = ACTIONS(460), - [sym_fraction] = ACTIONS(462), - [anon_sym_os] = ACTIONS(460), - [anon_sym_Family] = ACTIONS(460), - [anon_sym_Arch] = ACTIONS(460), - [anon_sym_ExeExt] = ACTIONS(460), - [anon_sym_PllExt] = ACTIONS(460), - [anon_sym_Sep] = ACTIONS(460), - [anon_sym_NUmProcs] = ACTIONS(460), - [anon_sym_] = ACTIONS(462), - [aux_sym_character_token1] = ACTIONS(462), - [sym_string] = ACTIONS(462), - [sym_multiLineString] = ACTIONS(462), - [sym_identifier] = ACTIONS(460), - [sym_identifierDeprecated] = ACTIONS(460), - [sym_system] = ACTIONS(462), - [sym_comment] = ACTIONS(460), - [sym_openParen] = ACTIONS(462), - [sym_openCurly] = ACTIONS(462), - [sym_openBracket] = ACTIONS(462), - [sym_underscore] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(462), - [anon_sym_eta] = ACTIONS(462), - [anon_sym_2] = ACTIONS(460), - [anon_sym_pi] = ACTIONS(460), - [anon_sym_3] = ACTIONS(460), - [anon_sym_tau] = ACTIONS(462), - [anon_sym_4] = ACTIONS(460), - [anon_sym_infinity] = ACTIONS(462), - [anon_sym_5] = ACTIONS(462), - [anon_sym_e] = ACTIONS(460), - [anon_sym_NaN] = ACTIONS(460), - [anon_sym_NumProcs] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_COLON] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_identity] = ACTIONS(462), - [anon_sym_id] = ACTIONS(460), - [anon_sym_6] = ACTIONS(462), - [anon_sym_not] = ACTIONS(462), - [anon_sym_7] = ACTIONS(462), - [anon_sym_sign] = ACTIONS(462), - [anon_sym_8] = ACTIONS(462), - [anon_sym_BQUOTE] = ACTIONS(462), - [anon_sym_9] = ACTIONS(460), - [anon_sym_absolutevalue] = ACTIONS(462), - [anon_sym_10] = ACTIONS(462), - [anon_sym_sqrt] = ACTIONS(462), - [anon_sym_11] = ACTIONS(462), - [anon_sym_sine] = ACTIONS(462), - [anon_sym_12] = ACTIONS(462), - [anon_sym_floor] = ACTIONS(462), - [anon_sym_13] = ACTIONS(462), - [anon_sym_ceiling] = ACTIONS(462), - [anon_sym_14] = ACTIONS(462), - [anon_sym_round] = ACTIONS(462), - [anon_sym_15] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_16] = ACTIONS(462), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_17] = ACTIONS(462), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_18] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_19] = ACTIONS(462), - [anon_sym_PERCENT] = ACTIONS(462), - [anon_sym_20] = ACTIONS(462), - [anon_sym_modulus] = ACTIONS(462), - [anon_sym_21] = ACTIONS(462), - [anon_sym_power] = ACTIONS(462), - [anon_sym_22] = ACTIONS(462), - [anon_sym_logarithm] = ACTIONS(462), - [anon_sym_23] = ACTIONS(462), - [anon_sym_minimum] = ACTIONS(462), - [anon_sym_24] = ACTIONS(462), - [anon_sym_maximum] = ACTIONS(462), - [anon_sym_25] = ACTIONS(462), - [anon_sym_atangent] = ACTIONS(462), - [anon_sym_26] = ACTIONS(462), - [anon_sym_length] = ACTIONS(462), - [anon_sym_27] = ACTIONS(462), - [anon_sym_shape] = ACTIONS(462), - [anon_sym_28] = ACTIONS(462), - [anon_sym_range] = ACTIONS(462), - [anon_sym_29] = ACTIONS(462), - [anon_sym_first] = ACTIONS(462), - [anon_sym_30] = ACTIONS(462), - [anon_sym_reverse] = ACTIONS(462), - [anon_sym_31] = ACTIONS(462), - [anon_sym_deshape] = ACTIONS(462), - [anon_sym_32] = ACTIONS(462), - [anon_sym_bits] = ACTIONS(462), - [anon_sym_33] = ACTIONS(462), - [anon_sym_transpose] = ACTIONS(462), - [anon_sym_34] = ACTIONS(462), - [anon_sym_rise] = ACTIONS(462), - [anon_sym_35] = ACTIONS(462), - [anon_sym_fall] = ACTIONS(462), - [anon_sym_36] = ACTIONS(462), - [anon_sym_where] = ACTIONS(462), - [anon_sym_37] = ACTIONS(462), - [anon_sym_classify] = ACTIONS(462), - [anon_sym_38] = ACTIONS(462), - [anon_sym_deduplicate] = ACTIONS(462), - [anon_sym_39] = ACTIONS(462), - [anon_sym_box] = ACTIONS(462), - [anon_sym_40] = ACTIONS(462), - [anon_sym_unbox] = ACTIONS(462), - [anon_sym_41] = ACTIONS(462), - [anon_sym_match] = ACTIONS(462), - [anon_sym_42] = ACTIONS(462), - [anon_sym_couple] = ACTIONS(462), - [anon_sym_43] = ACTIONS(462), - [anon_sym_join] = ACTIONS(462), - [anon_sym_44] = ACTIONS(462), - [anon_sym_select] = ACTIONS(462), - [anon_sym_45] = ACTIONS(462), - [anon_sym_pick] = ACTIONS(462), - [anon_sym_46] = ACTIONS(462), - [anon_sym_reshape] = ACTIONS(462), - [anon_sym_47] = ACTIONS(462), - [anon_sym_take] = ACTIONS(462), - [anon_sym_48] = ACTIONS(462), - [anon_sym_drop] = ACTIONS(462), - [anon_sym_49] = ACTIONS(462), - [anon_sym_rotate] = ACTIONS(462), - [anon_sym_50] = ACTIONS(462), - [anon_sym_windows] = ACTIONS(462), - [anon_sym_51] = ACTIONS(462), - [anon_sym_keep] = ACTIONS(462), - [anon_sym_52] = ACTIONS(462), - [anon_sym_find] = ACTIONS(462), - [anon_sym_53] = ACTIONS(462), - [anon_sym_member] = ACTIONS(462), - [anon_sym_54] = ACTIONS(462), - [anon_sym_indexof] = ACTIONS(462), - [anon_sym_55] = ACTIONS(462), - [anon_sym_assert] = ACTIONS(462), - [anon_sym_56] = ACTIONS(462), - [anon_sym_wait] = ACTIONS(462), - [anon_sym_parse] = ACTIONS(462), - [anon_sym_random] = ACTIONS(462), - [anon_sym_57] = ACTIONS(462), - [anon_sym_gen] = ACTIONS(462), - [anon_sym_deal] = ACTIONS(462), - [anon_sym_tag] = ACTIONS(462), - [anon_sym_now] = ACTIONS(462), - [anon_sym_type] = ACTIONS(462), - [anon_sym_58] = ACTIONS(462), - [anon_sym_dump] = ACTIONS(462), - [anon_sym_regex] = ACTIONS(462), - [anon_sym_utf] = ACTIONS(462), - [anon_sym_send] = ACTIONS(462), - [anon_sym_recv] = ACTIONS(462), - [anon_sym_tryrecv] = ACTIONS(462), - [anon_sym_complex] = ACTIONS(462), - [anon_sym_59] = ACTIONS(462), - [anon_sym_rerank] = ACTIONS(462), - [anon_sym_60] = ACTIONS(462), - [anon_sym_fix] = ACTIONS(462), - [anon_sym_61] = ACTIONS(462), - [anon_sym_reduce] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(462), - [anon_sym_scan] = ACTIONS(462), - [anon_sym_BSLASH] = ACTIONS(462), - [anon_sym_each] = ACTIONS(462), - [anon_sym_62] = ACTIONS(462), - [anon_sym_rows] = ACTIONS(462), - [anon_sym_63] = ACTIONS(462), - [anon_sym_repeat] = ACTIONS(462), - [anon_sym_64] = ACTIONS(462), - [anon_sym_dip] = ACTIONS(462), - [anon_sym_65] = ACTIONS(462), - [anon_sym_gap] = ACTIONS(462), - [anon_sym_66] = ACTIONS(462), - [anon_sym_invert] = ACTIONS(462), - [anon_sym_67] = ACTIONS(462), - [anon_sym_spawn] = ACTIONS(462), - [anon_sym_pack] = ACTIONS(462), - [anon_sym_68] = ACTIONS(462), - [anon_sym_rectify] = ACTIONS(462), - [anon_sym_69] = ACTIONS(462), - [anon_sym_this] = ACTIONS(462), - [anon_sym_70] = ACTIONS(462), - [anon_sym_recur] = ACTIONS(462), - [anon_sym_71] = ACTIONS(462), - [anon_sym_fold] = ACTIONS(462), - [anon_sym_72] = ACTIONS(462), - [anon_sym_table] = ACTIONS(462), - [anon_sym_73] = ACTIONS(462), - [anon_sym_cross] = ACTIONS(462), - [anon_sym_74] = ACTIONS(462), - [anon_sym_group] = ACTIONS(462), - [anon_sym_75] = ACTIONS(462), - [anon_sym_partition] = ACTIONS(462), - [anon_sym_76] = ACTIONS(462), - [anon_sym_both] = ACTIONS(462), - [anon_sym_77] = ACTIONS(462), - [anon_sym_bracket] = ACTIONS(462), - [anon_sym_78] = ACTIONS(462), - [anon_sym_fork] = ACTIONS(462), - [anon_sym_79] = ACTIONS(462), - [anon_sym_under] = ACTIONS(462), - [anon_sym_80] = ACTIONS(462), - [anon_sym_fill] = ACTIONS(462), - [anon_sym_81] = ACTIONS(462), - [anon_sym_try] = ACTIONS(460), - [anon_sym_82] = ACTIONS(462), - [anon_sym_do] = ACTIONS(460), - [anon_sym_83] = ACTIONS(462), - [anon_sym_all] = ACTIONS(462), - [anon_sym_84] = ACTIONS(462), - [anon_sym_setinv] = ACTIONS(462), - [anon_sym_setunder] = ACTIONS(462), - [anon_sym_85] = ACTIONS(462), - [anon_sym_86] = ACTIONS(462), - [anon_sym_87] = ACTIONS(462), - [anon_sym_88] = ACTIONS(462), - [anon_sym_89] = ACTIONS(462), - [anon_sym_90] = ACTIONS(462), - [anon_sym_91] = ACTIONS(462), - [anon_sym_92] = ACTIONS(462), - [anon_sym_93] = ACTIONS(462), - [anon_sym_94] = ACTIONS(462), - [anon_sym_95] = ACTIONS(462), - [anon_sym_96] = ACTIONS(462), - [sym__endOfLine] = ACTIONS(462), - }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(502), - [aux_sym_number_token1] = ACTIONS(500), - [sym_fraction] = ACTIONS(502), - [anon_sym_os] = ACTIONS(500), - [anon_sym_Family] = ACTIONS(500), - [anon_sym_Arch] = ACTIONS(500), - [anon_sym_ExeExt] = ACTIONS(500), - [anon_sym_PllExt] = ACTIONS(500), - [anon_sym_Sep] = ACTIONS(500), - [anon_sym_NUmProcs] = ACTIONS(500), - [anon_sym_] = ACTIONS(502), - [aux_sym_character_token1] = ACTIONS(502), - [sym_string] = ACTIONS(502), - [sym_multiLineString] = ACTIONS(502), - [sym_identifier] = ACTIONS(500), - [sym_identifierDeprecated] = ACTIONS(500), - [sym_system] = ACTIONS(502), - [sym_comment] = ACTIONS(500), - [sym_openParen] = ACTIONS(502), - [sym_openCurly] = ACTIONS(502), - [sym_openBracket] = ACTIONS(502), - [sym_underscore] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_eta] = ACTIONS(502), - [anon_sym_2] = ACTIONS(500), - [anon_sym_pi] = ACTIONS(500), - [anon_sym_3] = ACTIONS(500), - [anon_sym_tau] = ACTIONS(502), - [anon_sym_4] = ACTIONS(500), - [anon_sym_infinity] = ACTIONS(502), - [anon_sym_5] = ACTIONS(502), - [anon_sym_e] = ACTIONS(500), - [anon_sym_NaN] = ACTIONS(500), - [anon_sym_NumProcs] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_COLON] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_identity] = ACTIONS(502), - [anon_sym_id] = ACTIONS(500), - [anon_sym_6] = ACTIONS(502), - [anon_sym_not] = ACTIONS(502), - [anon_sym_7] = ACTIONS(502), - [anon_sym_sign] = ACTIONS(502), - [anon_sym_8] = ACTIONS(502), - [anon_sym_BQUOTE] = ACTIONS(502), - [anon_sym_9] = ACTIONS(500), - [anon_sym_absolutevalue] = ACTIONS(502), - [anon_sym_10] = ACTIONS(502), - [anon_sym_sqrt] = ACTIONS(502), - [anon_sym_11] = ACTIONS(502), - [anon_sym_sine] = ACTIONS(502), - [anon_sym_12] = ACTIONS(502), - [anon_sym_floor] = ACTIONS(502), - [anon_sym_13] = ACTIONS(502), - [anon_sym_ceiling] = ACTIONS(502), - [anon_sym_14] = ACTIONS(502), - [anon_sym_round] = ACTIONS(502), - [anon_sym_15] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_16] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_17] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_18] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_19] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_20] = ACTIONS(502), - [anon_sym_modulus] = ACTIONS(502), - [anon_sym_21] = ACTIONS(502), - [anon_sym_power] = ACTIONS(502), - [anon_sym_22] = ACTIONS(502), - [anon_sym_logarithm] = ACTIONS(502), - [anon_sym_23] = ACTIONS(502), - [anon_sym_minimum] = ACTIONS(502), - [anon_sym_24] = ACTIONS(502), - [anon_sym_maximum] = ACTIONS(502), - [anon_sym_25] = ACTIONS(502), - [anon_sym_atangent] = ACTIONS(502), - [anon_sym_26] = ACTIONS(502), - [anon_sym_length] = ACTIONS(502), - [anon_sym_27] = ACTIONS(502), - [anon_sym_shape] = ACTIONS(502), - [anon_sym_28] = ACTIONS(502), - [anon_sym_range] = ACTIONS(502), - [anon_sym_29] = ACTIONS(502), - [anon_sym_first] = ACTIONS(502), - [anon_sym_30] = ACTIONS(502), - [anon_sym_reverse] = ACTIONS(502), - [anon_sym_31] = ACTIONS(502), - [anon_sym_deshape] = ACTIONS(502), - [anon_sym_32] = ACTIONS(502), - [anon_sym_bits] = ACTIONS(502), - [anon_sym_33] = ACTIONS(502), - [anon_sym_transpose] = ACTIONS(502), - [anon_sym_34] = ACTIONS(502), - [anon_sym_rise] = ACTIONS(502), - [anon_sym_35] = ACTIONS(502), - [anon_sym_fall] = ACTIONS(502), - [anon_sym_36] = ACTIONS(502), - [anon_sym_where] = ACTIONS(502), - [anon_sym_37] = ACTIONS(502), - [anon_sym_classify] = ACTIONS(502), - [anon_sym_38] = ACTIONS(502), - [anon_sym_deduplicate] = ACTIONS(502), - [anon_sym_39] = ACTIONS(502), - [anon_sym_box] = ACTIONS(502), - [anon_sym_40] = ACTIONS(502), - [anon_sym_unbox] = ACTIONS(502), - [anon_sym_41] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_42] = ACTIONS(502), - [anon_sym_couple] = ACTIONS(502), - [anon_sym_43] = ACTIONS(502), - [anon_sym_join] = ACTIONS(502), - [anon_sym_44] = ACTIONS(502), - [anon_sym_select] = ACTIONS(502), - [anon_sym_45] = ACTIONS(502), - [anon_sym_pick] = ACTIONS(502), - [anon_sym_46] = ACTIONS(502), - [anon_sym_reshape] = ACTIONS(502), - [anon_sym_47] = ACTIONS(502), - [anon_sym_take] = ACTIONS(502), - [anon_sym_48] = ACTIONS(502), - [anon_sym_drop] = ACTIONS(502), - [anon_sym_49] = ACTIONS(502), - [anon_sym_rotate] = ACTIONS(502), - [anon_sym_50] = ACTIONS(502), - [anon_sym_windows] = ACTIONS(502), - [anon_sym_51] = ACTIONS(502), - [anon_sym_keep] = ACTIONS(502), - [anon_sym_52] = ACTIONS(502), - [anon_sym_find] = ACTIONS(502), - [anon_sym_53] = ACTIONS(502), - [anon_sym_member] = ACTIONS(502), - [anon_sym_54] = ACTIONS(502), - [anon_sym_indexof] = ACTIONS(502), - [anon_sym_55] = ACTIONS(502), - [anon_sym_assert] = ACTIONS(502), - [anon_sym_56] = ACTIONS(502), - [anon_sym_wait] = ACTIONS(502), - [anon_sym_parse] = ACTIONS(502), - [anon_sym_random] = ACTIONS(502), - [anon_sym_57] = ACTIONS(502), - [anon_sym_gen] = ACTIONS(502), - [anon_sym_deal] = ACTIONS(502), - [anon_sym_tag] = ACTIONS(502), - [anon_sym_now] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_58] = ACTIONS(502), - [anon_sym_dump] = ACTIONS(502), - [anon_sym_regex] = ACTIONS(502), - [anon_sym_utf] = ACTIONS(502), - [anon_sym_send] = ACTIONS(502), - [anon_sym_recv] = ACTIONS(502), - [anon_sym_tryrecv] = ACTIONS(502), - [anon_sym_complex] = ACTIONS(502), - [anon_sym_59] = ACTIONS(502), - [anon_sym_rerank] = ACTIONS(502), - [anon_sym_60] = ACTIONS(502), - [anon_sym_fix] = ACTIONS(502), - [anon_sym_61] = ACTIONS(502), - [anon_sym_reduce] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_scan] = ACTIONS(502), - [anon_sym_BSLASH] = ACTIONS(502), - [anon_sym_each] = ACTIONS(502), - [anon_sym_62] = ACTIONS(502), - [anon_sym_rows] = ACTIONS(502), - [anon_sym_63] = ACTIONS(502), - [anon_sym_repeat] = ACTIONS(502), - [anon_sym_64] = ACTIONS(502), - [anon_sym_dip] = ACTIONS(502), - [anon_sym_65] = ACTIONS(502), - [anon_sym_gap] = ACTIONS(502), - [anon_sym_66] = ACTIONS(502), - [anon_sym_invert] = ACTIONS(502), - [anon_sym_67] = ACTIONS(502), - [anon_sym_spawn] = ACTIONS(502), - [anon_sym_pack] = ACTIONS(502), - [anon_sym_68] = ACTIONS(502), - [anon_sym_rectify] = ACTIONS(502), - [anon_sym_69] = ACTIONS(502), - [anon_sym_this] = ACTIONS(502), - [anon_sym_70] = ACTIONS(502), - [anon_sym_recur] = ACTIONS(502), - [anon_sym_71] = ACTIONS(502), - [anon_sym_fold] = ACTIONS(502), - [anon_sym_72] = ACTIONS(502), - [anon_sym_table] = ACTIONS(502), - [anon_sym_73] = ACTIONS(502), - [anon_sym_cross] = ACTIONS(502), - [anon_sym_74] = ACTIONS(502), - [anon_sym_group] = ACTIONS(502), - [anon_sym_75] = ACTIONS(502), - [anon_sym_partition] = ACTIONS(502), - [anon_sym_76] = ACTIONS(502), - [anon_sym_both] = ACTIONS(502), - [anon_sym_77] = ACTIONS(502), - [anon_sym_bracket] = ACTIONS(502), - [anon_sym_78] = ACTIONS(502), - [anon_sym_fork] = ACTIONS(502), - [anon_sym_79] = ACTIONS(502), - [anon_sym_under] = ACTIONS(502), - [anon_sym_80] = ACTIONS(502), - [anon_sym_fill] = ACTIONS(502), - [anon_sym_81] = ACTIONS(502), - [anon_sym_try] = ACTIONS(500), - [anon_sym_82] = ACTIONS(502), - [anon_sym_do] = ACTIONS(500), - [anon_sym_83] = ACTIONS(502), - [anon_sym_all] = ACTIONS(502), - [anon_sym_84] = ACTIONS(502), - [anon_sym_setinv] = ACTIONS(502), - [anon_sym_setunder] = ACTIONS(502), - [anon_sym_85] = ACTIONS(502), - [anon_sym_86] = ACTIONS(502), - [anon_sym_87] = ACTIONS(502), - [anon_sym_88] = ACTIONS(502), - [anon_sym_89] = ACTIONS(502), - [anon_sym_90] = ACTIONS(502), - [anon_sym_91] = ACTIONS(502), - [anon_sym_92] = ACTIONS(502), - [anon_sym_93] = ACTIONS(502), - [anon_sym_94] = ACTIONS(502), - [anon_sym_95] = ACTIONS(502), - [anon_sym_96] = ACTIONS(502), - [sym__endOfLine] = ACTIONS(502), - }, - [135] = { - [aux_sym_number_token1] = ACTIONS(572), - [sym_fraction] = ACTIONS(204), - [anon_sym_os] = ACTIONS(572), - [anon_sym_Family] = ACTIONS(572), - [anon_sym_Arch] = ACTIONS(572), - [anon_sym_ExeExt] = ACTIONS(572), - [anon_sym_PllExt] = ACTIONS(572), - [anon_sym_Sep] = ACTIONS(572), - [anon_sym_NUmProcs] = ACTIONS(572), - [anon_sym_] = ACTIONS(204), - [aux_sym_character_token1] = ACTIONS(204), - [sym_string] = ACTIONS(204), - [sym_multiLineString] = ACTIONS(204), - [sym_identifier] = ACTIONS(572), - [sym_identifierDeprecated] = ACTIONS(572), - [sym_system] = ACTIONS(204), - [sym_comment] = ACTIONS(572), - [sym_openParen] = ACTIONS(204), - [sym_openCurly] = ACTIONS(204), - [sym_closeCurly] = ACTIONS(204), - [sym_openBracket] = ACTIONS(204), - [sym_closeBracket] = ACTIONS(204), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_eta] = ACTIONS(204), - [anon_sym_2] = ACTIONS(572), - [anon_sym_pi] = ACTIONS(572), - [anon_sym_3] = ACTIONS(572), - [anon_sym_tau] = ACTIONS(204), - [anon_sym_4] = ACTIONS(572), - [anon_sym_infinity] = ACTIONS(204), - [anon_sym_5] = ACTIONS(204), - [anon_sym_e] = ACTIONS(572), - [anon_sym_NaN] = ACTIONS(572), - [anon_sym_NumProcs] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_COLON] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(204), - [anon_sym_identity] = ACTIONS(204), - [anon_sym_id] = ACTIONS(572), - [anon_sym_6] = ACTIONS(204), - [anon_sym_not] = ACTIONS(204), - [anon_sym_7] = ACTIONS(204), - [anon_sym_sign] = ACTIONS(204), - [anon_sym_8] = ACTIONS(204), - [anon_sym_BQUOTE] = ACTIONS(204), - [anon_sym_9] = ACTIONS(572), - [anon_sym_absolutevalue] = ACTIONS(204), - [anon_sym_10] = ACTIONS(204), - [anon_sym_sqrt] = ACTIONS(204), - [anon_sym_11] = ACTIONS(204), - [anon_sym_sine] = ACTIONS(204), - [anon_sym_12] = ACTIONS(204), - [anon_sym_floor] = ACTIONS(204), - [anon_sym_13] = ACTIONS(204), - [anon_sym_ceiling] = ACTIONS(204), - [anon_sym_14] = ACTIONS(204), - [anon_sym_round] = ACTIONS(204), - [anon_sym_15] = ACTIONS(204), - [anon_sym_EQ] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_16] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_17] = ACTIONS(204), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_18] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(204), - [anon_sym_DASH] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_19] = ACTIONS(204), - [anon_sym_PERCENT] = ACTIONS(204), - [anon_sym_20] = ACTIONS(204), - [anon_sym_modulus] = ACTIONS(204), - [anon_sym_21] = ACTIONS(204), - [anon_sym_power] = ACTIONS(204), - [anon_sym_22] = ACTIONS(204), - [anon_sym_logarithm] = ACTIONS(204), - [anon_sym_23] = ACTIONS(204), - [anon_sym_minimum] = ACTIONS(204), - [anon_sym_24] = ACTIONS(204), - [anon_sym_maximum] = ACTIONS(204), - [anon_sym_25] = ACTIONS(204), - [anon_sym_atangent] = ACTIONS(204), - [anon_sym_26] = ACTIONS(204), - [anon_sym_length] = ACTIONS(204), - [anon_sym_27] = ACTIONS(204), - [anon_sym_shape] = ACTIONS(204), - [anon_sym_28] = ACTIONS(204), - [anon_sym_range] = ACTIONS(204), - [anon_sym_29] = ACTIONS(204), - [anon_sym_first] = ACTIONS(204), - [anon_sym_30] = ACTIONS(204), - [anon_sym_reverse] = ACTIONS(204), - [anon_sym_31] = ACTIONS(204), - [anon_sym_deshape] = ACTIONS(204), - [anon_sym_32] = ACTIONS(204), - [anon_sym_bits] = ACTIONS(204), - [anon_sym_33] = ACTIONS(204), - [anon_sym_transpose] = ACTIONS(204), - [anon_sym_34] = ACTIONS(204), - [anon_sym_rise] = ACTIONS(204), - [anon_sym_35] = ACTIONS(204), - [anon_sym_fall] = ACTIONS(204), - [anon_sym_36] = ACTIONS(204), - [anon_sym_where] = ACTIONS(204), - [anon_sym_37] = ACTIONS(204), - [anon_sym_classify] = ACTIONS(204), - [anon_sym_38] = ACTIONS(204), - [anon_sym_deduplicate] = ACTIONS(204), - [anon_sym_39] = ACTIONS(204), - [anon_sym_box] = ACTIONS(204), - [anon_sym_40] = ACTIONS(204), - [anon_sym_unbox] = ACTIONS(204), - [anon_sym_41] = ACTIONS(204), - [anon_sym_match] = ACTIONS(204), - [anon_sym_42] = ACTIONS(204), - [anon_sym_couple] = ACTIONS(204), - [anon_sym_43] = ACTIONS(204), - [anon_sym_join] = ACTIONS(204), - [anon_sym_44] = ACTIONS(204), - [anon_sym_select] = ACTIONS(204), - [anon_sym_45] = ACTIONS(204), - [anon_sym_pick] = ACTIONS(204), - [anon_sym_46] = ACTIONS(204), - [anon_sym_reshape] = ACTIONS(204), - [anon_sym_47] = ACTIONS(204), - [anon_sym_take] = ACTIONS(204), - [anon_sym_48] = ACTIONS(204), - [anon_sym_drop] = ACTIONS(204), - [anon_sym_49] = ACTIONS(204), - [anon_sym_rotate] = ACTIONS(204), - [anon_sym_50] = ACTIONS(204), - [anon_sym_windows] = ACTIONS(204), - [anon_sym_51] = ACTIONS(204), - [anon_sym_keep] = ACTIONS(204), - [anon_sym_52] = ACTIONS(204), - [anon_sym_find] = ACTIONS(204), - [anon_sym_53] = ACTIONS(204), - [anon_sym_member] = ACTIONS(204), - [anon_sym_54] = ACTIONS(204), - [anon_sym_indexof] = ACTIONS(204), - [anon_sym_55] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_56] = ACTIONS(204), - [anon_sym_wait] = ACTIONS(204), - [anon_sym_parse] = ACTIONS(204), - [anon_sym_random] = ACTIONS(204), - [anon_sym_57] = ACTIONS(204), - [anon_sym_gen] = ACTIONS(204), - [anon_sym_deal] = ACTIONS(204), - [anon_sym_tag] = ACTIONS(204), - [anon_sym_now] = ACTIONS(204), - [anon_sym_type] = ACTIONS(204), - [anon_sym_58] = ACTIONS(204), - [anon_sym_dump] = ACTIONS(204), - [anon_sym_regex] = ACTIONS(204), - [anon_sym_utf] = ACTIONS(204), - [anon_sym_send] = ACTIONS(204), - [anon_sym_recv] = ACTIONS(204), - [anon_sym_tryrecv] = ACTIONS(204), - [anon_sym_complex] = ACTIONS(204), - [anon_sym_59] = ACTIONS(204), - [anon_sym_rerank] = ACTIONS(204), - [anon_sym_60] = ACTIONS(204), - [anon_sym_fix] = ACTIONS(204), - [anon_sym_61] = ACTIONS(204), - [anon_sym_reduce] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(204), - [anon_sym_scan] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(204), - [anon_sym_each] = ACTIONS(204), - [anon_sym_62] = ACTIONS(204), - [anon_sym_rows] = ACTIONS(204), - [anon_sym_63] = ACTIONS(204), - [anon_sym_repeat] = ACTIONS(204), - [anon_sym_64] = ACTIONS(204), - [anon_sym_dip] = ACTIONS(204), - [anon_sym_65] = ACTIONS(204), - [anon_sym_gap] = ACTIONS(204), - [anon_sym_66] = ACTIONS(204), - [anon_sym_invert] = ACTIONS(204), - [anon_sym_67] = ACTIONS(204), - [anon_sym_spawn] = ACTIONS(204), - [anon_sym_pack] = ACTIONS(204), - [anon_sym_68] = ACTIONS(204), - [anon_sym_rectify] = ACTIONS(204), - [anon_sym_69] = ACTIONS(204), - [anon_sym_this] = ACTIONS(204), - [anon_sym_70] = ACTIONS(204), - [anon_sym_recur] = ACTIONS(204), - [anon_sym_71] = ACTIONS(204), - [anon_sym_fold] = ACTIONS(204), - [anon_sym_72] = ACTIONS(204), - [anon_sym_table] = ACTIONS(204), - [anon_sym_73] = ACTIONS(204), - [anon_sym_cross] = ACTIONS(204), - [anon_sym_74] = ACTIONS(204), - [anon_sym_group] = ACTIONS(204), - [anon_sym_75] = ACTIONS(204), - [anon_sym_partition] = ACTIONS(204), - [anon_sym_76] = ACTIONS(204), - [anon_sym_both] = ACTIONS(204), - [anon_sym_77] = ACTIONS(204), - [anon_sym_bracket] = ACTIONS(204), - [anon_sym_78] = ACTIONS(204), - [anon_sym_fork] = ACTIONS(204), - [anon_sym_79] = ACTIONS(204), - [anon_sym_under] = ACTIONS(204), - [anon_sym_80] = ACTIONS(204), - [anon_sym_fill] = ACTIONS(204), - [anon_sym_81] = ACTIONS(204), - [anon_sym_try] = ACTIONS(572), - [anon_sym_82] = ACTIONS(204), - [anon_sym_do] = ACTIONS(572), - [anon_sym_83] = ACTIONS(204), - [anon_sym_all] = ACTIONS(204), - [anon_sym_84] = ACTIONS(204), - [anon_sym_setinv] = ACTIONS(204), - [anon_sym_setunder] = ACTIONS(204), - [anon_sym_85] = ACTIONS(204), - [anon_sym_86] = ACTIONS(204), - [anon_sym_87] = ACTIONS(204), - [anon_sym_88] = ACTIONS(204), - [anon_sym_89] = ACTIONS(204), - [anon_sym_90] = ACTIONS(204), - [anon_sym_91] = ACTIONS(204), - [anon_sym_92] = ACTIONS(204), - [anon_sym_93] = ACTIONS(204), - [anon_sym_94] = ACTIONS(204), - [anon_sym_95] = ACTIONS(204), - [anon_sym_96] = ACTIONS(204), - [sym__endOfLine] = ACTIONS(5), - }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(506), - [aux_sym_number_token1] = ACTIONS(504), - [sym_fraction] = ACTIONS(506), - [anon_sym_os] = ACTIONS(504), - [anon_sym_Family] = ACTIONS(504), - [anon_sym_Arch] = ACTIONS(504), - [anon_sym_ExeExt] = ACTIONS(504), - [anon_sym_PllExt] = ACTIONS(504), - [anon_sym_Sep] = ACTIONS(504), - [anon_sym_NUmProcs] = ACTIONS(504), - [anon_sym_] = ACTIONS(506), - [aux_sym_character_token1] = ACTIONS(506), - [sym_string] = ACTIONS(506), - [sym_multiLineString] = ACTIONS(506), - [sym_identifier] = ACTIONS(504), - [sym_identifierDeprecated] = ACTIONS(504), - [sym_system] = ACTIONS(506), - [sym_comment] = ACTIONS(504), - [sym_openParen] = ACTIONS(506), - [sym_openCurly] = ACTIONS(506), - [sym_openBracket] = ACTIONS(506), - [sym_underscore] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_eta] = ACTIONS(506), - [anon_sym_2] = ACTIONS(504), - [anon_sym_pi] = ACTIONS(504), - [anon_sym_3] = ACTIONS(504), - [anon_sym_tau] = ACTIONS(506), - [anon_sym_4] = ACTIONS(504), - [anon_sym_infinity] = ACTIONS(506), - [anon_sym_5] = ACTIONS(506), - [anon_sym_e] = ACTIONS(504), - [anon_sym_NaN] = ACTIONS(504), - [anon_sym_NumProcs] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_identity] = ACTIONS(506), - [anon_sym_id] = ACTIONS(504), - [anon_sym_6] = ACTIONS(506), - [anon_sym_not] = ACTIONS(506), - [anon_sym_7] = ACTIONS(506), - [anon_sym_sign] = ACTIONS(506), - [anon_sym_8] = ACTIONS(506), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_9] = ACTIONS(504), - [anon_sym_absolutevalue] = ACTIONS(506), - [anon_sym_10] = ACTIONS(506), - [anon_sym_sqrt] = ACTIONS(506), - [anon_sym_11] = ACTIONS(506), - [anon_sym_sine] = ACTIONS(506), - [anon_sym_12] = ACTIONS(506), - [anon_sym_floor] = ACTIONS(506), - [anon_sym_13] = ACTIONS(506), - [anon_sym_ceiling] = ACTIONS(506), - [anon_sym_14] = ACTIONS(506), - [anon_sym_round] = ACTIONS(506), - [anon_sym_15] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_16] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_17] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_18] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_19] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_20] = ACTIONS(506), - [anon_sym_modulus] = ACTIONS(506), - [anon_sym_21] = ACTIONS(506), - [anon_sym_power] = ACTIONS(506), - [anon_sym_22] = ACTIONS(506), - [anon_sym_logarithm] = ACTIONS(506), - [anon_sym_23] = ACTIONS(506), - [anon_sym_minimum] = ACTIONS(506), - [anon_sym_24] = ACTIONS(506), - [anon_sym_maximum] = ACTIONS(506), - [anon_sym_25] = ACTIONS(506), - [anon_sym_atangent] = ACTIONS(506), - [anon_sym_26] = ACTIONS(506), - [anon_sym_length] = ACTIONS(506), - [anon_sym_27] = ACTIONS(506), - [anon_sym_shape] = ACTIONS(506), - [anon_sym_28] = ACTIONS(506), - [anon_sym_range] = ACTIONS(506), - [anon_sym_29] = ACTIONS(506), - [anon_sym_first] = ACTIONS(506), - [anon_sym_30] = ACTIONS(506), - [anon_sym_reverse] = ACTIONS(506), - [anon_sym_31] = ACTIONS(506), - [anon_sym_deshape] = ACTIONS(506), - [anon_sym_32] = ACTIONS(506), - [anon_sym_bits] = ACTIONS(506), - [anon_sym_33] = ACTIONS(506), - [anon_sym_transpose] = ACTIONS(506), - [anon_sym_34] = ACTIONS(506), - [anon_sym_rise] = ACTIONS(506), - [anon_sym_35] = ACTIONS(506), - [anon_sym_fall] = ACTIONS(506), - [anon_sym_36] = ACTIONS(506), - [anon_sym_where] = ACTIONS(506), - [anon_sym_37] = ACTIONS(506), - [anon_sym_classify] = ACTIONS(506), - [anon_sym_38] = ACTIONS(506), - [anon_sym_deduplicate] = ACTIONS(506), - [anon_sym_39] = ACTIONS(506), - [anon_sym_box] = ACTIONS(506), - [anon_sym_40] = ACTIONS(506), - [anon_sym_unbox] = ACTIONS(506), - [anon_sym_41] = ACTIONS(506), - [anon_sym_match] = ACTIONS(506), - [anon_sym_42] = ACTIONS(506), - [anon_sym_couple] = ACTIONS(506), - [anon_sym_43] = ACTIONS(506), - [anon_sym_join] = ACTIONS(506), - [anon_sym_44] = ACTIONS(506), - [anon_sym_select] = ACTIONS(506), - [anon_sym_45] = ACTIONS(506), - [anon_sym_pick] = ACTIONS(506), - [anon_sym_46] = ACTIONS(506), - [anon_sym_reshape] = ACTIONS(506), - [anon_sym_47] = ACTIONS(506), - [anon_sym_take] = ACTIONS(506), - [anon_sym_48] = ACTIONS(506), - [anon_sym_drop] = ACTIONS(506), - [anon_sym_49] = ACTIONS(506), - [anon_sym_rotate] = ACTIONS(506), - [anon_sym_50] = ACTIONS(506), - [anon_sym_windows] = ACTIONS(506), - [anon_sym_51] = ACTIONS(506), - [anon_sym_keep] = ACTIONS(506), - [anon_sym_52] = ACTIONS(506), - [anon_sym_find] = ACTIONS(506), - [anon_sym_53] = ACTIONS(506), - [anon_sym_member] = ACTIONS(506), - [anon_sym_54] = ACTIONS(506), - [anon_sym_indexof] = ACTIONS(506), - [anon_sym_55] = ACTIONS(506), - [anon_sym_assert] = ACTIONS(506), - [anon_sym_56] = ACTIONS(506), - [anon_sym_wait] = ACTIONS(506), - [anon_sym_parse] = ACTIONS(506), - [anon_sym_random] = ACTIONS(506), - [anon_sym_57] = ACTIONS(506), - [anon_sym_gen] = ACTIONS(506), - [anon_sym_deal] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_now] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_58] = ACTIONS(506), - [anon_sym_dump] = ACTIONS(506), - [anon_sym_regex] = ACTIONS(506), - [anon_sym_utf] = ACTIONS(506), - [anon_sym_send] = ACTIONS(506), - [anon_sym_recv] = ACTIONS(506), - [anon_sym_tryrecv] = ACTIONS(506), - [anon_sym_complex] = ACTIONS(506), - [anon_sym_59] = ACTIONS(506), - [anon_sym_rerank] = ACTIONS(506), - [anon_sym_60] = ACTIONS(506), - [anon_sym_fix] = ACTIONS(506), - [anon_sym_61] = ACTIONS(506), - [anon_sym_reduce] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_scan] = ACTIONS(506), - [anon_sym_BSLASH] = ACTIONS(506), - [anon_sym_each] = ACTIONS(506), - [anon_sym_62] = ACTIONS(506), - [anon_sym_rows] = ACTIONS(506), - [anon_sym_63] = ACTIONS(506), - [anon_sym_repeat] = ACTIONS(506), - [anon_sym_64] = ACTIONS(506), - [anon_sym_dip] = ACTIONS(506), - [anon_sym_65] = ACTIONS(506), - [anon_sym_gap] = ACTIONS(506), - [anon_sym_66] = ACTIONS(506), - [anon_sym_invert] = ACTIONS(506), - [anon_sym_67] = ACTIONS(506), - [anon_sym_spawn] = ACTIONS(506), - [anon_sym_pack] = ACTIONS(506), - [anon_sym_68] = ACTIONS(506), - [anon_sym_rectify] = ACTIONS(506), - [anon_sym_69] = ACTIONS(506), - [anon_sym_this] = ACTIONS(506), - [anon_sym_70] = ACTIONS(506), - [anon_sym_recur] = ACTIONS(506), - [anon_sym_71] = ACTIONS(506), - [anon_sym_fold] = ACTIONS(506), - [anon_sym_72] = ACTIONS(506), - [anon_sym_table] = ACTIONS(506), - [anon_sym_73] = ACTIONS(506), - [anon_sym_cross] = ACTIONS(506), - [anon_sym_74] = ACTIONS(506), - [anon_sym_group] = ACTIONS(506), - [anon_sym_75] = ACTIONS(506), - [anon_sym_partition] = ACTIONS(506), - [anon_sym_76] = ACTIONS(506), - [anon_sym_both] = ACTIONS(506), - [anon_sym_77] = ACTIONS(506), - [anon_sym_bracket] = ACTIONS(506), - [anon_sym_78] = ACTIONS(506), - [anon_sym_fork] = ACTIONS(506), - [anon_sym_79] = ACTIONS(506), - [anon_sym_under] = ACTIONS(506), - [anon_sym_80] = ACTIONS(506), - [anon_sym_fill] = ACTIONS(506), - [anon_sym_81] = ACTIONS(506), - [anon_sym_try] = ACTIONS(504), - [anon_sym_82] = ACTIONS(506), - [anon_sym_do] = ACTIONS(504), - [anon_sym_83] = ACTIONS(506), - [anon_sym_all] = ACTIONS(506), - [anon_sym_84] = ACTIONS(506), - [anon_sym_setinv] = ACTIONS(506), - [anon_sym_setunder] = ACTIONS(506), - [anon_sym_85] = ACTIONS(506), - [anon_sym_86] = ACTIONS(506), - [anon_sym_87] = ACTIONS(506), - [anon_sym_88] = ACTIONS(506), - [anon_sym_89] = ACTIONS(506), - [anon_sym_90] = ACTIONS(506), - [anon_sym_91] = ACTIONS(506), - [anon_sym_92] = ACTIONS(506), - [anon_sym_93] = ACTIONS(506), - [anon_sym_94] = ACTIONS(506), - [anon_sym_95] = ACTIONS(506), - [anon_sym_96] = ACTIONS(506), - [sym__endOfLine] = ACTIONS(506), - }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(510), - [aux_sym_number_token1] = ACTIONS(508), - [sym_fraction] = ACTIONS(510), - [anon_sym_os] = ACTIONS(508), - [anon_sym_Family] = ACTIONS(508), - [anon_sym_Arch] = ACTIONS(508), - [anon_sym_ExeExt] = ACTIONS(508), - [anon_sym_PllExt] = ACTIONS(508), - [anon_sym_Sep] = ACTIONS(508), - [anon_sym_NUmProcs] = ACTIONS(508), - [anon_sym_] = ACTIONS(510), - [aux_sym_character_token1] = ACTIONS(510), - [sym_string] = ACTIONS(510), - [sym_multiLineString] = ACTIONS(510), - [sym_identifier] = ACTIONS(508), - [sym_identifierDeprecated] = ACTIONS(508), - [sym_system] = ACTIONS(510), - [sym_comment] = ACTIONS(508), - [sym_openParen] = ACTIONS(510), - [sym_openCurly] = ACTIONS(510), - [sym_openBracket] = ACTIONS(510), - [sym_underscore] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_eta] = ACTIONS(510), - [anon_sym_2] = ACTIONS(508), - [anon_sym_pi] = ACTIONS(508), - [anon_sym_3] = ACTIONS(508), - [anon_sym_tau] = ACTIONS(510), - [anon_sym_4] = ACTIONS(508), - [anon_sym_infinity] = ACTIONS(510), - [anon_sym_5] = ACTIONS(510), - [anon_sym_e] = ACTIONS(508), - [anon_sym_NaN] = ACTIONS(508), - [anon_sym_NumProcs] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_COMMA] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_identity] = ACTIONS(510), - [anon_sym_id] = ACTIONS(508), - [anon_sym_6] = ACTIONS(510), - [anon_sym_not] = ACTIONS(510), - [anon_sym_7] = ACTIONS(510), - [anon_sym_sign] = ACTIONS(510), - [anon_sym_8] = ACTIONS(510), - [anon_sym_BQUOTE] = ACTIONS(510), - [anon_sym_9] = ACTIONS(508), - [anon_sym_absolutevalue] = ACTIONS(510), - [anon_sym_10] = ACTIONS(510), - [anon_sym_sqrt] = ACTIONS(510), - [anon_sym_11] = ACTIONS(510), - [anon_sym_sine] = ACTIONS(510), - [anon_sym_12] = ACTIONS(510), - [anon_sym_floor] = ACTIONS(510), - [anon_sym_13] = ACTIONS(510), - [anon_sym_ceiling] = ACTIONS(510), - [anon_sym_14] = ACTIONS(510), - [anon_sym_round] = ACTIONS(510), - [anon_sym_15] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_16] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_17] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_18] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_19] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_20] = ACTIONS(510), - [anon_sym_modulus] = ACTIONS(510), - [anon_sym_21] = ACTIONS(510), - [anon_sym_power] = ACTIONS(510), - [anon_sym_22] = ACTIONS(510), - [anon_sym_logarithm] = ACTIONS(510), - [anon_sym_23] = ACTIONS(510), - [anon_sym_minimum] = ACTIONS(510), - [anon_sym_24] = ACTIONS(510), - [anon_sym_maximum] = ACTIONS(510), - [anon_sym_25] = ACTIONS(510), - [anon_sym_atangent] = ACTIONS(510), - [anon_sym_26] = ACTIONS(510), - [anon_sym_length] = ACTIONS(510), - [anon_sym_27] = ACTIONS(510), - [anon_sym_shape] = ACTIONS(510), - [anon_sym_28] = ACTIONS(510), - [anon_sym_range] = ACTIONS(510), - [anon_sym_29] = ACTIONS(510), - [anon_sym_first] = ACTIONS(510), - [anon_sym_30] = ACTIONS(510), - [anon_sym_reverse] = ACTIONS(510), - [anon_sym_31] = ACTIONS(510), - [anon_sym_deshape] = ACTIONS(510), - [anon_sym_32] = ACTIONS(510), - [anon_sym_bits] = ACTIONS(510), - [anon_sym_33] = ACTIONS(510), - [anon_sym_transpose] = ACTIONS(510), - [anon_sym_34] = ACTIONS(510), - [anon_sym_rise] = ACTIONS(510), - [anon_sym_35] = ACTIONS(510), - [anon_sym_fall] = ACTIONS(510), - [anon_sym_36] = ACTIONS(510), - [anon_sym_where] = ACTIONS(510), - [anon_sym_37] = ACTIONS(510), - [anon_sym_classify] = ACTIONS(510), - [anon_sym_38] = ACTIONS(510), - [anon_sym_deduplicate] = ACTIONS(510), - [anon_sym_39] = ACTIONS(510), - [anon_sym_box] = ACTIONS(510), - [anon_sym_40] = ACTIONS(510), - [anon_sym_unbox] = ACTIONS(510), - [anon_sym_41] = ACTIONS(510), - [anon_sym_match] = ACTIONS(510), - [anon_sym_42] = ACTIONS(510), - [anon_sym_couple] = ACTIONS(510), - [anon_sym_43] = ACTIONS(510), - [anon_sym_join] = ACTIONS(510), - [anon_sym_44] = ACTIONS(510), - [anon_sym_select] = ACTIONS(510), - [anon_sym_45] = ACTIONS(510), - [anon_sym_pick] = ACTIONS(510), - [anon_sym_46] = ACTIONS(510), - [anon_sym_reshape] = ACTIONS(510), - [anon_sym_47] = ACTIONS(510), - [anon_sym_take] = ACTIONS(510), - [anon_sym_48] = ACTIONS(510), - [anon_sym_drop] = ACTIONS(510), - [anon_sym_49] = ACTIONS(510), - [anon_sym_rotate] = ACTIONS(510), - [anon_sym_50] = ACTIONS(510), - [anon_sym_windows] = ACTIONS(510), - [anon_sym_51] = ACTIONS(510), - [anon_sym_keep] = ACTIONS(510), - [anon_sym_52] = ACTIONS(510), - [anon_sym_find] = ACTIONS(510), - [anon_sym_53] = ACTIONS(510), - [anon_sym_member] = ACTIONS(510), - [anon_sym_54] = ACTIONS(510), - [anon_sym_indexof] = ACTIONS(510), - [anon_sym_55] = ACTIONS(510), - [anon_sym_assert] = ACTIONS(510), - [anon_sym_56] = ACTIONS(510), - [anon_sym_wait] = ACTIONS(510), - [anon_sym_parse] = ACTIONS(510), - [anon_sym_random] = ACTIONS(510), - [anon_sym_57] = ACTIONS(510), - [anon_sym_gen] = ACTIONS(510), - [anon_sym_deal] = ACTIONS(510), - [anon_sym_tag] = ACTIONS(510), - [anon_sym_now] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_58] = ACTIONS(510), - [anon_sym_dump] = ACTIONS(510), - [anon_sym_regex] = ACTIONS(510), - [anon_sym_utf] = ACTIONS(510), - [anon_sym_send] = ACTIONS(510), - [anon_sym_recv] = ACTIONS(510), - [anon_sym_tryrecv] = ACTIONS(510), - [anon_sym_complex] = ACTIONS(510), - [anon_sym_59] = ACTIONS(510), - [anon_sym_rerank] = ACTIONS(510), - [anon_sym_60] = ACTIONS(510), - [anon_sym_fix] = ACTIONS(510), - [anon_sym_61] = ACTIONS(510), - [anon_sym_reduce] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_scan] = ACTIONS(510), - [anon_sym_BSLASH] = ACTIONS(510), - [anon_sym_each] = ACTIONS(510), - [anon_sym_62] = ACTIONS(510), - [anon_sym_rows] = ACTIONS(510), - [anon_sym_63] = ACTIONS(510), - [anon_sym_repeat] = ACTIONS(510), - [anon_sym_64] = ACTIONS(510), - [anon_sym_dip] = ACTIONS(510), - [anon_sym_65] = ACTIONS(510), - [anon_sym_gap] = ACTIONS(510), - [anon_sym_66] = ACTIONS(510), - [anon_sym_invert] = ACTIONS(510), - [anon_sym_67] = ACTIONS(510), - [anon_sym_spawn] = ACTIONS(510), - [anon_sym_pack] = ACTIONS(510), - [anon_sym_68] = ACTIONS(510), - [anon_sym_rectify] = ACTIONS(510), - [anon_sym_69] = ACTIONS(510), - [anon_sym_this] = ACTIONS(510), - [anon_sym_70] = ACTIONS(510), - [anon_sym_recur] = ACTIONS(510), - [anon_sym_71] = ACTIONS(510), - [anon_sym_fold] = ACTIONS(510), - [anon_sym_72] = ACTIONS(510), - [anon_sym_table] = ACTIONS(510), - [anon_sym_73] = ACTIONS(510), - [anon_sym_cross] = ACTIONS(510), - [anon_sym_74] = ACTIONS(510), - [anon_sym_group] = ACTIONS(510), - [anon_sym_75] = ACTIONS(510), - [anon_sym_partition] = ACTIONS(510), - [anon_sym_76] = ACTIONS(510), - [anon_sym_both] = ACTIONS(510), - [anon_sym_77] = ACTIONS(510), - [anon_sym_bracket] = ACTIONS(510), - [anon_sym_78] = ACTIONS(510), - [anon_sym_fork] = ACTIONS(510), - [anon_sym_79] = ACTIONS(510), - [anon_sym_under] = ACTIONS(510), - [anon_sym_80] = ACTIONS(510), - [anon_sym_fill] = ACTIONS(510), - [anon_sym_81] = ACTIONS(510), - [anon_sym_try] = ACTIONS(508), - [anon_sym_82] = ACTIONS(510), - [anon_sym_do] = ACTIONS(508), - [anon_sym_83] = ACTIONS(510), - [anon_sym_all] = ACTIONS(510), - [anon_sym_84] = ACTIONS(510), - [anon_sym_setinv] = ACTIONS(510), - [anon_sym_setunder] = ACTIONS(510), - [anon_sym_85] = ACTIONS(510), - [anon_sym_86] = ACTIONS(510), - [anon_sym_87] = ACTIONS(510), - [anon_sym_88] = ACTIONS(510), - [anon_sym_89] = ACTIONS(510), - [anon_sym_90] = ACTIONS(510), - [anon_sym_91] = ACTIONS(510), - [anon_sym_92] = ACTIONS(510), - [anon_sym_93] = ACTIONS(510), - [anon_sym_94] = ACTIONS(510), - [anon_sym_95] = ACTIONS(510), - [anon_sym_96] = ACTIONS(510), - [sym__endOfLine] = ACTIONS(510), - }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(514), - [aux_sym_number_token1] = ACTIONS(512), - [sym_fraction] = ACTIONS(514), - [anon_sym_os] = ACTIONS(512), - [anon_sym_Family] = ACTIONS(512), - [anon_sym_Arch] = ACTIONS(512), - [anon_sym_ExeExt] = ACTIONS(512), - [anon_sym_PllExt] = ACTIONS(512), - [anon_sym_Sep] = ACTIONS(512), - [anon_sym_NUmProcs] = ACTIONS(512), - [anon_sym_] = ACTIONS(514), - [aux_sym_character_token1] = ACTIONS(514), - [sym_string] = ACTIONS(514), - [sym_multiLineString] = ACTIONS(514), - [sym_identifier] = ACTIONS(512), - [sym_identifierDeprecated] = ACTIONS(512), - [sym_system] = ACTIONS(514), - [sym_comment] = ACTIONS(512), - [sym_openParen] = ACTIONS(514), - [sym_openCurly] = ACTIONS(514), - [sym_openBracket] = ACTIONS(514), - [sym_underscore] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_eta] = ACTIONS(514), - [anon_sym_2] = ACTIONS(512), - [anon_sym_pi] = ACTIONS(512), - [anon_sym_3] = ACTIONS(512), - [anon_sym_tau] = ACTIONS(514), - [anon_sym_4] = ACTIONS(512), - [anon_sym_infinity] = ACTIONS(514), - [anon_sym_5] = ACTIONS(514), - [anon_sym_e] = ACTIONS(512), - [anon_sym_NaN] = ACTIONS(512), - [anon_sym_NumProcs] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(514), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_identity] = ACTIONS(514), - [anon_sym_id] = ACTIONS(512), - [anon_sym_6] = ACTIONS(514), - [anon_sym_not] = ACTIONS(514), - [anon_sym_7] = ACTIONS(514), - [anon_sym_sign] = ACTIONS(514), - [anon_sym_8] = ACTIONS(514), - [anon_sym_BQUOTE] = ACTIONS(514), - [anon_sym_9] = ACTIONS(512), - [anon_sym_absolutevalue] = ACTIONS(514), - [anon_sym_10] = ACTIONS(514), - [anon_sym_sqrt] = ACTIONS(514), - [anon_sym_11] = ACTIONS(514), - [anon_sym_sine] = ACTIONS(514), - [anon_sym_12] = ACTIONS(514), - [anon_sym_floor] = ACTIONS(514), - [anon_sym_13] = ACTIONS(514), - [anon_sym_ceiling] = ACTIONS(514), - [anon_sym_14] = ACTIONS(514), - [anon_sym_round] = ACTIONS(514), - [anon_sym_15] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ] = ACTIONS(514), - [anon_sym_16] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(514), - [anon_sym_17] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(514), - [anon_sym_18] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_19] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_20] = ACTIONS(514), - [anon_sym_modulus] = ACTIONS(514), - [anon_sym_21] = ACTIONS(514), - [anon_sym_power] = ACTIONS(514), - [anon_sym_22] = ACTIONS(514), - [anon_sym_logarithm] = ACTIONS(514), - [anon_sym_23] = ACTIONS(514), - [anon_sym_minimum] = ACTIONS(514), - [anon_sym_24] = ACTIONS(514), - [anon_sym_maximum] = ACTIONS(514), - [anon_sym_25] = ACTIONS(514), - [anon_sym_atangent] = ACTIONS(514), - [anon_sym_26] = ACTIONS(514), - [anon_sym_length] = ACTIONS(514), - [anon_sym_27] = ACTIONS(514), - [anon_sym_shape] = ACTIONS(514), - [anon_sym_28] = ACTIONS(514), - [anon_sym_range] = ACTIONS(514), - [anon_sym_29] = ACTIONS(514), - [anon_sym_first] = ACTIONS(514), - [anon_sym_30] = ACTIONS(514), - [anon_sym_reverse] = ACTIONS(514), - [anon_sym_31] = ACTIONS(514), - [anon_sym_deshape] = ACTIONS(514), - [anon_sym_32] = ACTIONS(514), - [anon_sym_bits] = ACTIONS(514), - [anon_sym_33] = ACTIONS(514), - [anon_sym_transpose] = ACTIONS(514), - [anon_sym_34] = ACTIONS(514), - [anon_sym_rise] = ACTIONS(514), - [anon_sym_35] = ACTIONS(514), - [anon_sym_fall] = ACTIONS(514), - [anon_sym_36] = ACTIONS(514), - [anon_sym_where] = ACTIONS(514), - [anon_sym_37] = ACTIONS(514), - [anon_sym_classify] = ACTIONS(514), - [anon_sym_38] = ACTIONS(514), - [anon_sym_deduplicate] = ACTIONS(514), - [anon_sym_39] = ACTIONS(514), - [anon_sym_box] = ACTIONS(514), - [anon_sym_40] = ACTIONS(514), - [anon_sym_unbox] = ACTIONS(514), - [anon_sym_41] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_42] = ACTIONS(514), - [anon_sym_couple] = ACTIONS(514), - [anon_sym_43] = ACTIONS(514), - [anon_sym_join] = ACTIONS(514), - [anon_sym_44] = ACTIONS(514), - [anon_sym_select] = ACTIONS(514), - [anon_sym_45] = ACTIONS(514), - [anon_sym_pick] = ACTIONS(514), - [anon_sym_46] = ACTIONS(514), - [anon_sym_reshape] = ACTIONS(514), - [anon_sym_47] = ACTIONS(514), - [anon_sym_take] = ACTIONS(514), - [anon_sym_48] = ACTIONS(514), - [anon_sym_drop] = ACTIONS(514), - [anon_sym_49] = ACTIONS(514), - [anon_sym_rotate] = ACTIONS(514), - [anon_sym_50] = ACTIONS(514), - [anon_sym_windows] = ACTIONS(514), - [anon_sym_51] = ACTIONS(514), - [anon_sym_keep] = ACTIONS(514), - [anon_sym_52] = ACTIONS(514), - [anon_sym_find] = ACTIONS(514), - [anon_sym_53] = ACTIONS(514), - [anon_sym_member] = ACTIONS(514), - [anon_sym_54] = ACTIONS(514), - [anon_sym_indexof] = ACTIONS(514), - [anon_sym_55] = ACTIONS(514), - [anon_sym_assert] = ACTIONS(514), - [anon_sym_56] = ACTIONS(514), - [anon_sym_wait] = ACTIONS(514), - [anon_sym_parse] = ACTIONS(514), - [anon_sym_random] = ACTIONS(514), - [anon_sym_57] = ACTIONS(514), - [anon_sym_gen] = ACTIONS(514), - [anon_sym_deal] = ACTIONS(514), - [anon_sym_tag] = ACTIONS(514), - [anon_sym_now] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_58] = ACTIONS(514), - [anon_sym_dump] = ACTIONS(514), - [anon_sym_regex] = ACTIONS(514), - [anon_sym_utf] = ACTIONS(514), - [anon_sym_send] = ACTIONS(514), - [anon_sym_recv] = ACTIONS(514), - [anon_sym_tryrecv] = ACTIONS(514), - [anon_sym_complex] = ACTIONS(514), - [anon_sym_59] = ACTIONS(514), - [anon_sym_rerank] = ACTIONS(514), - [anon_sym_60] = ACTIONS(514), - [anon_sym_fix] = ACTIONS(514), - [anon_sym_61] = ACTIONS(514), - [anon_sym_reduce] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_scan] = ACTIONS(514), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_each] = ACTIONS(514), - [anon_sym_62] = ACTIONS(514), - [anon_sym_rows] = ACTIONS(514), - [anon_sym_63] = ACTIONS(514), - [anon_sym_repeat] = ACTIONS(514), - [anon_sym_64] = ACTIONS(514), - [anon_sym_dip] = ACTIONS(514), - [anon_sym_65] = ACTIONS(514), - [anon_sym_gap] = ACTIONS(514), - [anon_sym_66] = ACTIONS(514), - [anon_sym_invert] = ACTIONS(514), - [anon_sym_67] = ACTIONS(514), - [anon_sym_spawn] = ACTIONS(514), - [anon_sym_pack] = ACTIONS(514), - [anon_sym_68] = ACTIONS(514), - [anon_sym_rectify] = ACTIONS(514), - [anon_sym_69] = ACTIONS(514), - [anon_sym_this] = ACTIONS(514), - [anon_sym_70] = ACTIONS(514), - [anon_sym_recur] = ACTIONS(514), - [anon_sym_71] = ACTIONS(514), - [anon_sym_fold] = ACTIONS(514), - [anon_sym_72] = ACTIONS(514), - [anon_sym_table] = ACTIONS(514), - [anon_sym_73] = ACTIONS(514), - [anon_sym_cross] = ACTIONS(514), - [anon_sym_74] = ACTIONS(514), - [anon_sym_group] = ACTIONS(514), - [anon_sym_75] = ACTIONS(514), - [anon_sym_partition] = ACTIONS(514), - [anon_sym_76] = ACTIONS(514), - [anon_sym_both] = ACTIONS(514), - [anon_sym_77] = ACTIONS(514), - [anon_sym_bracket] = ACTIONS(514), - [anon_sym_78] = ACTIONS(514), - [anon_sym_fork] = ACTIONS(514), - [anon_sym_79] = ACTIONS(514), - [anon_sym_under] = ACTIONS(514), - [anon_sym_80] = ACTIONS(514), - [anon_sym_fill] = ACTIONS(514), - [anon_sym_81] = ACTIONS(514), - [anon_sym_try] = ACTIONS(512), - [anon_sym_82] = ACTIONS(514), - [anon_sym_do] = ACTIONS(512), - [anon_sym_83] = ACTIONS(514), - [anon_sym_all] = ACTIONS(514), - [anon_sym_84] = ACTIONS(514), - [anon_sym_setinv] = ACTIONS(514), - [anon_sym_setunder] = ACTIONS(514), - [anon_sym_85] = ACTIONS(514), - [anon_sym_86] = ACTIONS(514), - [anon_sym_87] = ACTIONS(514), - [anon_sym_88] = ACTIONS(514), - [anon_sym_89] = ACTIONS(514), - [anon_sym_90] = ACTIONS(514), - [anon_sym_91] = ACTIONS(514), - [anon_sym_92] = ACTIONS(514), - [anon_sym_93] = ACTIONS(514), - [anon_sym_94] = ACTIONS(514), - [anon_sym_95] = ACTIONS(514), - [anon_sym_96] = ACTIONS(514), - [sym__endOfLine] = ACTIONS(514), - }, - [139] = { - [ts_builtin_sym_end] = ACTIONS(526), - [aux_sym_number_token1] = ACTIONS(524), - [sym_fraction] = ACTIONS(526), - [anon_sym_os] = ACTIONS(524), - [anon_sym_Family] = ACTIONS(524), - [anon_sym_Arch] = ACTIONS(524), - [anon_sym_ExeExt] = ACTIONS(524), - [anon_sym_PllExt] = ACTIONS(524), - [anon_sym_Sep] = ACTIONS(524), - [anon_sym_NUmProcs] = ACTIONS(524), - [anon_sym_] = ACTIONS(526), - [aux_sym_character_token1] = ACTIONS(526), - [sym_string] = ACTIONS(526), - [sym_multiLineString] = ACTIONS(526), - [sym_identifier] = ACTIONS(524), - [sym_identifierDeprecated] = ACTIONS(524), - [sym_system] = ACTIONS(526), - [sym_comment] = ACTIONS(524), - [sym_openParen] = ACTIONS(526), - [sym_openCurly] = ACTIONS(526), - [sym_openBracket] = ACTIONS(526), - [sym_underscore] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(526), - [anon_sym_eta] = ACTIONS(526), - [anon_sym_2] = ACTIONS(524), - [anon_sym_pi] = ACTIONS(524), - [anon_sym_3] = ACTIONS(524), - [anon_sym_tau] = ACTIONS(526), - [anon_sym_4] = ACTIONS(524), - [anon_sym_infinity] = ACTIONS(526), - [anon_sym_5] = ACTIONS(526), - [anon_sym_e] = ACTIONS(524), - [anon_sym_NaN] = ACTIONS(524), - [anon_sym_NumProcs] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_COLON] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_identity] = ACTIONS(526), - [anon_sym_id] = ACTIONS(524), - [anon_sym_6] = ACTIONS(526), - [anon_sym_not] = ACTIONS(526), - [anon_sym_7] = ACTIONS(526), - [anon_sym_sign] = ACTIONS(526), - [anon_sym_8] = ACTIONS(526), - [anon_sym_BQUOTE] = ACTIONS(526), - [anon_sym_9] = ACTIONS(524), - [anon_sym_absolutevalue] = ACTIONS(526), - [anon_sym_10] = ACTIONS(526), - [anon_sym_sqrt] = ACTIONS(526), - [anon_sym_11] = ACTIONS(526), - [anon_sym_sine] = ACTIONS(526), - [anon_sym_12] = ACTIONS(526), - [anon_sym_floor] = ACTIONS(526), - [anon_sym_13] = ACTIONS(526), - [anon_sym_ceiling] = ACTIONS(526), - [anon_sym_14] = ACTIONS(526), - [anon_sym_round] = ACTIONS(526), - [anon_sym_15] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_16] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_17] = ACTIONS(526), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_18] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_19] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(526), - [anon_sym_20] = ACTIONS(526), - [anon_sym_modulus] = ACTIONS(526), - [anon_sym_21] = ACTIONS(526), - [anon_sym_power] = ACTIONS(526), - [anon_sym_22] = ACTIONS(526), - [anon_sym_logarithm] = ACTIONS(526), - [anon_sym_23] = ACTIONS(526), - [anon_sym_minimum] = ACTIONS(526), - [anon_sym_24] = ACTIONS(526), - [anon_sym_maximum] = ACTIONS(526), - [anon_sym_25] = ACTIONS(526), - [anon_sym_atangent] = ACTIONS(526), - [anon_sym_26] = ACTIONS(526), - [anon_sym_length] = ACTIONS(526), - [anon_sym_27] = ACTIONS(526), - [anon_sym_shape] = ACTIONS(526), - [anon_sym_28] = ACTIONS(526), - [anon_sym_range] = ACTIONS(526), - [anon_sym_29] = ACTIONS(526), - [anon_sym_first] = ACTIONS(526), - [anon_sym_30] = ACTIONS(526), - [anon_sym_reverse] = ACTIONS(526), - [anon_sym_31] = ACTIONS(526), - [anon_sym_deshape] = ACTIONS(526), - [anon_sym_32] = ACTIONS(526), - [anon_sym_bits] = ACTIONS(526), - [anon_sym_33] = ACTIONS(526), - [anon_sym_transpose] = ACTIONS(526), - [anon_sym_34] = ACTIONS(526), - [anon_sym_rise] = ACTIONS(526), - [anon_sym_35] = ACTIONS(526), - [anon_sym_fall] = ACTIONS(526), - [anon_sym_36] = ACTIONS(526), - [anon_sym_where] = ACTIONS(526), - [anon_sym_37] = ACTIONS(526), - [anon_sym_classify] = ACTIONS(526), - [anon_sym_38] = ACTIONS(526), - [anon_sym_deduplicate] = ACTIONS(526), - [anon_sym_39] = ACTIONS(526), - [anon_sym_box] = ACTIONS(526), - [anon_sym_40] = ACTIONS(526), - [anon_sym_unbox] = ACTIONS(526), - [anon_sym_41] = ACTIONS(526), - [anon_sym_match] = ACTIONS(526), - [anon_sym_42] = ACTIONS(526), - [anon_sym_couple] = ACTIONS(526), - [anon_sym_43] = ACTIONS(526), - [anon_sym_join] = ACTIONS(526), - [anon_sym_44] = ACTIONS(526), - [anon_sym_select] = ACTIONS(526), - [anon_sym_45] = ACTIONS(526), - [anon_sym_pick] = ACTIONS(526), - [anon_sym_46] = ACTIONS(526), - [anon_sym_reshape] = ACTIONS(526), - [anon_sym_47] = ACTIONS(526), - [anon_sym_take] = ACTIONS(526), - [anon_sym_48] = ACTIONS(526), - [anon_sym_drop] = ACTIONS(526), - [anon_sym_49] = ACTIONS(526), - [anon_sym_rotate] = ACTIONS(526), - [anon_sym_50] = ACTIONS(526), - [anon_sym_windows] = ACTIONS(526), - [anon_sym_51] = ACTIONS(526), - [anon_sym_keep] = ACTIONS(526), - [anon_sym_52] = ACTIONS(526), - [anon_sym_find] = ACTIONS(526), - [anon_sym_53] = ACTIONS(526), - [anon_sym_member] = ACTIONS(526), - [anon_sym_54] = ACTIONS(526), - [anon_sym_indexof] = ACTIONS(526), - [anon_sym_55] = ACTIONS(526), - [anon_sym_assert] = ACTIONS(526), - [anon_sym_56] = ACTIONS(526), - [anon_sym_wait] = ACTIONS(526), - [anon_sym_parse] = ACTIONS(526), - [anon_sym_random] = ACTIONS(526), - [anon_sym_57] = ACTIONS(526), - [anon_sym_gen] = ACTIONS(526), - [anon_sym_deal] = ACTIONS(526), - [anon_sym_tag] = ACTIONS(526), - [anon_sym_now] = ACTIONS(526), - [anon_sym_type] = ACTIONS(526), - [anon_sym_58] = ACTIONS(526), - [anon_sym_dump] = ACTIONS(526), - [anon_sym_regex] = ACTIONS(526), - [anon_sym_utf] = ACTIONS(526), - [anon_sym_send] = ACTIONS(526), - [anon_sym_recv] = ACTIONS(526), - [anon_sym_tryrecv] = ACTIONS(526), - [anon_sym_complex] = ACTIONS(526), - [anon_sym_59] = ACTIONS(526), - [anon_sym_rerank] = ACTIONS(526), - [anon_sym_60] = ACTIONS(526), - [anon_sym_fix] = ACTIONS(526), - [anon_sym_61] = ACTIONS(526), - [anon_sym_reduce] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_scan] = ACTIONS(526), - [anon_sym_BSLASH] = ACTIONS(526), - [anon_sym_each] = ACTIONS(526), - [anon_sym_62] = ACTIONS(526), - [anon_sym_rows] = ACTIONS(526), - [anon_sym_63] = ACTIONS(526), - [anon_sym_repeat] = ACTIONS(526), - [anon_sym_64] = ACTIONS(526), - [anon_sym_dip] = ACTIONS(526), - [anon_sym_65] = ACTIONS(526), - [anon_sym_gap] = ACTIONS(526), - [anon_sym_66] = ACTIONS(526), - [anon_sym_invert] = ACTIONS(526), - [anon_sym_67] = ACTIONS(526), - [anon_sym_spawn] = ACTIONS(526), - [anon_sym_pack] = ACTIONS(526), - [anon_sym_68] = ACTIONS(526), - [anon_sym_rectify] = ACTIONS(526), - [anon_sym_69] = ACTIONS(526), - [anon_sym_this] = ACTIONS(526), - [anon_sym_70] = ACTIONS(526), - [anon_sym_recur] = ACTIONS(526), - [anon_sym_71] = ACTIONS(526), - [anon_sym_fold] = ACTIONS(526), - [anon_sym_72] = ACTIONS(526), - [anon_sym_table] = ACTIONS(526), - [anon_sym_73] = ACTIONS(526), - [anon_sym_cross] = ACTIONS(526), - [anon_sym_74] = ACTIONS(526), - [anon_sym_group] = ACTIONS(526), - [anon_sym_75] = ACTIONS(526), - [anon_sym_partition] = ACTIONS(526), - [anon_sym_76] = ACTIONS(526), - [anon_sym_both] = ACTIONS(526), - [anon_sym_77] = ACTIONS(526), - [anon_sym_bracket] = ACTIONS(526), - [anon_sym_78] = ACTIONS(526), - [anon_sym_fork] = ACTIONS(526), - [anon_sym_79] = ACTIONS(526), - [anon_sym_under] = ACTIONS(526), - [anon_sym_80] = ACTIONS(526), - [anon_sym_fill] = ACTIONS(526), - [anon_sym_81] = ACTIONS(526), - [anon_sym_try] = ACTIONS(524), - [anon_sym_82] = ACTIONS(526), - [anon_sym_do] = ACTIONS(524), - [anon_sym_83] = ACTIONS(526), - [anon_sym_all] = ACTIONS(526), - [anon_sym_84] = ACTIONS(526), - [anon_sym_setinv] = ACTIONS(526), - [anon_sym_setunder] = ACTIONS(526), - [anon_sym_85] = ACTIONS(526), - [anon_sym_86] = ACTIONS(526), - [anon_sym_87] = ACTIONS(526), - [anon_sym_88] = ACTIONS(526), - [anon_sym_89] = ACTIONS(526), - [anon_sym_90] = ACTIONS(526), - [anon_sym_91] = ACTIONS(526), - [anon_sym_92] = ACTIONS(526), - [anon_sym_93] = ACTIONS(526), - [anon_sym_94] = ACTIONS(526), - [anon_sym_95] = ACTIONS(526), - [anon_sym_96] = ACTIONS(526), - [sym__endOfLine] = ACTIONS(526), - }, - [140] = { - [ts_builtin_sym_end] = ACTIONS(482), - [aux_sym_number_token1] = ACTIONS(480), - [sym_fraction] = ACTIONS(482), - [anon_sym_os] = ACTIONS(480), - [anon_sym_Family] = ACTIONS(480), - [anon_sym_Arch] = ACTIONS(480), - [anon_sym_ExeExt] = ACTIONS(480), - [anon_sym_PllExt] = ACTIONS(480), - [anon_sym_Sep] = ACTIONS(480), - [anon_sym_NUmProcs] = ACTIONS(480), - [anon_sym_] = ACTIONS(482), - [aux_sym_character_token1] = ACTIONS(482), - [sym_string] = ACTIONS(482), - [sym_multiLineString] = ACTIONS(482), - [sym_identifier] = ACTIONS(480), - [sym_identifierDeprecated] = ACTIONS(480), - [sym_system] = ACTIONS(482), - [sym_comment] = ACTIONS(480), - [sym_openParen] = ACTIONS(482), - [sym_openCurly] = ACTIONS(482), - [sym_openBracket] = ACTIONS(482), - [sym_underscore] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(482), - [anon_sym_eta] = ACTIONS(482), - [anon_sym_2] = ACTIONS(480), - [anon_sym_pi] = ACTIONS(480), - [anon_sym_3] = ACTIONS(480), - [anon_sym_tau] = ACTIONS(482), - [anon_sym_4] = ACTIONS(480), - [anon_sym_infinity] = ACTIONS(482), - [anon_sym_5] = ACTIONS(482), - [anon_sym_e] = ACTIONS(480), - [anon_sym_NaN] = ACTIONS(480), - [anon_sym_NumProcs] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_COLON] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_identity] = ACTIONS(482), - [anon_sym_id] = ACTIONS(480), - [anon_sym_6] = ACTIONS(482), - [anon_sym_not] = ACTIONS(482), - [anon_sym_7] = ACTIONS(482), - [anon_sym_sign] = ACTIONS(482), - [anon_sym_8] = ACTIONS(482), - [anon_sym_BQUOTE] = ACTIONS(482), - [anon_sym_9] = ACTIONS(480), - [anon_sym_absolutevalue] = ACTIONS(482), - [anon_sym_10] = ACTIONS(482), - [anon_sym_sqrt] = ACTIONS(482), - [anon_sym_11] = ACTIONS(482), - [anon_sym_sine] = ACTIONS(482), - [anon_sym_12] = ACTIONS(482), - [anon_sym_floor] = ACTIONS(482), - [anon_sym_13] = ACTIONS(482), - [anon_sym_ceiling] = ACTIONS(482), - [anon_sym_14] = ACTIONS(482), - [anon_sym_round] = ACTIONS(482), - [anon_sym_15] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_16] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_17] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_18] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_19] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_20] = ACTIONS(482), - [anon_sym_modulus] = ACTIONS(482), - [anon_sym_21] = ACTIONS(482), - [anon_sym_power] = ACTIONS(482), - [anon_sym_22] = ACTIONS(482), - [anon_sym_logarithm] = ACTIONS(482), - [anon_sym_23] = ACTIONS(482), - [anon_sym_minimum] = ACTIONS(482), - [anon_sym_24] = ACTIONS(482), - [anon_sym_maximum] = ACTIONS(482), - [anon_sym_25] = ACTIONS(482), - [anon_sym_atangent] = ACTIONS(482), - [anon_sym_26] = ACTIONS(482), - [anon_sym_length] = ACTIONS(482), - [anon_sym_27] = ACTIONS(482), - [anon_sym_shape] = ACTIONS(482), - [anon_sym_28] = ACTIONS(482), - [anon_sym_range] = ACTIONS(482), - [anon_sym_29] = ACTIONS(482), - [anon_sym_first] = ACTIONS(482), - [anon_sym_30] = ACTIONS(482), - [anon_sym_reverse] = ACTIONS(482), - [anon_sym_31] = ACTIONS(482), - [anon_sym_deshape] = ACTIONS(482), - [anon_sym_32] = ACTIONS(482), - [anon_sym_bits] = ACTIONS(482), - [anon_sym_33] = ACTIONS(482), - [anon_sym_transpose] = ACTIONS(482), - [anon_sym_34] = ACTIONS(482), - [anon_sym_rise] = ACTIONS(482), - [anon_sym_35] = ACTIONS(482), - [anon_sym_fall] = ACTIONS(482), - [anon_sym_36] = ACTIONS(482), - [anon_sym_where] = ACTIONS(482), - [anon_sym_37] = ACTIONS(482), - [anon_sym_classify] = ACTIONS(482), - [anon_sym_38] = ACTIONS(482), - [anon_sym_deduplicate] = ACTIONS(482), - [anon_sym_39] = ACTIONS(482), - [anon_sym_box] = ACTIONS(482), - [anon_sym_40] = ACTIONS(482), - [anon_sym_unbox] = ACTIONS(482), - [anon_sym_41] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [anon_sym_42] = ACTIONS(482), - [anon_sym_couple] = ACTIONS(482), - [anon_sym_43] = ACTIONS(482), - [anon_sym_join] = ACTIONS(482), - [anon_sym_44] = ACTIONS(482), - [anon_sym_select] = ACTIONS(482), - [anon_sym_45] = ACTIONS(482), - [anon_sym_pick] = ACTIONS(482), - [anon_sym_46] = ACTIONS(482), - [anon_sym_reshape] = ACTIONS(482), - [anon_sym_47] = ACTIONS(482), - [anon_sym_take] = ACTIONS(482), - [anon_sym_48] = ACTIONS(482), - [anon_sym_drop] = ACTIONS(482), - [anon_sym_49] = ACTIONS(482), - [anon_sym_rotate] = ACTIONS(482), - [anon_sym_50] = ACTIONS(482), - [anon_sym_windows] = ACTIONS(482), - [anon_sym_51] = ACTIONS(482), - [anon_sym_keep] = ACTIONS(482), - [anon_sym_52] = ACTIONS(482), - [anon_sym_find] = ACTIONS(482), - [anon_sym_53] = ACTIONS(482), - [anon_sym_member] = ACTIONS(482), - [anon_sym_54] = ACTIONS(482), - [anon_sym_indexof] = ACTIONS(482), - [anon_sym_55] = ACTIONS(482), - [anon_sym_assert] = ACTIONS(482), - [anon_sym_56] = ACTIONS(482), - [anon_sym_wait] = ACTIONS(482), - [anon_sym_parse] = ACTIONS(482), - [anon_sym_random] = ACTIONS(482), - [anon_sym_57] = ACTIONS(482), - [anon_sym_gen] = ACTIONS(482), - [anon_sym_deal] = ACTIONS(482), - [anon_sym_tag] = ACTIONS(482), - [anon_sym_now] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_58] = ACTIONS(482), - [anon_sym_dump] = ACTIONS(482), - [anon_sym_regex] = ACTIONS(482), - [anon_sym_utf] = ACTIONS(482), - [anon_sym_send] = ACTIONS(482), - [anon_sym_recv] = ACTIONS(482), - [anon_sym_tryrecv] = ACTIONS(482), - [anon_sym_complex] = ACTIONS(482), - [anon_sym_59] = ACTIONS(482), - [anon_sym_rerank] = ACTIONS(482), - [anon_sym_60] = ACTIONS(482), - [anon_sym_fix] = ACTIONS(482), - [anon_sym_61] = ACTIONS(482), - [anon_sym_reduce] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_scan] = ACTIONS(482), - [anon_sym_BSLASH] = ACTIONS(482), - [anon_sym_each] = ACTIONS(482), - [anon_sym_62] = ACTIONS(482), - [anon_sym_rows] = ACTIONS(482), - [anon_sym_63] = ACTIONS(482), - [anon_sym_repeat] = ACTIONS(482), - [anon_sym_64] = ACTIONS(482), - [anon_sym_dip] = ACTIONS(482), - [anon_sym_65] = ACTIONS(482), - [anon_sym_gap] = ACTIONS(482), - [anon_sym_66] = ACTIONS(482), - [anon_sym_invert] = ACTIONS(482), - [anon_sym_67] = ACTIONS(482), - [anon_sym_spawn] = ACTIONS(482), - [anon_sym_pack] = ACTIONS(482), - [anon_sym_68] = ACTIONS(482), - [anon_sym_rectify] = ACTIONS(482), - [anon_sym_69] = ACTIONS(482), - [anon_sym_this] = ACTIONS(482), - [anon_sym_70] = ACTIONS(482), - [anon_sym_recur] = ACTIONS(482), - [anon_sym_71] = ACTIONS(482), - [anon_sym_fold] = ACTIONS(482), - [anon_sym_72] = ACTIONS(482), - [anon_sym_table] = ACTIONS(482), - [anon_sym_73] = ACTIONS(482), - [anon_sym_cross] = ACTIONS(482), - [anon_sym_74] = ACTIONS(482), - [anon_sym_group] = ACTIONS(482), - [anon_sym_75] = ACTIONS(482), - [anon_sym_partition] = ACTIONS(482), - [anon_sym_76] = ACTIONS(482), - [anon_sym_both] = ACTIONS(482), - [anon_sym_77] = ACTIONS(482), - [anon_sym_bracket] = ACTIONS(482), - [anon_sym_78] = ACTIONS(482), - [anon_sym_fork] = ACTIONS(482), - [anon_sym_79] = ACTIONS(482), - [anon_sym_under] = ACTIONS(482), - [anon_sym_80] = ACTIONS(482), - [anon_sym_fill] = ACTIONS(482), - [anon_sym_81] = ACTIONS(482), - [anon_sym_try] = ACTIONS(480), - [anon_sym_82] = ACTIONS(482), - [anon_sym_do] = ACTIONS(480), - [anon_sym_83] = ACTIONS(482), - [anon_sym_all] = ACTIONS(482), - [anon_sym_84] = ACTIONS(482), - [anon_sym_setinv] = ACTIONS(482), - [anon_sym_setunder] = ACTIONS(482), - [anon_sym_85] = ACTIONS(482), - [anon_sym_86] = ACTIONS(482), - [anon_sym_87] = ACTIONS(482), - [anon_sym_88] = ACTIONS(482), - [anon_sym_89] = ACTIONS(482), - [anon_sym_90] = ACTIONS(482), - [anon_sym_91] = ACTIONS(482), - [anon_sym_92] = ACTIONS(482), - [anon_sym_93] = ACTIONS(482), - [anon_sym_94] = ACTIONS(482), - [anon_sym_95] = ACTIONS(482), - [anon_sym_96] = ACTIONS(482), - [sym__endOfLine] = ACTIONS(482), - }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(454), - [aux_sym_number_token1] = ACTIONS(452), - [sym_fraction] = ACTIONS(454), - [anon_sym_os] = ACTIONS(452), - [anon_sym_Family] = ACTIONS(452), - [anon_sym_Arch] = ACTIONS(452), - [anon_sym_ExeExt] = ACTIONS(452), - [anon_sym_PllExt] = ACTIONS(452), - [anon_sym_Sep] = ACTIONS(452), - [anon_sym_NUmProcs] = ACTIONS(452), - [anon_sym_] = ACTIONS(454), - [aux_sym_character_token1] = ACTIONS(454), - [sym_string] = ACTIONS(454), - [sym_multiLineString] = ACTIONS(454), - [sym_identifier] = ACTIONS(452), - [sym_identifierDeprecated] = ACTIONS(452), - [sym_system] = ACTIONS(454), - [sym_comment] = ACTIONS(452), - [sym_openParen] = ACTIONS(454), - [sym_openCurly] = ACTIONS(454), - [sym_openBracket] = ACTIONS(454), - [sym_underscore] = ACTIONS(454), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_eta] = ACTIONS(454), - [anon_sym_2] = ACTIONS(452), - [anon_sym_pi] = ACTIONS(452), - [anon_sym_3] = ACTIONS(452), - [anon_sym_tau] = ACTIONS(454), - [anon_sym_4] = ACTIONS(452), - [anon_sym_infinity] = ACTIONS(454), - [anon_sym_5] = ACTIONS(454), - [anon_sym_e] = ACTIONS(452), - [anon_sym_NaN] = ACTIONS(452), - [anon_sym_NumProcs] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_identity] = ACTIONS(454), - [anon_sym_id] = ACTIONS(452), - [anon_sym_6] = ACTIONS(454), - [anon_sym_not] = ACTIONS(454), - [anon_sym_7] = ACTIONS(454), - [anon_sym_sign] = ACTIONS(454), - [anon_sym_8] = ACTIONS(454), - [anon_sym_BQUOTE] = ACTIONS(454), - [anon_sym_9] = ACTIONS(452), - [anon_sym_absolutevalue] = ACTIONS(454), - [anon_sym_10] = ACTIONS(454), - [anon_sym_sqrt] = ACTIONS(454), - [anon_sym_11] = ACTIONS(454), - [anon_sym_sine] = ACTIONS(454), - [anon_sym_12] = ACTIONS(454), - [anon_sym_floor] = ACTIONS(454), - [anon_sym_13] = ACTIONS(454), - [anon_sym_ceiling] = ACTIONS(454), - [anon_sym_14] = ACTIONS(454), - [anon_sym_round] = ACTIONS(454), - [anon_sym_15] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_16] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_17] = ACTIONS(454), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_18] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_19] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_20] = ACTIONS(454), - [anon_sym_modulus] = ACTIONS(454), - [anon_sym_21] = ACTIONS(454), - [anon_sym_power] = ACTIONS(454), - [anon_sym_22] = ACTIONS(454), - [anon_sym_logarithm] = ACTIONS(454), - [anon_sym_23] = ACTIONS(454), - [anon_sym_minimum] = ACTIONS(454), - [anon_sym_24] = ACTIONS(454), - [anon_sym_maximum] = ACTIONS(454), - [anon_sym_25] = ACTIONS(454), - [anon_sym_atangent] = ACTIONS(454), - [anon_sym_26] = ACTIONS(454), - [anon_sym_length] = ACTIONS(454), - [anon_sym_27] = ACTIONS(454), - [anon_sym_shape] = ACTIONS(454), - [anon_sym_28] = ACTIONS(454), - [anon_sym_range] = ACTIONS(454), - [anon_sym_29] = ACTIONS(454), - [anon_sym_first] = ACTIONS(454), - [anon_sym_30] = ACTIONS(454), - [anon_sym_reverse] = ACTIONS(454), - [anon_sym_31] = ACTIONS(454), - [anon_sym_deshape] = ACTIONS(454), - [anon_sym_32] = ACTIONS(454), - [anon_sym_bits] = ACTIONS(454), - [anon_sym_33] = ACTIONS(454), - [anon_sym_transpose] = ACTIONS(454), - [anon_sym_34] = ACTIONS(454), - [anon_sym_rise] = ACTIONS(454), - [anon_sym_35] = ACTIONS(454), - [anon_sym_fall] = ACTIONS(454), - [anon_sym_36] = ACTIONS(454), - [anon_sym_where] = ACTIONS(454), - [anon_sym_37] = ACTIONS(454), - [anon_sym_classify] = ACTIONS(454), - [anon_sym_38] = ACTIONS(454), - [anon_sym_deduplicate] = ACTIONS(454), - [anon_sym_39] = ACTIONS(454), - [anon_sym_box] = ACTIONS(454), - [anon_sym_40] = ACTIONS(454), - [anon_sym_unbox] = ACTIONS(454), - [anon_sym_41] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_42] = ACTIONS(454), - [anon_sym_couple] = ACTIONS(454), - [anon_sym_43] = ACTIONS(454), - [anon_sym_join] = ACTIONS(454), - [anon_sym_44] = ACTIONS(454), - [anon_sym_select] = ACTIONS(454), - [anon_sym_45] = ACTIONS(454), - [anon_sym_pick] = ACTIONS(454), - [anon_sym_46] = ACTIONS(454), - [anon_sym_reshape] = ACTIONS(454), - [anon_sym_47] = ACTIONS(454), - [anon_sym_take] = ACTIONS(454), - [anon_sym_48] = ACTIONS(454), - [anon_sym_drop] = ACTIONS(454), - [anon_sym_49] = ACTIONS(454), - [anon_sym_rotate] = ACTIONS(454), - [anon_sym_50] = ACTIONS(454), - [anon_sym_windows] = ACTIONS(454), - [anon_sym_51] = ACTIONS(454), - [anon_sym_keep] = ACTIONS(454), - [anon_sym_52] = ACTIONS(454), - [anon_sym_find] = ACTIONS(454), - [anon_sym_53] = ACTIONS(454), - [anon_sym_member] = ACTIONS(454), - [anon_sym_54] = ACTIONS(454), - [anon_sym_indexof] = ACTIONS(454), - [anon_sym_55] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(454), - [anon_sym_56] = ACTIONS(454), - [anon_sym_wait] = ACTIONS(454), - [anon_sym_parse] = ACTIONS(454), - [anon_sym_random] = ACTIONS(454), - [anon_sym_57] = ACTIONS(454), - [anon_sym_gen] = ACTIONS(454), - [anon_sym_deal] = ACTIONS(454), - [anon_sym_tag] = ACTIONS(454), - [anon_sym_now] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_58] = ACTIONS(454), - [anon_sym_dump] = ACTIONS(454), - [anon_sym_regex] = ACTIONS(454), - [anon_sym_utf] = ACTIONS(454), - [anon_sym_send] = ACTIONS(454), - [anon_sym_recv] = ACTIONS(454), - [anon_sym_tryrecv] = ACTIONS(454), - [anon_sym_complex] = ACTIONS(454), - [anon_sym_59] = ACTIONS(454), - [anon_sym_rerank] = ACTIONS(454), - [anon_sym_60] = ACTIONS(454), - [anon_sym_fix] = ACTIONS(454), - [anon_sym_61] = ACTIONS(454), - [anon_sym_reduce] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_scan] = ACTIONS(454), - [anon_sym_BSLASH] = ACTIONS(454), - [anon_sym_each] = ACTIONS(454), - [anon_sym_62] = ACTIONS(454), - [anon_sym_rows] = ACTIONS(454), - [anon_sym_63] = ACTIONS(454), - [anon_sym_repeat] = ACTIONS(454), - [anon_sym_64] = ACTIONS(454), - [anon_sym_dip] = ACTIONS(454), - [anon_sym_65] = ACTIONS(454), - [anon_sym_gap] = ACTIONS(454), - [anon_sym_66] = ACTIONS(454), - [anon_sym_invert] = ACTIONS(454), - [anon_sym_67] = ACTIONS(454), - [anon_sym_spawn] = ACTIONS(454), - [anon_sym_pack] = ACTIONS(454), - [anon_sym_68] = ACTIONS(454), - [anon_sym_rectify] = ACTIONS(454), - [anon_sym_69] = ACTIONS(454), - [anon_sym_this] = ACTIONS(454), - [anon_sym_70] = ACTIONS(454), - [anon_sym_recur] = ACTIONS(454), - [anon_sym_71] = ACTIONS(454), - [anon_sym_fold] = ACTIONS(454), - [anon_sym_72] = ACTIONS(454), - [anon_sym_table] = ACTIONS(454), - [anon_sym_73] = ACTIONS(454), - [anon_sym_cross] = ACTIONS(454), - [anon_sym_74] = ACTIONS(454), - [anon_sym_group] = ACTIONS(454), - [anon_sym_75] = ACTIONS(454), - [anon_sym_partition] = ACTIONS(454), - [anon_sym_76] = ACTIONS(454), - [anon_sym_both] = ACTIONS(454), - [anon_sym_77] = ACTIONS(454), - [anon_sym_bracket] = ACTIONS(454), - [anon_sym_78] = ACTIONS(454), - [anon_sym_fork] = ACTIONS(454), - [anon_sym_79] = ACTIONS(454), - [anon_sym_under] = ACTIONS(454), - [anon_sym_80] = ACTIONS(454), - [anon_sym_fill] = ACTIONS(454), - [anon_sym_81] = ACTIONS(454), - [anon_sym_try] = ACTIONS(452), - [anon_sym_82] = ACTIONS(454), - [anon_sym_do] = ACTIONS(452), - [anon_sym_83] = ACTIONS(454), - [anon_sym_all] = ACTIONS(454), - [anon_sym_84] = ACTIONS(454), - [anon_sym_setinv] = ACTIONS(454), - [anon_sym_setunder] = ACTIONS(454), - [anon_sym_85] = ACTIONS(454), - [anon_sym_86] = ACTIONS(454), - [anon_sym_87] = ACTIONS(454), - [anon_sym_88] = ACTIONS(454), - [anon_sym_89] = ACTIONS(454), - [anon_sym_90] = ACTIONS(454), - [anon_sym_91] = ACTIONS(454), - [anon_sym_92] = ACTIONS(454), - [anon_sym_93] = ACTIONS(454), - [anon_sym_94] = ACTIONS(454), - [anon_sym_95] = ACTIONS(454), - [anon_sym_96] = ACTIONS(454), - [sym__endOfLine] = ACTIONS(454), - }, - [142] = { - [aux_sym_number_token1] = ACTIONS(574), - [sym_fraction] = ACTIONS(576), - [anon_sym_os] = ACTIONS(574), - [anon_sym_Family] = ACTIONS(574), - [anon_sym_Arch] = ACTIONS(574), - [anon_sym_ExeExt] = ACTIONS(574), - [anon_sym_PllExt] = ACTIONS(574), - [anon_sym_Sep] = ACTIONS(574), - [anon_sym_NUmProcs] = ACTIONS(574), - [anon_sym_] = ACTIONS(576), - [aux_sym_character_token1] = ACTIONS(576), - [sym_string] = ACTIONS(576), - [sym_multiLineString] = ACTIONS(576), - [sym_identifier] = ACTIONS(574), - [sym_identifierDeprecated] = ACTIONS(574), - [sym_system] = ACTIONS(576), - [sym_comment] = ACTIONS(574), - [sym_openParen] = ACTIONS(576), - [sym_openCurly] = ACTIONS(576), - [sym_closeCurly] = ACTIONS(576), - [sym_openBracket] = ACTIONS(576), - [sym_closeBracket] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_eta] = ACTIONS(576), - [anon_sym_2] = ACTIONS(574), - [anon_sym_pi] = ACTIONS(574), - [anon_sym_3] = ACTIONS(574), - [anon_sym_tau] = ACTIONS(576), - [anon_sym_4] = ACTIONS(574), - [anon_sym_infinity] = ACTIONS(576), - [anon_sym_5] = ACTIONS(576), - [anon_sym_e] = ACTIONS(574), - [anon_sym_NaN] = ACTIONS(574), - [anon_sym_NumProcs] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_identity] = ACTIONS(576), - [anon_sym_id] = ACTIONS(574), - [anon_sym_6] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_7] = ACTIONS(576), - [anon_sym_sign] = ACTIONS(576), - [anon_sym_8] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_9] = ACTIONS(574), - [anon_sym_absolutevalue] = ACTIONS(576), - [anon_sym_10] = ACTIONS(576), - [anon_sym_sqrt] = ACTIONS(576), - [anon_sym_11] = ACTIONS(576), - [anon_sym_sine] = ACTIONS(576), - [anon_sym_12] = ACTIONS(576), - [anon_sym_floor] = ACTIONS(576), - [anon_sym_13] = ACTIONS(576), - [anon_sym_ceiling] = ACTIONS(576), - [anon_sym_14] = ACTIONS(576), - [anon_sym_round] = ACTIONS(576), - [anon_sym_15] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_16] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_17] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_18] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_19] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_20] = ACTIONS(576), - [anon_sym_modulus] = ACTIONS(576), - [anon_sym_21] = ACTIONS(576), - [anon_sym_power] = ACTIONS(576), - [anon_sym_22] = ACTIONS(576), - [anon_sym_logarithm] = ACTIONS(576), - [anon_sym_23] = ACTIONS(576), - [anon_sym_minimum] = ACTIONS(576), - [anon_sym_24] = ACTIONS(576), - [anon_sym_maximum] = ACTIONS(576), - [anon_sym_25] = ACTIONS(576), - [anon_sym_atangent] = ACTIONS(576), - [anon_sym_26] = ACTIONS(576), - [anon_sym_length] = ACTIONS(576), - [anon_sym_27] = ACTIONS(576), - [anon_sym_shape] = ACTIONS(576), - [anon_sym_28] = ACTIONS(576), - [anon_sym_range] = ACTIONS(576), - [anon_sym_29] = ACTIONS(576), - [anon_sym_first] = ACTIONS(576), - [anon_sym_30] = ACTIONS(576), - [anon_sym_reverse] = ACTIONS(576), - [anon_sym_31] = ACTIONS(576), - [anon_sym_deshape] = ACTIONS(576), - [anon_sym_32] = ACTIONS(576), - [anon_sym_bits] = ACTIONS(576), - [anon_sym_33] = ACTIONS(576), - [anon_sym_transpose] = ACTIONS(576), - [anon_sym_34] = ACTIONS(576), - [anon_sym_rise] = ACTIONS(576), - [anon_sym_35] = ACTIONS(576), - [anon_sym_fall] = ACTIONS(576), - [anon_sym_36] = ACTIONS(576), - [anon_sym_where] = ACTIONS(576), - [anon_sym_37] = ACTIONS(576), - [anon_sym_classify] = ACTIONS(576), - [anon_sym_38] = ACTIONS(576), - [anon_sym_deduplicate] = ACTIONS(576), - [anon_sym_39] = ACTIONS(576), - [anon_sym_box] = ACTIONS(576), - [anon_sym_40] = ACTIONS(576), - [anon_sym_unbox] = ACTIONS(576), - [anon_sym_41] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_42] = ACTIONS(576), - [anon_sym_couple] = ACTIONS(576), - [anon_sym_43] = ACTIONS(576), - [anon_sym_join] = ACTIONS(576), - [anon_sym_44] = ACTIONS(576), - [anon_sym_select] = ACTIONS(576), - [anon_sym_45] = ACTIONS(576), - [anon_sym_pick] = ACTIONS(576), - [anon_sym_46] = ACTIONS(576), - [anon_sym_reshape] = ACTIONS(576), - [anon_sym_47] = ACTIONS(576), - [anon_sym_take] = ACTIONS(576), - [anon_sym_48] = ACTIONS(576), - [anon_sym_drop] = ACTIONS(576), - [anon_sym_49] = ACTIONS(576), - [anon_sym_rotate] = ACTIONS(576), - [anon_sym_50] = ACTIONS(576), - [anon_sym_windows] = ACTIONS(576), - [anon_sym_51] = ACTIONS(576), - [anon_sym_keep] = ACTIONS(576), - [anon_sym_52] = ACTIONS(576), - [anon_sym_find] = ACTIONS(576), - [anon_sym_53] = ACTIONS(576), - [anon_sym_member] = ACTIONS(576), - [anon_sym_54] = ACTIONS(576), - [anon_sym_indexof] = ACTIONS(576), - [anon_sym_55] = ACTIONS(576), - [anon_sym_assert] = ACTIONS(576), - [anon_sym_56] = ACTIONS(576), - [anon_sym_wait] = ACTIONS(576), - [anon_sym_parse] = ACTIONS(576), - [anon_sym_random] = ACTIONS(576), - [anon_sym_57] = ACTIONS(576), - [anon_sym_gen] = ACTIONS(576), - [anon_sym_deal] = ACTIONS(576), - [anon_sym_tag] = ACTIONS(576), - [anon_sym_now] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_58] = ACTIONS(576), - [anon_sym_dump] = ACTIONS(576), - [anon_sym_regex] = ACTIONS(576), - [anon_sym_utf] = ACTIONS(576), - [anon_sym_send] = ACTIONS(576), - [anon_sym_recv] = ACTIONS(576), - [anon_sym_tryrecv] = ACTIONS(576), - [anon_sym_complex] = ACTIONS(576), - [anon_sym_59] = ACTIONS(576), - [anon_sym_rerank] = ACTIONS(576), - [anon_sym_60] = ACTIONS(576), - [anon_sym_fix] = ACTIONS(576), - [anon_sym_61] = ACTIONS(576), - [anon_sym_reduce] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_scan] = ACTIONS(576), - [anon_sym_BSLASH] = ACTIONS(576), - [anon_sym_each] = ACTIONS(576), - [anon_sym_62] = ACTIONS(576), - [anon_sym_rows] = ACTIONS(576), - [anon_sym_63] = ACTIONS(576), - [anon_sym_repeat] = ACTIONS(576), - [anon_sym_64] = ACTIONS(576), - [anon_sym_dip] = ACTIONS(576), - [anon_sym_65] = ACTIONS(576), - [anon_sym_gap] = ACTIONS(576), - [anon_sym_66] = ACTIONS(576), - [anon_sym_invert] = ACTIONS(576), - [anon_sym_67] = ACTIONS(576), - [anon_sym_spawn] = ACTIONS(576), - [anon_sym_pack] = ACTIONS(576), - [anon_sym_68] = ACTIONS(576), - [anon_sym_rectify] = ACTIONS(576), - [anon_sym_69] = ACTIONS(576), - [anon_sym_this] = ACTIONS(576), - [anon_sym_70] = ACTIONS(576), - [anon_sym_recur] = ACTIONS(576), - [anon_sym_71] = ACTIONS(576), - [anon_sym_fold] = ACTIONS(576), - [anon_sym_72] = ACTIONS(576), - [anon_sym_table] = ACTIONS(576), - [anon_sym_73] = ACTIONS(576), - [anon_sym_cross] = ACTIONS(576), - [anon_sym_74] = ACTIONS(576), - [anon_sym_group] = ACTIONS(576), - [anon_sym_75] = ACTIONS(576), - [anon_sym_partition] = ACTIONS(576), - [anon_sym_76] = ACTIONS(576), - [anon_sym_both] = ACTIONS(576), - [anon_sym_77] = ACTIONS(576), - [anon_sym_bracket] = ACTIONS(576), - [anon_sym_78] = ACTIONS(576), - [anon_sym_fork] = ACTIONS(576), - [anon_sym_79] = ACTIONS(576), - [anon_sym_under] = ACTIONS(576), - [anon_sym_80] = ACTIONS(576), - [anon_sym_fill] = ACTIONS(576), - [anon_sym_81] = ACTIONS(576), - [anon_sym_try] = ACTIONS(574), - [anon_sym_82] = ACTIONS(576), - [anon_sym_do] = ACTIONS(574), - [anon_sym_83] = ACTIONS(576), - [anon_sym_all] = ACTIONS(576), - [anon_sym_84] = ACTIONS(576), - [anon_sym_setinv] = ACTIONS(576), - [anon_sym_setunder] = ACTIONS(576), - [anon_sym_85] = ACTIONS(576), - [anon_sym_86] = ACTIONS(576), - [anon_sym_87] = ACTIONS(576), - [anon_sym_88] = ACTIONS(576), - [anon_sym_89] = ACTIONS(576), - [anon_sym_90] = ACTIONS(576), - [anon_sym_91] = ACTIONS(576), - [anon_sym_92] = ACTIONS(576), - [anon_sym_93] = ACTIONS(576), - [anon_sym_94] = ACTIONS(576), - [anon_sym_95] = ACTIONS(576), - [anon_sym_96] = ACTIONS(576), - [sym__endOfLine] = ACTIONS(578), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(522), - [aux_sym_number_token1] = ACTIONS(520), - [sym_fraction] = ACTIONS(522), - [anon_sym_os] = ACTIONS(520), - [anon_sym_Family] = ACTIONS(520), - [anon_sym_Arch] = ACTIONS(520), - [anon_sym_ExeExt] = ACTIONS(520), - [anon_sym_PllExt] = ACTIONS(520), - [anon_sym_Sep] = ACTIONS(520), - [anon_sym_NUmProcs] = ACTIONS(520), - [anon_sym_] = ACTIONS(522), - [aux_sym_character_token1] = ACTIONS(522), - [sym_string] = ACTIONS(522), - [sym_multiLineString] = ACTIONS(522), - [sym_identifier] = ACTIONS(520), - [sym_identifierDeprecated] = ACTIONS(520), - [sym_system] = ACTIONS(522), - [sym_comment] = ACTIONS(520), - [sym_openParen] = ACTIONS(522), - [sym_openCurly] = ACTIONS(522), - [sym_openBracket] = ACTIONS(522), - [sym_underscore] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_eta] = ACTIONS(522), - [anon_sym_2] = ACTIONS(520), - [anon_sym_pi] = ACTIONS(520), - [anon_sym_3] = ACTIONS(520), - [anon_sym_tau] = ACTIONS(522), - [anon_sym_4] = ACTIONS(520), - [anon_sym_infinity] = ACTIONS(522), - [anon_sym_5] = ACTIONS(522), - [anon_sym_e] = ACTIONS(520), - [anon_sym_NaN] = ACTIONS(520), - [anon_sym_NumProcs] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_identity] = ACTIONS(522), - [anon_sym_id] = ACTIONS(520), - [anon_sym_6] = ACTIONS(522), - [anon_sym_not] = ACTIONS(522), - [anon_sym_7] = ACTIONS(522), - [anon_sym_sign] = ACTIONS(522), - [anon_sym_8] = ACTIONS(522), - [anon_sym_BQUOTE] = ACTIONS(522), - [anon_sym_9] = ACTIONS(520), - [anon_sym_absolutevalue] = ACTIONS(522), - [anon_sym_10] = ACTIONS(522), - [anon_sym_sqrt] = ACTIONS(522), - [anon_sym_11] = ACTIONS(522), - [anon_sym_sine] = ACTIONS(522), - [anon_sym_12] = ACTIONS(522), - [anon_sym_floor] = ACTIONS(522), - [anon_sym_13] = ACTIONS(522), - [anon_sym_ceiling] = ACTIONS(522), - [anon_sym_14] = ACTIONS(522), - [anon_sym_round] = ACTIONS(522), - [anon_sym_15] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_16] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_17] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_18] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_19] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_20] = ACTIONS(522), - [anon_sym_modulus] = ACTIONS(522), - [anon_sym_21] = ACTIONS(522), - [anon_sym_power] = ACTIONS(522), - [anon_sym_22] = ACTIONS(522), - [anon_sym_logarithm] = ACTIONS(522), - [anon_sym_23] = ACTIONS(522), - [anon_sym_minimum] = ACTIONS(522), - [anon_sym_24] = ACTIONS(522), - [anon_sym_maximum] = ACTIONS(522), - [anon_sym_25] = ACTIONS(522), - [anon_sym_atangent] = ACTIONS(522), - [anon_sym_26] = ACTIONS(522), - [anon_sym_length] = ACTIONS(522), - [anon_sym_27] = ACTIONS(522), - [anon_sym_shape] = ACTIONS(522), - [anon_sym_28] = ACTIONS(522), - [anon_sym_range] = ACTIONS(522), - [anon_sym_29] = ACTIONS(522), - [anon_sym_first] = ACTIONS(522), - [anon_sym_30] = ACTIONS(522), - [anon_sym_reverse] = ACTIONS(522), - [anon_sym_31] = ACTIONS(522), - [anon_sym_deshape] = ACTIONS(522), - [anon_sym_32] = ACTIONS(522), - [anon_sym_bits] = ACTIONS(522), - [anon_sym_33] = ACTIONS(522), - [anon_sym_transpose] = ACTIONS(522), - [anon_sym_34] = ACTIONS(522), - [anon_sym_rise] = ACTIONS(522), - [anon_sym_35] = ACTIONS(522), - [anon_sym_fall] = ACTIONS(522), - [anon_sym_36] = ACTIONS(522), - [anon_sym_where] = ACTIONS(522), - [anon_sym_37] = ACTIONS(522), - [anon_sym_classify] = ACTIONS(522), - [anon_sym_38] = ACTIONS(522), - [anon_sym_deduplicate] = ACTIONS(522), - [anon_sym_39] = ACTIONS(522), - [anon_sym_box] = ACTIONS(522), - [anon_sym_40] = ACTIONS(522), - [anon_sym_unbox] = ACTIONS(522), - [anon_sym_41] = ACTIONS(522), - [anon_sym_match] = ACTIONS(522), - [anon_sym_42] = ACTIONS(522), - [anon_sym_couple] = ACTIONS(522), - [anon_sym_43] = ACTIONS(522), - [anon_sym_join] = ACTIONS(522), - [anon_sym_44] = ACTIONS(522), - [anon_sym_select] = ACTIONS(522), - [anon_sym_45] = ACTIONS(522), - [anon_sym_pick] = ACTIONS(522), - [anon_sym_46] = ACTIONS(522), - [anon_sym_reshape] = ACTIONS(522), - [anon_sym_47] = ACTIONS(522), - [anon_sym_take] = ACTIONS(522), - [anon_sym_48] = ACTIONS(522), - [anon_sym_drop] = ACTIONS(522), - [anon_sym_49] = ACTIONS(522), - [anon_sym_rotate] = ACTIONS(522), - [anon_sym_50] = ACTIONS(522), - [anon_sym_windows] = ACTIONS(522), - [anon_sym_51] = ACTIONS(522), - [anon_sym_keep] = ACTIONS(522), - [anon_sym_52] = ACTIONS(522), - [anon_sym_find] = ACTIONS(522), - [anon_sym_53] = ACTIONS(522), - [anon_sym_member] = ACTIONS(522), - [anon_sym_54] = ACTIONS(522), - [anon_sym_indexof] = ACTIONS(522), - [anon_sym_55] = ACTIONS(522), - [anon_sym_assert] = ACTIONS(522), - [anon_sym_56] = ACTIONS(522), - [anon_sym_wait] = ACTIONS(522), - [anon_sym_parse] = ACTIONS(522), - [anon_sym_random] = ACTIONS(522), - [anon_sym_57] = ACTIONS(522), - [anon_sym_gen] = ACTIONS(522), - [anon_sym_deal] = ACTIONS(522), - [anon_sym_tag] = ACTIONS(522), - [anon_sym_now] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_58] = ACTIONS(522), - [anon_sym_dump] = ACTIONS(522), - [anon_sym_regex] = ACTIONS(522), - [anon_sym_utf] = ACTIONS(522), - [anon_sym_send] = ACTIONS(522), - [anon_sym_recv] = ACTIONS(522), - [anon_sym_tryrecv] = ACTIONS(522), - [anon_sym_complex] = ACTIONS(522), - [anon_sym_59] = ACTIONS(522), - [anon_sym_rerank] = ACTIONS(522), - [anon_sym_60] = ACTIONS(522), - [anon_sym_fix] = ACTIONS(522), - [anon_sym_61] = ACTIONS(522), - [anon_sym_reduce] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_scan] = ACTIONS(522), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_each] = ACTIONS(522), - [anon_sym_62] = ACTIONS(522), - [anon_sym_rows] = ACTIONS(522), - [anon_sym_63] = ACTIONS(522), - [anon_sym_repeat] = ACTIONS(522), - [anon_sym_64] = ACTIONS(522), - [anon_sym_dip] = ACTIONS(522), - [anon_sym_65] = ACTIONS(522), - [anon_sym_gap] = ACTIONS(522), - [anon_sym_66] = ACTIONS(522), - [anon_sym_invert] = ACTIONS(522), - [anon_sym_67] = ACTIONS(522), - [anon_sym_spawn] = ACTIONS(522), - [anon_sym_pack] = ACTIONS(522), - [anon_sym_68] = ACTIONS(522), - [anon_sym_rectify] = ACTIONS(522), - [anon_sym_69] = ACTIONS(522), - [anon_sym_this] = ACTIONS(522), - [anon_sym_70] = ACTIONS(522), - [anon_sym_recur] = ACTIONS(522), - [anon_sym_71] = ACTIONS(522), - [anon_sym_fold] = ACTIONS(522), - [anon_sym_72] = ACTIONS(522), - [anon_sym_table] = ACTIONS(522), - [anon_sym_73] = ACTIONS(522), - [anon_sym_cross] = ACTIONS(522), - [anon_sym_74] = ACTIONS(522), - [anon_sym_group] = ACTIONS(522), - [anon_sym_75] = ACTIONS(522), - [anon_sym_partition] = ACTIONS(522), - [anon_sym_76] = ACTIONS(522), - [anon_sym_both] = ACTIONS(522), - [anon_sym_77] = ACTIONS(522), - [anon_sym_bracket] = ACTIONS(522), - [anon_sym_78] = ACTIONS(522), - [anon_sym_fork] = ACTIONS(522), - [anon_sym_79] = ACTIONS(522), - [anon_sym_under] = ACTIONS(522), - [anon_sym_80] = ACTIONS(522), - [anon_sym_fill] = ACTIONS(522), - [anon_sym_81] = ACTIONS(522), - [anon_sym_try] = ACTIONS(520), - [anon_sym_82] = ACTIONS(522), - [anon_sym_do] = ACTIONS(520), - [anon_sym_83] = ACTIONS(522), - [anon_sym_all] = ACTIONS(522), - [anon_sym_84] = ACTIONS(522), - [anon_sym_setinv] = ACTIONS(522), - [anon_sym_setunder] = ACTIONS(522), - [anon_sym_85] = ACTIONS(522), - [anon_sym_86] = ACTIONS(522), - [anon_sym_87] = ACTIONS(522), - [anon_sym_88] = ACTIONS(522), - [anon_sym_89] = ACTIONS(522), - [anon_sym_90] = ACTIONS(522), - [anon_sym_91] = ACTIONS(522), - [anon_sym_92] = ACTIONS(522), - [anon_sym_93] = ACTIONS(522), - [anon_sym_94] = ACTIONS(522), - [anon_sym_95] = ACTIONS(522), - [anon_sym_96] = ACTIONS(522), - [sym__endOfLine] = ACTIONS(522), - }, - [144] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(584), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), - }, - [145] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(586), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), - }, - [146] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(588), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), - }, - [147] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(590), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [110] = { + [sym_inlineFunction] = STATE(109), + [sym_function] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(478), + [aux_sym_number_token1] = ACTIONS(476), + [sym_fraction] = ACTIONS(478), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [anon_sym_NUmProcs] = ACTIONS(476), + [anon_sym_] = ACTIONS(478), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [sym_identifier] = ACTIONS(578), + [sym_identifierDeprecated] = ACTIONS(476), + [sym_system] = ACTIONS(580), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(576), + [sym_openCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_2] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_3] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_4] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_62] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_63] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_rectify] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_this] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_recur] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_82] = ACTIONS(478), + [anon_sym_do] = ACTIONS(476), + [anon_sym_83] = ACTIONS(478), + [anon_sym_all] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_setinv] = ACTIONS(478), + [anon_sym_setunder] = ACTIONS(478), + [anon_sym_85] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [sym__endOfLine] = ACTIONS(478), }, - [148] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(592), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [111] = { + [sym_inlineFunction] = STATE(129), + [sym_function] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(478), + [aux_sym_number_token1] = ACTIONS(476), + [sym_fraction] = ACTIONS(478), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [anon_sym_NUmProcs] = ACTIONS(476), + [anon_sym_] = ACTIONS(478), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [sym_identifier] = ACTIONS(582), + [sym_identifierDeprecated] = ACTIONS(476), + [sym_system] = ACTIONS(584), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(576), + [sym_openCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_2] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_3] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_4] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(43), + [anon_sym_COMMA] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_identity] = ACTIONS(43), + [anon_sym_id] = ACTIONS(45), + [anon_sym_6] = ACTIONS(43), + [anon_sym_not] = ACTIONS(43), + [anon_sym_7] = ACTIONS(43), + [anon_sym_sign] = ACTIONS(43), + [anon_sym_8] = ACTIONS(43), + [anon_sym_BQUOTE] = ACTIONS(43), + [anon_sym_9] = ACTIONS(45), + [anon_sym_absolutevalue] = ACTIONS(43), + [anon_sym_10] = ACTIONS(43), + [anon_sym_sqrt] = ACTIONS(43), + [anon_sym_11] = ACTIONS(43), + [anon_sym_sine] = ACTIONS(43), + [anon_sym_12] = ACTIONS(43), + [anon_sym_floor] = ACTIONS(43), + [anon_sym_13] = ACTIONS(43), + [anon_sym_ceiling] = ACTIONS(43), + [anon_sym_14] = ACTIONS(43), + [anon_sym_round] = ACTIONS(43), + [anon_sym_15] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(43), + [anon_sym_BANG_EQ] = ACTIONS(43), + [anon_sym_16] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_LT_EQ] = ACTIONS(43), + [anon_sym_17] = ACTIONS(43), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_EQ] = ACTIONS(43), + [anon_sym_18] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_19] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_20] = ACTIONS(43), + [anon_sym_modulus] = ACTIONS(43), + [anon_sym_21] = ACTIONS(43), + [anon_sym_power] = ACTIONS(43), + [anon_sym_22] = ACTIONS(43), + [anon_sym_logarithm] = ACTIONS(43), + [anon_sym_23] = ACTIONS(43), + [anon_sym_minimum] = ACTIONS(43), + [anon_sym_24] = ACTIONS(43), + [anon_sym_maximum] = ACTIONS(43), + [anon_sym_25] = ACTIONS(43), + [anon_sym_atangent] = ACTIONS(43), + [anon_sym_26] = ACTIONS(43), + [anon_sym_length] = ACTIONS(43), + [anon_sym_27] = ACTIONS(43), + [anon_sym_shape] = ACTIONS(43), + [anon_sym_28] = ACTIONS(43), + [anon_sym_range] = ACTIONS(43), + [anon_sym_29] = ACTIONS(43), + [anon_sym_first] = ACTIONS(43), + [anon_sym_30] = ACTIONS(43), + [anon_sym_reverse] = ACTIONS(43), + [anon_sym_31] = ACTIONS(43), + [anon_sym_deshape] = ACTIONS(43), + [anon_sym_32] = ACTIONS(43), + [anon_sym_bits] = ACTIONS(43), + [anon_sym_33] = ACTIONS(43), + [anon_sym_transpose] = ACTIONS(43), + [anon_sym_34] = ACTIONS(43), + [anon_sym_rise] = ACTIONS(43), + [anon_sym_35] = ACTIONS(43), + [anon_sym_fall] = ACTIONS(43), + [anon_sym_36] = ACTIONS(43), + [anon_sym_where] = ACTIONS(43), + [anon_sym_37] = ACTIONS(43), + [anon_sym_classify] = ACTIONS(43), + [anon_sym_38] = ACTIONS(43), + [anon_sym_deduplicate] = ACTIONS(43), + [anon_sym_39] = ACTIONS(43), + [anon_sym_box] = ACTIONS(43), + [anon_sym_40] = ACTIONS(43), + [anon_sym_unbox] = ACTIONS(43), + [anon_sym_41] = ACTIONS(43), + [anon_sym_match] = ACTIONS(43), + [anon_sym_42] = ACTIONS(43), + [anon_sym_couple] = ACTIONS(43), + [anon_sym_43] = ACTIONS(43), + [anon_sym_join] = ACTIONS(43), + [anon_sym_44] = ACTIONS(43), + [anon_sym_select] = ACTIONS(43), + [anon_sym_45] = ACTIONS(43), + [anon_sym_pick] = ACTIONS(43), + [anon_sym_46] = ACTIONS(43), + [anon_sym_reshape] = ACTIONS(43), + [anon_sym_47] = ACTIONS(43), + [anon_sym_take] = ACTIONS(43), + [anon_sym_48] = ACTIONS(43), + [anon_sym_drop] = ACTIONS(43), + [anon_sym_49] = ACTIONS(43), + [anon_sym_rotate] = ACTIONS(43), + [anon_sym_50] = ACTIONS(43), + [anon_sym_windows] = ACTIONS(43), + [anon_sym_51] = ACTIONS(43), + [anon_sym_keep] = ACTIONS(43), + [anon_sym_52] = ACTIONS(43), + [anon_sym_find] = ACTIONS(43), + [anon_sym_53] = ACTIONS(43), + [anon_sym_member] = ACTIONS(43), + [anon_sym_54] = ACTIONS(43), + [anon_sym_indexof] = ACTIONS(43), + [anon_sym_55] = ACTIONS(43), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_56] = ACTIONS(43), + [anon_sym_wait] = ACTIONS(43), + [anon_sym_parse] = ACTIONS(43), + [anon_sym_random] = ACTIONS(43), + [anon_sym_57] = ACTIONS(43), + [anon_sym_gen] = ACTIONS(43), + [anon_sym_deal] = ACTIONS(43), + [anon_sym_tag] = ACTIONS(43), + [anon_sym_now] = ACTIONS(43), + [anon_sym_type] = ACTIONS(43), + [anon_sym_58] = ACTIONS(43), + [anon_sym_dump] = ACTIONS(43), + [anon_sym_regex] = ACTIONS(43), + [anon_sym_utf] = ACTIONS(43), + [anon_sym_send] = ACTIONS(43), + [anon_sym_recv] = ACTIONS(43), + [anon_sym_tryrecv] = ACTIONS(43), + [anon_sym_complex] = ACTIONS(43), + [anon_sym_59] = ACTIONS(43), + [anon_sym_rerank] = ACTIONS(43), + [anon_sym_60] = ACTIONS(43), + [anon_sym_fix] = ACTIONS(43), + [anon_sym_61] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_62] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_63] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_rectify] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_this] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_recur] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_82] = ACTIONS(478), + [anon_sym_do] = ACTIONS(476), + [anon_sym_83] = ACTIONS(478), + [anon_sym_all] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_setinv] = ACTIONS(478), + [anon_sym_setunder] = ACTIONS(478), + [anon_sym_85] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [sym__endOfLine] = ACTIONS(478), }, - [149] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(594), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [112] = { + [ts_builtin_sym_end] = ACTIONS(586), + [aux_sym_number_token1] = ACTIONS(588), + [sym_fraction] = ACTIONS(590), + [anon_sym_os] = ACTIONS(588), + [anon_sym_Family] = ACTIONS(588), + [anon_sym_Arch] = ACTIONS(588), + [anon_sym_ExeExt] = ACTIONS(588), + [anon_sym_PllExt] = ACTIONS(588), + [anon_sym_Sep] = ACTIONS(588), + [anon_sym_NUmProcs] = ACTIONS(588), + [anon_sym_] = ACTIONS(590), + [aux_sym_character_token1] = ACTIONS(590), + [sym_string] = ACTIONS(590), + [sym_multiLineString] = ACTIONS(590), + [sym_identifier] = ACTIONS(588), + [sym_identifierDeprecated] = ACTIONS(588), + [sym_system] = ACTIONS(590), + [sym_comment] = ACTIONS(588), + [sym_tripleMinus] = ACTIONS(590), + [sym_openParen] = ACTIONS(590), + [sym_openCurly] = ACTIONS(590), + [sym_openBracket] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(590), + [anon_sym_eta] = ACTIONS(590), + [anon_sym_2] = ACTIONS(588), + [anon_sym_pi] = ACTIONS(588), + [anon_sym_3] = ACTIONS(588), + [anon_sym_tau] = ACTIONS(590), + [anon_sym_4] = ACTIONS(588), + [anon_sym_infinity] = ACTIONS(590), + [anon_sym_5] = ACTIONS(590), + [anon_sym_e] = ACTIONS(588), + [anon_sym_NaN] = ACTIONS(588), + [anon_sym_NumProcs] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_COLON] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_identity] = ACTIONS(590), + [anon_sym_id] = ACTIONS(588), + [anon_sym_6] = ACTIONS(590), + [anon_sym_not] = ACTIONS(590), + [anon_sym_7] = ACTIONS(590), + [anon_sym_sign] = ACTIONS(590), + [anon_sym_8] = ACTIONS(590), + [anon_sym_BQUOTE] = ACTIONS(590), + [anon_sym_9] = ACTIONS(588), + [anon_sym_absolutevalue] = ACTIONS(590), + [anon_sym_10] = ACTIONS(590), + [anon_sym_sqrt] = ACTIONS(590), + [anon_sym_11] = ACTIONS(590), + [anon_sym_sine] = ACTIONS(590), + [anon_sym_12] = ACTIONS(590), + [anon_sym_floor] = ACTIONS(590), + [anon_sym_13] = ACTIONS(590), + [anon_sym_ceiling] = ACTIONS(590), + [anon_sym_14] = ACTIONS(590), + [anon_sym_round] = ACTIONS(590), + [anon_sym_15] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_16] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_17] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_18] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_19] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_20] = ACTIONS(590), + [anon_sym_modulus] = ACTIONS(590), + [anon_sym_21] = ACTIONS(590), + [anon_sym_power] = ACTIONS(590), + [anon_sym_22] = ACTIONS(590), + [anon_sym_logarithm] = ACTIONS(590), + [anon_sym_23] = ACTIONS(590), + [anon_sym_minimum] = ACTIONS(590), + [anon_sym_24] = ACTIONS(590), + [anon_sym_maximum] = ACTIONS(590), + [anon_sym_25] = ACTIONS(590), + [anon_sym_atangent] = ACTIONS(590), + [anon_sym_26] = ACTIONS(590), + [anon_sym_length] = ACTIONS(590), + [anon_sym_27] = ACTIONS(590), + [anon_sym_shape] = ACTIONS(590), + [anon_sym_28] = ACTIONS(590), + [anon_sym_range] = ACTIONS(590), + [anon_sym_29] = ACTIONS(590), + [anon_sym_first] = ACTIONS(590), + [anon_sym_30] = ACTIONS(590), + [anon_sym_reverse] = ACTIONS(590), + [anon_sym_31] = ACTIONS(590), + [anon_sym_deshape] = ACTIONS(590), + [anon_sym_32] = ACTIONS(590), + [anon_sym_bits] = ACTIONS(590), + [anon_sym_33] = ACTIONS(590), + [anon_sym_transpose] = ACTIONS(590), + [anon_sym_34] = ACTIONS(590), + [anon_sym_rise] = ACTIONS(590), + [anon_sym_35] = ACTIONS(590), + [anon_sym_fall] = ACTIONS(590), + [anon_sym_36] = ACTIONS(590), + [anon_sym_where] = ACTIONS(590), + [anon_sym_37] = ACTIONS(590), + [anon_sym_classify] = ACTIONS(590), + [anon_sym_38] = ACTIONS(590), + [anon_sym_deduplicate] = ACTIONS(590), + [anon_sym_39] = ACTIONS(590), + [anon_sym_box] = ACTIONS(590), + [anon_sym_40] = ACTIONS(590), + [anon_sym_unbox] = ACTIONS(590), + [anon_sym_41] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_42] = ACTIONS(590), + [anon_sym_couple] = ACTIONS(590), + [anon_sym_43] = ACTIONS(590), + [anon_sym_join] = ACTIONS(590), + [anon_sym_44] = ACTIONS(590), + [anon_sym_select] = ACTIONS(590), + [anon_sym_45] = ACTIONS(590), + [anon_sym_pick] = ACTIONS(590), + [anon_sym_46] = ACTIONS(590), + [anon_sym_reshape] = ACTIONS(590), + [anon_sym_47] = ACTIONS(590), + [anon_sym_take] = ACTIONS(590), + [anon_sym_48] = ACTIONS(590), + [anon_sym_drop] = ACTIONS(590), + [anon_sym_49] = ACTIONS(590), + [anon_sym_rotate] = ACTIONS(590), + [anon_sym_50] = ACTIONS(590), + [anon_sym_windows] = ACTIONS(590), + [anon_sym_51] = ACTIONS(590), + [anon_sym_keep] = ACTIONS(590), + [anon_sym_52] = ACTIONS(590), + [anon_sym_find] = ACTIONS(590), + [anon_sym_53] = ACTIONS(590), + [anon_sym_member] = ACTIONS(590), + [anon_sym_54] = ACTIONS(590), + [anon_sym_indexof] = ACTIONS(590), + [anon_sym_55] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(590), + [anon_sym_56] = ACTIONS(590), + [anon_sym_wait] = ACTIONS(590), + [anon_sym_parse] = ACTIONS(590), + [anon_sym_random] = ACTIONS(590), + [anon_sym_57] = ACTIONS(590), + [anon_sym_gen] = ACTIONS(590), + [anon_sym_deal] = ACTIONS(590), + [anon_sym_tag] = ACTIONS(590), + [anon_sym_now] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_58] = ACTIONS(590), + [anon_sym_dump] = ACTIONS(590), + [anon_sym_regex] = ACTIONS(590), + [anon_sym_utf] = ACTIONS(590), + [anon_sym_send] = ACTIONS(590), + [anon_sym_recv] = ACTIONS(590), + [anon_sym_tryrecv] = ACTIONS(590), + [anon_sym_complex] = ACTIONS(590), + [anon_sym_59] = ACTIONS(590), + [anon_sym_rerank] = ACTIONS(590), + [anon_sym_60] = ACTIONS(590), + [anon_sym_fix] = ACTIONS(590), + [anon_sym_61] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_reduce] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_scan] = ACTIONS(590), + [anon_sym_BSLASH] = ACTIONS(590), + [anon_sym_each] = ACTIONS(590), + [anon_sym_62] = ACTIONS(590), + [anon_sym_rows] = ACTIONS(590), + [anon_sym_63] = ACTIONS(590), + [anon_sym_repeat] = ACTIONS(590), + [anon_sym_64] = ACTIONS(590), + [anon_sym_dip] = ACTIONS(590), + [anon_sym_65] = ACTIONS(590), + [anon_sym_gap] = ACTIONS(590), + [anon_sym_66] = ACTIONS(590), + [anon_sym_invert] = ACTIONS(590), + [anon_sym_67] = ACTIONS(590), + [anon_sym_spawn] = ACTIONS(590), + [anon_sym_pack] = ACTIONS(590), + [anon_sym_68] = ACTIONS(590), + [anon_sym_rectify] = ACTIONS(590), + [anon_sym_69] = ACTIONS(590), + [anon_sym_this] = ACTIONS(590), + [anon_sym_70] = ACTIONS(590), + [anon_sym_recur] = ACTIONS(590), + [anon_sym_71] = ACTIONS(590), + [anon_sym_fold] = ACTIONS(590), + [anon_sym_72] = ACTIONS(590), + [anon_sym_table] = ACTIONS(590), + [anon_sym_73] = ACTIONS(590), + [anon_sym_cross] = ACTIONS(590), + [anon_sym_74] = ACTIONS(590), + [anon_sym_group] = ACTIONS(590), + [anon_sym_75] = ACTIONS(590), + [anon_sym_partition] = ACTIONS(590), + [anon_sym_76] = ACTIONS(590), + [anon_sym_both] = ACTIONS(590), + [anon_sym_77] = ACTIONS(590), + [anon_sym_bracket] = ACTIONS(590), + [anon_sym_78] = ACTIONS(590), + [anon_sym_fork] = ACTIONS(590), + [anon_sym_79] = ACTIONS(590), + [anon_sym_under] = ACTIONS(590), + [anon_sym_80] = ACTIONS(590), + [anon_sym_fill] = ACTIONS(590), + [anon_sym_81] = ACTIONS(590), + [anon_sym_try] = ACTIONS(588), + [anon_sym_82] = ACTIONS(590), + [anon_sym_do] = ACTIONS(588), + [anon_sym_83] = ACTIONS(590), + [anon_sym_all] = ACTIONS(590), + [anon_sym_84] = ACTIONS(590), + [anon_sym_setinv] = ACTIONS(590), + [anon_sym_setunder] = ACTIONS(590), + [anon_sym_85] = ACTIONS(590), + [anon_sym_86] = ACTIONS(590), + [anon_sym_87] = ACTIONS(590), + [anon_sym_88] = ACTIONS(590), + [anon_sym_89] = ACTIONS(590), + [anon_sym_90] = ACTIONS(590), + [anon_sym_91] = ACTIONS(590), + [anon_sym_92] = ACTIONS(590), + [sym_emptyMultiLineString] = ACTIONS(590), + [sym__endOfLine] = ACTIONS(592), }, - [150] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(596), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), + [113] = { + [ts_builtin_sym_end] = ACTIONS(586), + [aux_sym_number_token1] = ACTIONS(594), + [sym_fraction] = ACTIONS(596), + [anon_sym_os] = ACTIONS(594), + [anon_sym_Family] = ACTIONS(594), + [anon_sym_Arch] = ACTIONS(594), + [anon_sym_ExeExt] = ACTIONS(594), + [anon_sym_PllExt] = ACTIONS(594), + [anon_sym_Sep] = ACTIONS(594), + [anon_sym_NUmProcs] = ACTIONS(594), + [anon_sym_] = ACTIONS(596), + [aux_sym_character_token1] = ACTIONS(596), + [sym_string] = ACTIONS(596), + [sym_multiLineString] = ACTIONS(596), + [sym_identifier] = ACTIONS(594), + [sym_identifierDeprecated] = ACTIONS(594), + [sym_system] = ACTIONS(596), + [sym_comment] = ACTIONS(594), + [sym_tripleMinus] = ACTIONS(596), + [sym_openParen] = ACTIONS(596), + [sym_openCurly] = ACTIONS(596), + [sym_openBracket] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_eta] = ACTIONS(596), + [anon_sym_2] = ACTIONS(594), + [anon_sym_pi] = ACTIONS(594), + [anon_sym_3] = ACTIONS(594), + [anon_sym_tau] = ACTIONS(596), + [anon_sym_4] = ACTIONS(594), + [anon_sym_infinity] = ACTIONS(596), + [anon_sym_5] = ACTIONS(596), + [anon_sym_e] = ACTIONS(594), + [anon_sym_NaN] = ACTIONS(594), + [anon_sym_NumProcs] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_identity] = ACTIONS(596), + [anon_sym_id] = ACTIONS(594), + [anon_sym_6] = ACTIONS(596), + [anon_sym_not] = ACTIONS(596), + [anon_sym_7] = ACTIONS(596), + [anon_sym_sign] = ACTIONS(596), + [anon_sym_8] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_9] = ACTIONS(594), + [anon_sym_absolutevalue] = ACTIONS(596), + [anon_sym_10] = ACTIONS(596), + [anon_sym_sqrt] = ACTIONS(596), + [anon_sym_11] = ACTIONS(596), + [anon_sym_sine] = ACTIONS(596), + [anon_sym_12] = ACTIONS(596), + [anon_sym_floor] = ACTIONS(596), + [anon_sym_13] = ACTIONS(596), + [anon_sym_ceiling] = ACTIONS(596), + [anon_sym_14] = ACTIONS(596), + [anon_sym_round] = ACTIONS(596), + [anon_sym_15] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_16] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_17] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_18] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_19] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_20] = ACTIONS(596), + [anon_sym_modulus] = ACTIONS(596), + [anon_sym_21] = ACTIONS(596), + [anon_sym_power] = ACTIONS(596), + [anon_sym_22] = ACTIONS(596), + [anon_sym_logarithm] = ACTIONS(596), + [anon_sym_23] = ACTIONS(596), + [anon_sym_minimum] = ACTIONS(596), + [anon_sym_24] = ACTIONS(596), + [anon_sym_maximum] = ACTIONS(596), + [anon_sym_25] = ACTIONS(596), + [anon_sym_atangent] = ACTIONS(596), + [anon_sym_26] = ACTIONS(596), + [anon_sym_length] = ACTIONS(596), + [anon_sym_27] = ACTIONS(596), + [anon_sym_shape] = ACTIONS(596), + [anon_sym_28] = ACTIONS(596), + [anon_sym_range] = ACTIONS(596), + [anon_sym_29] = ACTIONS(596), + [anon_sym_first] = ACTIONS(596), + [anon_sym_30] = ACTIONS(596), + [anon_sym_reverse] = ACTIONS(596), + [anon_sym_31] = ACTIONS(596), + [anon_sym_deshape] = ACTIONS(596), + [anon_sym_32] = ACTIONS(596), + [anon_sym_bits] = ACTIONS(596), + [anon_sym_33] = ACTIONS(596), + [anon_sym_transpose] = ACTIONS(596), + [anon_sym_34] = ACTIONS(596), + [anon_sym_rise] = ACTIONS(596), + [anon_sym_35] = ACTIONS(596), + [anon_sym_fall] = ACTIONS(596), + [anon_sym_36] = ACTIONS(596), + [anon_sym_where] = ACTIONS(596), + [anon_sym_37] = ACTIONS(596), + [anon_sym_classify] = ACTIONS(596), + [anon_sym_38] = ACTIONS(596), + [anon_sym_deduplicate] = ACTIONS(596), + [anon_sym_39] = ACTIONS(596), + [anon_sym_box] = ACTIONS(596), + [anon_sym_40] = ACTIONS(596), + [anon_sym_unbox] = ACTIONS(596), + [anon_sym_41] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_42] = ACTIONS(596), + [anon_sym_couple] = ACTIONS(596), + [anon_sym_43] = ACTIONS(596), + [anon_sym_join] = ACTIONS(596), + [anon_sym_44] = ACTIONS(596), + [anon_sym_select] = ACTIONS(596), + [anon_sym_45] = ACTIONS(596), + [anon_sym_pick] = ACTIONS(596), + [anon_sym_46] = ACTIONS(596), + [anon_sym_reshape] = ACTIONS(596), + [anon_sym_47] = ACTIONS(596), + [anon_sym_take] = ACTIONS(596), + [anon_sym_48] = ACTIONS(596), + [anon_sym_drop] = ACTIONS(596), + [anon_sym_49] = ACTIONS(596), + [anon_sym_rotate] = ACTIONS(596), + [anon_sym_50] = ACTIONS(596), + [anon_sym_windows] = ACTIONS(596), + [anon_sym_51] = ACTIONS(596), + [anon_sym_keep] = ACTIONS(596), + [anon_sym_52] = ACTIONS(596), + [anon_sym_find] = ACTIONS(596), + [anon_sym_53] = ACTIONS(596), + [anon_sym_member] = ACTIONS(596), + [anon_sym_54] = ACTIONS(596), + [anon_sym_indexof] = ACTIONS(596), + [anon_sym_55] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_56] = ACTIONS(596), + [anon_sym_wait] = ACTIONS(596), + [anon_sym_parse] = ACTIONS(596), + [anon_sym_random] = ACTIONS(596), + [anon_sym_57] = ACTIONS(596), + [anon_sym_gen] = ACTIONS(596), + [anon_sym_deal] = ACTIONS(596), + [anon_sym_tag] = ACTIONS(596), + [anon_sym_now] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_58] = ACTIONS(596), + [anon_sym_dump] = ACTIONS(596), + [anon_sym_regex] = ACTIONS(596), + [anon_sym_utf] = ACTIONS(596), + [anon_sym_send] = ACTIONS(596), + [anon_sym_recv] = ACTIONS(596), + [anon_sym_tryrecv] = ACTIONS(596), + [anon_sym_complex] = ACTIONS(596), + [anon_sym_59] = ACTIONS(596), + [anon_sym_rerank] = ACTIONS(596), + [anon_sym_60] = ACTIONS(596), + [anon_sym_fix] = ACTIONS(596), + [anon_sym_61] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_reduce] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_scan] = ACTIONS(596), + [anon_sym_BSLASH] = ACTIONS(596), + [anon_sym_each] = ACTIONS(596), + [anon_sym_62] = ACTIONS(596), + [anon_sym_rows] = ACTIONS(596), + [anon_sym_63] = ACTIONS(596), + [anon_sym_repeat] = ACTIONS(596), + [anon_sym_64] = ACTIONS(596), + [anon_sym_dip] = ACTIONS(596), + [anon_sym_65] = ACTIONS(596), + [anon_sym_gap] = ACTIONS(596), + [anon_sym_66] = ACTIONS(596), + [anon_sym_invert] = ACTIONS(596), + [anon_sym_67] = ACTIONS(596), + [anon_sym_spawn] = ACTIONS(596), + [anon_sym_pack] = ACTIONS(596), + [anon_sym_68] = ACTIONS(596), + [anon_sym_rectify] = ACTIONS(596), + [anon_sym_69] = ACTIONS(596), + [anon_sym_this] = ACTIONS(596), + [anon_sym_70] = ACTIONS(596), + [anon_sym_recur] = ACTIONS(596), + [anon_sym_71] = ACTIONS(596), + [anon_sym_fold] = ACTIONS(596), + [anon_sym_72] = ACTIONS(596), + [anon_sym_table] = ACTIONS(596), + [anon_sym_73] = ACTIONS(596), + [anon_sym_cross] = ACTIONS(596), + [anon_sym_74] = ACTIONS(596), + [anon_sym_group] = ACTIONS(596), + [anon_sym_75] = ACTIONS(596), + [anon_sym_partition] = ACTIONS(596), + [anon_sym_76] = ACTIONS(596), + [anon_sym_both] = ACTIONS(596), + [anon_sym_77] = ACTIONS(596), + [anon_sym_bracket] = ACTIONS(596), + [anon_sym_78] = ACTIONS(596), + [anon_sym_fork] = ACTIONS(596), + [anon_sym_79] = ACTIONS(596), + [anon_sym_under] = ACTIONS(596), + [anon_sym_80] = ACTIONS(596), + [anon_sym_fill] = ACTIONS(596), + [anon_sym_81] = ACTIONS(596), + [anon_sym_try] = ACTIONS(594), + [anon_sym_82] = ACTIONS(596), + [anon_sym_do] = ACTIONS(594), + [anon_sym_83] = ACTIONS(596), + [anon_sym_all] = ACTIONS(596), + [anon_sym_84] = ACTIONS(596), + [anon_sym_setinv] = ACTIONS(596), + [anon_sym_setunder] = ACTIONS(596), + [anon_sym_85] = ACTIONS(596), + [anon_sym_86] = ACTIONS(596), + [anon_sym_87] = ACTIONS(596), + [anon_sym_88] = ACTIONS(596), + [anon_sym_89] = ACTIONS(596), + [anon_sym_90] = ACTIONS(596), + [anon_sym_91] = ACTIONS(596), + [anon_sym_92] = ACTIONS(596), + [sym_emptyMultiLineString] = ACTIONS(596), [sym__endOfLine] = ACTIONS(5), }, - [151] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(598), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [114] = { + [ts_builtin_sym_end] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(588), + [sym_fraction] = ACTIONS(590), + [anon_sym_os] = ACTIONS(588), + [anon_sym_Family] = ACTIONS(588), + [anon_sym_Arch] = ACTIONS(588), + [anon_sym_ExeExt] = ACTIONS(588), + [anon_sym_PllExt] = ACTIONS(588), + [anon_sym_Sep] = ACTIONS(588), + [anon_sym_NUmProcs] = ACTIONS(588), + [anon_sym_] = ACTIONS(590), + [aux_sym_character_token1] = ACTIONS(590), + [sym_string] = ACTIONS(590), + [sym_multiLineString] = ACTIONS(590), + [sym_identifier] = ACTIONS(588), + [sym_identifierDeprecated] = ACTIONS(588), + [sym_system] = ACTIONS(590), + [sym_comment] = ACTIONS(588), + [sym_tripleMinus] = ACTIONS(590), + [sym_openParen] = ACTIONS(590), + [sym_openCurly] = ACTIONS(590), + [sym_openBracket] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(590), + [anon_sym_eta] = ACTIONS(590), + [anon_sym_2] = ACTIONS(588), + [anon_sym_pi] = ACTIONS(588), + [anon_sym_3] = ACTIONS(588), + [anon_sym_tau] = ACTIONS(590), + [anon_sym_4] = ACTIONS(588), + [anon_sym_infinity] = ACTIONS(590), + [anon_sym_5] = ACTIONS(590), + [anon_sym_e] = ACTIONS(588), + [anon_sym_NaN] = ACTIONS(588), + [anon_sym_NumProcs] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_COLON] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_identity] = ACTIONS(590), + [anon_sym_id] = ACTIONS(588), + [anon_sym_6] = ACTIONS(590), + [anon_sym_not] = ACTIONS(590), + [anon_sym_7] = ACTIONS(590), + [anon_sym_sign] = ACTIONS(590), + [anon_sym_8] = ACTIONS(590), + [anon_sym_BQUOTE] = ACTIONS(590), + [anon_sym_9] = ACTIONS(588), + [anon_sym_absolutevalue] = ACTIONS(590), + [anon_sym_10] = ACTIONS(590), + [anon_sym_sqrt] = ACTIONS(590), + [anon_sym_11] = ACTIONS(590), + [anon_sym_sine] = ACTIONS(590), + [anon_sym_12] = ACTIONS(590), + [anon_sym_floor] = ACTIONS(590), + [anon_sym_13] = ACTIONS(590), + [anon_sym_ceiling] = ACTIONS(590), + [anon_sym_14] = ACTIONS(590), + [anon_sym_round] = ACTIONS(590), + [anon_sym_15] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_16] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_17] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_18] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_19] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_20] = ACTIONS(590), + [anon_sym_modulus] = ACTIONS(590), + [anon_sym_21] = ACTIONS(590), + [anon_sym_power] = ACTIONS(590), + [anon_sym_22] = ACTIONS(590), + [anon_sym_logarithm] = ACTIONS(590), + [anon_sym_23] = ACTIONS(590), + [anon_sym_minimum] = ACTIONS(590), + [anon_sym_24] = ACTIONS(590), + [anon_sym_maximum] = ACTIONS(590), + [anon_sym_25] = ACTIONS(590), + [anon_sym_atangent] = ACTIONS(590), + [anon_sym_26] = ACTIONS(590), + [anon_sym_length] = ACTIONS(590), + [anon_sym_27] = ACTIONS(590), + [anon_sym_shape] = ACTIONS(590), + [anon_sym_28] = ACTIONS(590), + [anon_sym_range] = ACTIONS(590), + [anon_sym_29] = ACTIONS(590), + [anon_sym_first] = ACTIONS(590), + [anon_sym_30] = ACTIONS(590), + [anon_sym_reverse] = ACTIONS(590), + [anon_sym_31] = ACTIONS(590), + [anon_sym_deshape] = ACTIONS(590), + [anon_sym_32] = ACTIONS(590), + [anon_sym_bits] = ACTIONS(590), + [anon_sym_33] = ACTIONS(590), + [anon_sym_transpose] = ACTIONS(590), + [anon_sym_34] = ACTIONS(590), + [anon_sym_rise] = ACTIONS(590), + [anon_sym_35] = ACTIONS(590), + [anon_sym_fall] = ACTIONS(590), + [anon_sym_36] = ACTIONS(590), + [anon_sym_where] = ACTIONS(590), + [anon_sym_37] = ACTIONS(590), + [anon_sym_classify] = ACTIONS(590), + [anon_sym_38] = ACTIONS(590), + [anon_sym_deduplicate] = ACTIONS(590), + [anon_sym_39] = ACTIONS(590), + [anon_sym_box] = ACTIONS(590), + [anon_sym_40] = ACTIONS(590), + [anon_sym_unbox] = ACTIONS(590), + [anon_sym_41] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_42] = ACTIONS(590), + [anon_sym_couple] = ACTIONS(590), + [anon_sym_43] = ACTIONS(590), + [anon_sym_join] = ACTIONS(590), + [anon_sym_44] = ACTIONS(590), + [anon_sym_select] = ACTIONS(590), + [anon_sym_45] = ACTIONS(590), + [anon_sym_pick] = ACTIONS(590), + [anon_sym_46] = ACTIONS(590), + [anon_sym_reshape] = ACTIONS(590), + [anon_sym_47] = ACTIONS(590), + [anon_sym_take] = ACTIONS(590), + [anon_sym_48] = ACTIONS(590), + [anon_sym_drop] = ACTIONS(590), + [anon_sym_49] = ACTIONS(590), + [anon_sym_rotate] = ACTIONS(590), + [anon_sym_50] = ACTIONS(590), + [anon_sym_windows] = ACTIONS(590), + [anon_sym_51] = ACTIONS(590), + [anon_sym_keep] = ACTIONS(590), + [anon_sym_52] = ACTIONS(590), + [anon_sym_find] = ACTIONS(590), + [anon_sym_53] = ACTIONS(590), + [anon_sym_member] = ACTIONS(590), + [anon_sym_54] = ACTIONS(590), + [anon_sym_indexof] = ACTIONS(590), + [anon_sym_55] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(590), + [anon_sym_56] = ACTIONS(590), + [anon_sym_wait] = ACTIONS(590), + [anon_sym_parse] = ACTIONS(590), + [anon_sym_random] = ACTIONS(590), + [anon_sym_57] = ACTIONS(590), + [anon_sym_gen] = ACTIONS(590), + [anon_sym_deal] = ACTIONS(590), + [anon_sym_tag] = ACTIONS(590), + [anon_sym_now] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_58] = ACTIONS(590), + [anon_sym_dump] = ACTIONS(590), + [anon_sym_regex] = ACTIONS(590), + [anon_sym_utf] = ACTIONS(590), + [anon_sym_send] = ACTIONS(590), + [anon_sym_recv] = ACTIONS(590), + [anon_sym_tryrecv] = ACTIONS(590), + [anon_sym_complex] = ACTIONS(590), + [anon_sym_59] = ACTIONS(590), + [anon_sym_rerank] = ACTIONS(590), + [anon_sym_60] = ACTIONS(590), + [anon_sym_fix] = ACTIONS(590), + [anon_sym_61] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_reduce] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_scan] = ACTIONS(590), + [anon_sym_BSLASH] = ACTIONS(590), + [anon_sym_each] = ACTIONS(590), + [anon_sym_62] = ACTIONS(590), + [anon_sym_rows] = ACTIONS(590), + [anon_sym_63] = ACTIONS(590), + [anon_sym_repeat] = ACTIONS(590), + [anon_sym_64] = ACTIONS(590), + [anon_sym_dip] = ACTIONS(590), + [anon_sym_65] = ACTIONS(590), + [anon_sym_gap] = ACTIONS(590), + [anon_sym_66] = ACTIONS(590), + [anon_sym_invert] = ACTIONS(590), + [anon_sym_67] = ACTIONS(590), + [anon_sym_spawn] = ACTIONS(590), + [anon_sym_pack] = ACTIONS(590), + [anon_sym_68] = ACTIONS(590), + [anon_sym_rectify] = ACTIONS(590), + [anon_sym_69] = ACTIONS(590), + [anon_sym_this] = ACTIONS(590), + [anon_sym_70] = ACTIONS(590), + [anon_sym_recur] = ACTIONS(590), + [anon_sym_71] = ACTIONS(590), + [anon_sym_fold] = ACTIONS(590), + [anon_sym_72] = ACTIONS(590), + [anon_sym_table] = ACTIONS(590), + [anon_sym_73] = ACTIONS(590), + [anon_sym_cross] = ACTIONS(590), + [anon_sym_74] = ACTIONS(590), + [anon_sym_group] = ACTIONS(590), + [anon_sym_75] = ACTIONS(590), + [anon_sym_partition] = ACTIONS(590), + [anon_sym_76] = ACTIONS(590), + [anon_sym_both] = ACTIONS(590), + [anon_sym_77] = ACTIONS(590), + [anon_sym_bracket] = ACTIONS(590), + [anon_sym_78] = ACTIONS(590), + [anon_sym_fork] = ACTIONS(590), + [anon_sym_79] = ACTIONS(590), + [anon_sym_under] = ACTIONS(590), + [anon_sym_80] = ACTIONS(590), + [anon_sym_fill] = ACTIONS(590), + [anon_sym_81] = ACTIONS(590), + [anon_sym_try] = ACTIONS(588), + [anon_sym_82] = ACTIONS(590), + [anon_sym_do] = ACTIONS(588), + [anon_sym_83] = ACTIONS(590), + [anon_sym_all] = ACTIONS(590), + [anon_sym_84] = ACTIONS(590), + [anon_sym_setinv] = ACTIONS(590), + [anon_sym_setunder] = ACTIONS(590), + [anon_sym_85] = ACTIONS(590), + [anon_sym_86] = ACTIONS(590), + [anon_sym_87] = ACTIONS(590), + [anon_sym_88] = ACTIONS(590), + [anon_sym_89] = ACTIONS(590), + [anon_sym_90] = ACTIONS(590), + [anon_sym_91] = ACTIONS(590), + [anon_sym_92] = ACTIONS(590), + [sym_emptyMultiLineString] = ACTIONS(590), + [sym__endOfLine] = ACTIONS(600), }, - [152] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(600), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), + [115] = { + [ts_builtin_sym_end] = ACTIONS(602), + [aux_sym_number_token1] = ACTIONS(594), + [sym_fraction] = ACTIONS(596), + [anon_sym_os] = ACTIONS(594), + [anon_sym_Family] = ACTIONS(594), + [anon_sym_Arch] = ACTIONS(594), + [anon_sym_ExeExt] = ACTIONS(594), + [anon_sym_PllExt] = ACTIONS(594), + [anon_sym_Sep] = ACTIONS(594), + [anon_sym_NUmProcs] = ACTIONS(594), + [anon_sym_] = ACTIONS(596), + [aux_sym_character_token1] = ACTIONS(596), + [sym_string] = ACTIONS(596), + [sym_multiLineString] = ACTIONS(596), + [sym_identifier] = ACTIONS(594), + [sym_identifierDeprecated] = ACTIONS(594), + [sym_system] = ACTIONS(596), + [sym_comment] = ACTIONS(594), + [sym_tripleMinus] = ACTIONS(596), + [sym_openParen] = ACTIONS(596), + [sym_openCurly] = ACTIONS(596), + [sym_openBracket] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_eta] = ACTIONS(596), + [anon_sym_2] = ACTIONS(594), + [anon_sym_pi] = ACTIONS(594), + [anon_sym_3] = ACTIONS(594), + [anon_sym_tau] = ACTIONS(596), + [anon_sym_4] = ACTIONS(594), + [anon_sym_infinity] = ACTIONS(596), + [anon_sym_5] = ACTIONS(596), + [anon_sym_e] = ACTIONS(594), + [anon_sym_NaN] = ACTIONS(594), + [anon_sym_NumProcs] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_identity] = ACTIONS(596), + [anon_sym_id] = ACTIONS(594), + [anon_sym_6] = ACTIONS(596), + [anon_sym_not] = ACTIONS(596), + [anon_sym_7] = ACTIONS(596), + [anon_sym_sign] = ACTIONS(596), + [anon_sym_8] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_9] = ACTIONS(594), + [anon_sym_absolutevalue] = ACTIONS(596), + [anon_sym_10] = ACTIONS(596), + [anon_sym_sqrt] = ACTIONS(596), + [anon_sym_11] = ACTIONS(596), + [anon_sym_sine] = ACTIONS(596), + [anon_sym_12] = ACTIONS(596), + [anon_sym_floor] = ACTIONS(596), + [anon_sym_13] = ACTIONS(596), + [anon_sym_ceiling] = ACTIONS(596), + [anon_sym_14] = ACTIONS(596), + [anon_sym_round] = ACTIONS(596), + [anon_sym_15] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_16] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_17] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_18] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_19] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_20] = ACTIONS(596), + [anon_sym_modulus] = ACTIONS(596), + [anon_sym_21] = ACTIONS(596), + [anon_sym_power] = ACTIONS(596), + [anon_sym_22] = ACTIONS(596), + [anon_sym_logarithm] = ACTIONS(596), + [anon_sym_23] = ACTIONS(596), + [anon_sym_minimum] = ACTIONS(596), + [anon_sym_24] = ACTIONS(596), + [anon_sym_maximum] = ACTIONS(596), + [anon_sym_25] = ACTIONS(596), + [anon_sym_atangent] = ACTIONS(596), + [anon_sym_26] = ACTIONS(596), + [anon_sym_length] = ACTIONS(596), + [anon_sym_27] = ACTIONS(596), + [anon_sym_shape] = ACTIONS(596), + [anon_sym_28] = ACTIONS(596), + [anon_sym_range] = ACTIONS(596), + [anon_sym_29] = ACTIONS(596), + [anon_sym_first] = ACTIONS(596), + [anon_sym_30] = ACTIONS(596), + [anon_sym_reverse] = ACTIONS(596), + [anon_sym_31] = ACTIONS(596), + [anon_sym_deshape] = ACTIONS(596), + [anon_sym_32] = ACTIONS(596), + [anon_sym_bits] = ACTIONS(596), + [anon_sym_33] = ACTIONS(596), + [anon_sym_transpose] = ACTIONS(596), + [anon_sym_34] = ACTIONS(596), + [anon_sym_rise] = ACTIONS(596), + [anon_sym_35] = ACTIONS(596), + [anon_sym_fall] = ACTIONS(596), + [anon_sym_36] = ACTIONS(596), + [anon_sym_where] = ACTIONS(596), + [anon_sym_37] = ACTIONS(596), + [anon_sym_classify] = ACTIONS(596), + [anon_sym_38] = ACTIONS(596), + [anon_sym_deduplicate] = ACTIONS(596), + [anon_sym_39] = ACTIONS(596), + [anon_sym_box] = ACTIONS(596), + [anon_sym_40] = ACTIONS(596), + [anon_sym_unbox] = ACTIONS(596), + [anon_sym_41] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_42] = ACTIONS(596), + [anon_sym_couple] = ACTIONS(596), + [anon_sym_43] = ACTIONS(596), + [anon_sym_join] = ACTIONS(596), + [anon_sym_44] = ACTIONS(596), + [anon_sym_select] = ACTIONS(596), + [anon_sym_45] = ACTIONS(596), + [anon_sym_pick] = ACTIONS(596), + [anon_sym_46] = ACTIONS(596), + [anon_sym_reshape] = ACTIONS(596), + [anon_sym_47] = ACTIONS(596), + [anon_sym_take] = ACTIONS(596), + [anon_sym_48] = ACTIONS(596), + [anon_sym_drop] = ACTIONS(596), + [anon_sym_49] = ACTIONS(596), + [anon_sym_rotate] = ACTIONS(596), + [anon_sym_50] = ACTIONS(596), + [anon_sym_windows] = ACTIONS(596), + [anon_sym_51] = ACTIONS(596), + [anon_sym_keep] = ACTIONS(596), + [anon_sym_52] = ACTIONS(596), + [anon_sym_find] = ACTIONS(596), + [anon_sym_53] = ACTIONS(596), + [anon_sym_member] = ACTIONS(596), + [anon_sym_54] = ACTIONS(596), + [anon_sym_indexof] = ACTIONS(596), + [anon_sym_55] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_56] = ACTIONS(596), + [anon_sym_wait] = ACTIONS(596), + [anon_sym_parse] = ACTIONS(596), + [anon_sym_random] = ACTIONS(596), + [anon_sym_57] = ACTIONS(596), + [anon_sym_gen] = ACTIONS(596), + [anon_sym_deal] = ACTIONS(596), + [anon_sym_tag] = ACTIONS(596), + [anon_sym_now] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_58] = ACTIONS(596), + [anon_sym_dump] = ACTIONS(596), + [anon_sym_regex] = ACTIONS(596), + [anon_sym_utf] = ACTIONS(596), + [anon_sym_send] = ACTIONS(596), + [anon_sym_recv] = ACTIONS(596), + [anon_sym_tryrecv] = ACTIONS(596), + [anon_sym_complex] = ACTIONS(596), + [anon_sym_59] = ACTIONS(596), + [anon_sym_rerank] = ACTIONS(596), + [anon_sym_60] = ACTIONS(596), + [anon_sym_fix] = ACTIONS(596), + [anon_sym_61] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_reduce] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_scan] = ACTIONS(596), + [anon_sym_BSLASH] = ACTIONS(596), + [anon_sym_each] = ACTIONS(596), + [anon_sym_62] = ACTIONS(596), + [anon_sym_rows] = ACTIONS(596), + [anon_sym_63] = ACTIONS(596), + [anon_sym_repeat] = ACTIONS(596), + [anon_sym_64] = ACTIONS(596), + [anon_sym_dip] = ACTIONS(596), + [anon_sym_65] = ACTIONS(596), + [anon_sym_gap] = ACTIONS(596), + [anon_sym_66] = ACTIONS(596), + [anon_sym_invert] = ACTIONS(596), + [anon_sym_67] = ACTIONS(596), + [anon_sym_spawn] = ACTIONS(596), + [anon_sym_pack] = ACTIONS(596), + [anon_sym_68] = ACTIONS(596), + [anon_sym_rectify] = ACTIONS(596), + [anon_sym_69] = ACTIONS(596), + [anon_sym_this] = ACTIONS(596), + [anon_sym_70] = ACTIONS(596), + [anon_sym_recur] = ACTIONS(596), + [anon_sym_71] = ACTIONS(596), + [anon_sym_fold] = ACTIONS(596), + [anon_sym_72] = ACTIONS(596), + [anon_sym_table] = ACTIONS(596), + [anon_sym_73] = ACTIONS(596), + [anon_sym_cross] = ACTIONS(596), + [anon_sym_74] = ACTIONS(596), + [anon_sym_group] = ACTIONS(596), + [anon_sym_75] = ACTIONS(596), + [anon_sym_partition] = ACTIONS(596), + [anon_sym_76] = ACTIONS(596), + [anon_sym_both] = ACTIONS(596), + [anon_sym_77] = ACTIONS(596), + [anon_sym_bracket] = ACTIONS(596), + [anon_sym_78] = ACTIONS(596), + [anon_sym_fork] = ACTIONS(596), + [anon_sym_79] = ACTIONS(596), + [anon_sym_under] = ACTIONS(596), + [anon_sym_80] = ACTIONS(596), + [anon_sym_fill] = ACTIONS(596), + [anon_sym_81] = ACTIONS(596), + [anon_sym_try] = ACTIONS(594), + [anon_sym_82] = ACTIONS(596), + [anon_sym_do] = ACTIONS(594), + [anon_sym_83] = ACTIONS(596), + [anon_sym_all] = ACTIONS(596), + [anon_sym_84] = ACTIONS(596), + [anon_sym_setinv] = ACTIONS(596), + [anon_sym_setunder] = ACTIONS(596), + [anon_sym_85] = ACTIONS(596), + [anon_sym_86] = ACTIONS(596), + [anon_sym_87] = ACTIONS(596), + [anon_sym_88] = ACTIONS(596), + [anon_sym_89] = ACTIONS(596), + [anon_sym_90] = ACTIONS(596), + [anon_sym_91] = ACTIONS(596), + [anon_sym_92] = ACTIONS(596), + [sym_emptyMultiLineString] = ACTIONS(596), [sym__endOfLine] = ACTIONS(5), }, - [153] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_tripleMinus] = ACTIONS(602), - [sym_openParen] = ACTIONS(582), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [116] = { + [ts_builtin_sym_end] = ACTIONS(506), + [aux_sym_number_token1] = ACTIONS(504), + [sym_fraction] = ACTIONS(506), + [anon_sym_os] = ACTIONS(504), + [anon_sym_Family] = ACTIONS(504), + [anon_sym_Arch] = ACTIONS(504), + [anon_sym_ExeExt] = ACTIONS(504), + [anon_sym_PllExt] = ACTIONS(504), + [anon_sym_Sep] = ACTIONS(504), + [anon_sym_NUmProcs] = ACTIONS(504), + [anon_sym_] = ACTIONS(506), + [aux_sym_character_token1] = ACTIONS(506), + [sym_string] = ACTIONS(506), + [sym_multiLineString] = ACTIONS(506), + [sym_identifier] = ACTIONS(504), + [sym_identifierDeprecated] = ACTIONS(504), + [sym_system] = ACTIONS(506), + [sym_comment] = ACTIONS(504), + [sym_openParen] = ACTIONS(506), + [sym_openCurly] = ACTIONS(506), + [sym_openBracket] = ACTIONS(506), + [sym_underscore] = ACTIONS(506), + [sym_leftArrow] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(504), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(506), + [anon_sym_eta] = ACTIONS(506), + [anon_sym_2] = ACTIONS(504), + [anon_sym_pi] = ACTIONS(504), + [anon_sym_3] = ACTIONS(504), + [anon_sym_tau] = ACTIONS(506), + [anon_sym_4] = ACTIONS(504), + [anon_sym_infinity] = ACTIONS(506), + [anon_sym_5] = ACTIONS(506), + [anon_sym_e] = ACTIONS(504), + [anon_sym_NaN] = ACTIONS(504), + [anon_sym_NumProcs] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_identity] = ACTIONS(506), + [anon_sym_id] = ACTIONS(504), + [anon_sym_6] = ACTIONS(506), + [anon_sym_not] = ACTIONS(506), + [anon_sym_7] = ACTIONS(506), + [anon_sym_sign] = ACTIONS(506), + [anon_sym_8] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(506), + [anon_sym_9] = ACTIONS(504), + [anon_sym_absolutevalue] = ACTIONS(506), + [anon_sym_10] = ACTIONS(506), + [anon_sym_sqrt] = ACTIONS(506), + [anon_sym_11] = ACTIONS(506), + [anon_sym_sine] = ACTIONS(506), + [anon_sym_12] = ACTIONS(506), + [anon_sym_floor] = ACTIONS(506), + [anon_sym_13] = ACTIONS(506), + [anon_sym_ceiling] = ACTIONS(506), + [anon_sym_14] = ACTIONS(506), + [anon_sym_round] = ACTIONS(506), + [anon_sym_15] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_16] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_17] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_18] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_19] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_20] = ACTIONS(506), + [anon_sym_modulus] = ACTIONS(506), + [anon_sym_21] = ACTIONS(506), + [anon_sym_power] = ACTIONS(506), + [anon_sym_22] = ACTIONS(506), + [anon_sym_logarithm] = ACTIONS(506), + [anon_sym_23] = ACTIONS(506), + [anon_sym_minimum] = ACTIONS(506), + [anon_sym_24] = ACTIONS(506), + [anon_sym_maximum] = ACTIONS(506), + [anon_sym_25] = ACTIONS(506), + [anon_sym_atangent] = ACTIONS(506), + [anon_sym_26] = ACTIONS(506), + [anon_sym_length] = ACTIONS(506), + [anon_sym_27] = ACTIONS(506), + [anon_sym_shape] = ACTIONS(506), + [anon_sym_28] = ACTIONS(506), + [anon_sym_range] = ACTIONS(506), + [anon_sym_29] = ACTIONS(506), + [anon_sym_first] = ACTIONS(506), + [anon_sym_30] = ACTIONS(506), + [anon_sym_reverse] = ACTIONS(506), + [anon_sym_31] = ACTIONS(506), + [anon_sym_deshape] = ACTIONS(506), + [anon_sym_32] = ACTIONS(506), + [anon_sym_bits] = ACTIONS(506), + [anon_sym_33] = ACTIONS(506), + [anon_sym_transpose] = ACTIONS(506), + [anon_sym_34] = ACTIONS(506), + [anon_sym_rise] = ACTIONS(506), + [anon_sym_35] = ACTIONS(506), + [anon_sym_fall] = ACTIONS(506), + [anon_sym_36] = ACTIONS(506), + [anon_sym_where] = ACTIONS(506), + [anon_sym_37] = ACTIONS(506), + [anon_sym_classify] = ACTIONS(506), + [anon_sym_38] = ACTIONS(506), + [anon_sym_deduplicate] = ACTIONS(506), + [anon_sym_39] = ACTIONS(506), + [anon_sym_box] = ACTIONS(506), + [anon_sym_40] = ACTIONS(506), + [anon_sym_unbox] = ACTIONS(506), + [anon_sym_41] = ACTIONS(506), + [anon_sym_match] = ACTIONS(506), + [anon_sym_42] = ACTIONS(506), + [anon_sym_couple] = ACTIONS(506), + [anon_sym_43] = ACTIONS(506), + [anon_sym_join] = ACTIONS(506), + [anon_sym_44] = ACTIONS(506), + [anon_sym_select] = ACTIONS(506), + [anon_sym_45] = ACTIONS(506), + [anon_sym_pick] = ACTIONS(506), + [anon_sym_46] = ACTIONS(506), + [anon_sym_reshape] = ACTIONS(506), + [anon_sym_47] = ACTIONS(506), + [anon_sym_take] = ACTIONS(506), + [anon_sym_48] = ACTIONS(506), + [anon_sym_drop] = ACTIONS(506), + [anon_sym_49] = ACTIONS(506), + [anon_sym_rotate] = ACTIONS(506), + [anon_sym_50] = ACTIONS(506), + [anon_sym_windows] = ACTIONS(506), + [anon_sym_51] = ACTIONS(506), + [anon_sym_keep] = ACTIONS(506), + [anon_sym_52] = ACTIONS(506), + [anon_sym_find] = ACTIONS(506), + [anon_sym_53] = ACTIONS(506), + [anon_sym_member] = ACTIONS(506), + [anon_sym_54] = ACTIONS(506), + [anon_sym_indexof] = ACTIONS(506), + [anon_sym_55] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(506), + [anon_sym_56] = ACTIONS(506), + [anon_sym_wait] = ACTIONS(506), + [anon_sym_parse] = ACTIONS(506), + [anon_sym_random] = ACTIONS(506), + [anon_sym_57] = ACTIONS(506), + [anon_sym_gen] = ACTIONS(506), + [anon_sym_deal] = ACTIONS(506), + [anon_sym_tag] = ACTIONS(506), + [anon_sym_now] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_58] = ACTIONS(506), + [anon_sym_dump] = ACTIONS(506), + [anon_sym_regex] = ACTIONS(506), + [anon_sym_utf] = ACTIONS(506), + [anon_sym_send] = ACTIONS(506), + [anon_sym_recv] = ACTIONS(506), + [anon_sym_tryrecv] = ACTIONS(506), + [anon_sym_complex] = ACTIONS(506), + [anon_sym_59] = ACTIONS(506), + [anon_sym_rerank] = ACTIONS(506), + [anon_sym_60] = ACTIONS(506), + [anon_sym_fix] = ACTIONS(506), + [anon_sym_61] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_reduce] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_scan] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(506), + [anon_sym_each] = ACTIONS(506), + [anon_sym_62] = ACTIONS(506), + [anon_sym_rows] = ACTIONS(506), + [anon_sym_63] = ACTIONS(506), + [anon_sym_repeat] = ACTIONS(506), + [anon_sym_64] = ACTIONS(506), + [anon_sym_dip] = ACTIONS(506), + [anon_sym_65] = ACTIONS(506), + [anon_sym_gap] = ACTIONS(506), + [anon_sym_66] = ACTIONS(506), + [anon_sym_invert] = ACTIONS(506), + [anon_sym_67] = ACTIONS(506), + [anon_sym_spawn] = ACTIONS(506), + [anon_sym_pack] = ACTIONS(506), + [anon_sym_68] = ACTIONS(506), + [anon_sym_rectify] = ACTIONS(506), + [anon_sym_69] = ACTIONS(506), + [anon_sym_this] = ACTIONS(506), + [anon_sym_70] = ACTIONS(506), + [anon_sym_recur] = ACTIONS(506), + [anon_sym_71] = ACTIONS(506), + [anon_sym_fold] = ACTIONS(506), + [anon_sym_72] = ACTIONS(506), + [anon_sym_table] = ACTIONS(506), + [anon_sym_73] = ACTIONS(506), + [anon_sym_cross] = ACTIONS(506), + [anon_sym_74] = ACTIONS(506), + [anon_sym_group] = ACTIONS(506), + [anon_sym_75] = ACTIONS(506), + [anon_sym_partition] = ACTIONS(506), + [anon_sym_76] = ACTIONS(506), + [anon_sym_both] = ACTIONS(506), + [anon_sym_77] = ACTIONS(506), + [anon_sym_bracket] = ACTIONS(506), + [anon_sym_78] = ACTIONS(506), + [anon_sym_fork] = ACTIONS(506), + [anon_sym_79] = ACTIONS(506), + [anon_sym_under] = ACTIONS(506), + [anon_sym_80] = ACTIONS(506), + [anon_sym_fill] = ACTIONS(506), + [anon_sym_81] = ACTIONS(506), + [anon_sym_try] = ACTIONS(504), + [anon_sym_82] = ACTIONS(506), + [anon_sym_do] = ACTIONS(504), + [anon_sym_83] = ACTIONS(506), + [anon_sym_all] = ACTIONS(506), + [anon_sym_84] = ACTIONS(506), + [anon_sym_setinv] = ACTIONS(506), + [anon_sym_setunder] = ACTIONS(506), + [anon_sym_85] = ACTIONS(506), + [anon_sym_86] = ACTIONS(506), + [anon_sym_87] = ACTIONS(506), + [anon_sym_88] = ACTIONS(506), + [anon_sym_89] = ACTIONS(506), + [anon_sym_90] = ACTIONS(506), + [anon_sym_91] = ACTIONS(506), + [anon_sym_92] = ACTIONS(506), + [sym__endOfLine] = ACTIONS(506), }, - [154] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(604), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [117] = { + [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_number_token1] = ACTIONS(516), + [sym_fraction] = ACTIONS(518), + [anon_sym_os] = ACTIONS(516), + [anon_sym_Family] = ACTIONS(516), + [anon_sym_Arch] = ACTIONS(516), + [anon_sym_ExeExt] = ACTIONS(516), + [anon_sym_PllExt] = ACTIONS(516), + [anon_sym_Sep] = ACTIONS(516), + [anon_sym_NUmProcs] = ACTIONS(516), + [anon_sym_] = ACTIONS(518), + [aux_sym_character_token1] = ACTIONS(518), + [sym_string] = ACTIONS(518), + [sym_multiLineString] = ACTIONS(518), + [sym_identifier] = ACTIONS(516), + [sym_identifierDeprecated] = ACTIONS(516), + [sym_system] = ACTIONS(518), + [sym_comment] = ACTIONS(516), + [sym_openParen] = ACTIONS(518), + [sym_openCurly] = ACTIONS(518), + [sym_openBracket] = ACTIONS(518), + [sym_underscore] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(518), + [anon_sym_eta] = ACTIONS(518), + [anon_sym_2] = ACTIONS(516), + [anon_sym_pi] = ACTIONS(516), + [anon_sym_3] = ACTIONS(516), + [anon_sym_tau] = ACTIONS(518), + [anon_sym_4] = ACTIONS(516), + [anon_sym_infinity] = ACTIONS(518), + [anon_sym_5] = ACTIONS(518), + [anon_sym_e] = ACTIONS(516), + [anon_sym_NaN] = ACTIONS(516), + [anon_sym_NumProcs] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_identity] = ACTIONS(518), + [anon_sym_id] = ACTIONS(516), + [anon_sym_6] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_7] = ACTIONS(518), + [anon_sym_sign] = ACTIONS(518), + [anon_sym_8] = ACTIONS(518), + [anon_sym_BQUOTE] = ACTIONS(518), + [anon_sym_9] = ACTIONS(516), + [anon_sym_absolutevalue] = ACTIONS(518), + [anon_sym_10] = ACTIONS(518), + [anon_sym_sqrt] = ACTIONS(518), + [anon_sym_11] = ACTIONS(518), + [anon_sym_sine] = ACTIONS(518), + [anon_sym_12] = ACTIONS(518), + [anon_sym_floor] = ACTIONS(518), + [anon_sym_13] = ACTIONS(518), + [anon_sym_ceiling] = ACTIONS(518), + [anon_sym_14] = ACTIONS(518), + [anon_sym_round] = ACTIONS(518), + [anon_sym_15] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_16] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_17] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_18] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_19] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_20] = ACTIONS(518), + [anon_sym_modulus] = ACTIONS(518), + [anon_sym_21] = ACTIONS(518), + [anon_sym_power] = ACTIONS(518), + [anon_sym_22] = ACTIONS(518), + [anon_sym_logarithm] = ACTIONS(518), + [anon_sym_23] = ACTIONS(518), + [anon_sym_minimum] = ACTIONS(518), + [anon_sym_24] = ACTIONS(518), + [anon_sym_maximum] = ACTIONS(518), + [anon_sym_25] = ACTIONS(518), + [anon_sym_atangent] = ACTIONS(518), + [anon_sym_26] = ACTIONS(518), + [anon_sym_length] = ACTIONS(518), + [anon_sym_27] = ACTIONS(518), + [anon_sym_shape] = ACTIONS(518), + [anon_sym_28] = ACTIONS(518), + [anon_sym_range] = ACTIONS(518), + [anon_sym_29] = ACTIONS(518), + [anon_sym_first] = ACTIONS(518), + [anon_sym_30] = ACTIONS(518), + [anon_sym_reverse] = ACTIONS(518), + [anon_sym_31] = ACTIONS(518), + [anon_sym_deshape] = ACTIONS(518), + [anon_sym_32] = ACTIONS(518), + [anon_sym_bits] = ACTIONS(518), + [anon_sym_33] = ACTIONS(518), + [anon_sym_transpose] = ACTIONS(518), + [anon_sym_34] = ACTIONS(518), + [anon_sym_rise] = ACTIONS(518), + [anon_sym_35] = ACTIONS(518), + [anon_sym_fall] = ACTIONS(518), + [anon_sym_36] = ACTIONS(518), + [anon_sym_where] = ACTIONS(518), + [anon_sym_37] = ACTIONS(518), + [anon_sym_classify] = ACTIONS(518), + [anon_sym_38] = ACTIONS(518), + [anon_sym_deduplicate] = ACTIONS(518), + [anon_sym_39] = ACTIONS(518), + [anon_sym_box] = ACTIONS(518), + [anon_sym_40] = ACTIONS(518), + [anon_sym_unbox] = ACTIONS(518), + [anon_sym_41] = ACTIONS(518), + [anon_sym_match] = ACTIONS(518), + [anon_sym_42] = ACTIONS(518), + [anon_sym_couple] = ACTIONS(518), + [anon_sym_43] = ACTIONS(518), + [anon_sym_join] = ACTIONS(518), + [anon_sym_44] = ACTIONS(518), + [anon_sym_select] = ACTIONS(518), + [anon_sym_45] = ACTIONS(518), + [anon_sym_pick] = ACTIONS(518), + [anon_sym_46] = ACTIONS(518), + [anon_sym_reshape] = ACTIONS(518), + [anon_sym_47] = ACTIONS(518), + [anon_sym_take] = ACTIONS(518), + [anon_sym_48] = ACTIONS(518), + [anon_sym_drop] = ACTIONS(518), + [anon_sym_49] = ACTIONS(518), + [anon_sym_rotate] = ACTIONS(518), + [anon_sym_50] = ACTIONS(518), + [anon_sym_windows] = ACTIONS(518), + [anon_sym_51] = ACTIONS(518), + [anon_sym_keep] = ACTIONS(518), + [anon_sym_52] = ACTIONS(518), + [anon_sym_find] = ACTIONS(518), + [anon_sym_53] = ACTIONS(518), + [anon_sym_member] = ACTIONS(518), + [anon_sym_54] = ACTIONS(518), + [anon_sym_indexof] = ACTIONS(518), + [anon_sym_55] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(518), + [anon_sym_56] = ACTIONS(518), + [anon_sym_wait] = ACTIONS(518), + [anon_sym_parse] = ACTIONS(518), + [anon_sym_random] = ACTIONS(518), + [anon_sym_57] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_deal] = ACTIONS(518), + [anon_sym_tag] = ACTIONS(518), + [anon_sym_now] = ACTIONS(518), + [anon_sym_type] = ACTIONS(518), + [anon_sym_58] = ACTIONS(518), + [anon_sym_dump] = ACTIONS(518), + [anon_sym_regex] = ACTIONS(518), + [anon_sym_utf] = ACTIONS(518), + [anon_sym_send] = ACTIONS(518), + [anon_sym_recv] = ACTIONS(518), + [anon_sym_tryrecv] = ACTIONS(518), + [anon_sym_complex] = ACTIONS(518), + [anon_sym_59] = ACTIONS(518), + [anon_sym_rerank] = ACTIONS(518), + [anon_sym_60] = ACTIONS(518), + [anon_sym_fix] = ACTIONS(518), + [anon_sym_61] = ACTIONS(518), + [anon_sym_QMARK] = ACTIONS(518), + [anon_sym_reduce] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_scan] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(518), + [anon_sym_each] = ACTIONS(518), + [anon_sym_62] = ACTIONS(518), + [anon_sym_rows] = ACTIONS(518), + [anon_sym_63] = ACTIONS(518), + [anon_sym_repeat] = ACTIONS(518), + [anon_sym_64] = ACTIONS(518), + [anon_sym_dip] = ACTIONS(518), + [anon_sym_65] = ACTIONS(518), + [anon_sym_gap] = ACTIONS(518), + [anon_sym_66] = ACTIONS(518), + [anon_sym_invert] = ACTIONS(518), + [anon_sym_67] = ACTIONS(518), + [anon_sym_spawn] = ACTIONS(518), + [anon_sym_pack] = ACTIONS(518), + [anon_sym_68] = ACTIONS(518), + [anon_sym_rectify] = ACTIONS(518), + [anon_sym_69] = ACTIONS(518), + [anon_sym_this] = ACTIONS(518), + [anon_sym_70] = ACTIONS(518), + [anon_sym_recur] = ACTIONS(518), + [anon_sym_71] = ACTIONS(518), + [anon_sym_fold] = ACTIONS(518), + [anon_sym_72] = ACTIONS(518), + [anon_sym_table] = ACTIONS(518), + [anon_sym_73] = ACTIONS(518), + [anon_sym_cross] = ACTIONS(518), + [anon_sym_74] = ACTIONS(518), + [anon_sym_group] = ACTIONS(518), + [anon_sym_75] = ACTIONS(518), + [anon_sym_partition] = ACTIONS(518), + [anon_sym_76] = ACTIONS(518), + [anon_sym_both] = ACTIONS(518), + [anon_sym_77] = ACTIONS(518), + [anon_sym_bracket] = ACTIONS(518), + [anon_sym_78] = ACTIONS(518), + [anon_sym_fork] = ACTIONS(518), + [anon_sym_79] = ACTIONS(518), + [anon_sym_under] = ACTIONS(518), + [anon_sym_80] = ACTIONS(518), + [anon_sym_fill] = ACTIONS(518), + [anon_sym_81] = ACTIONS(518), + [anon_sym_try] = ACTIONS(516), + [anon_sym_82] = ACTIONS(518), + [anon_sym_do] = ACTIONS(516), + [anon_sym_83] = ACTIONS(518), + [anon_sym_all] = ACTIONS(518), + [anon_sym_84] = ACTIONS(518), + [anon_sym_setinv] = ACTIONS(518), + [anon_sym_setunder] = ACTIONS(518), + [anon_sym_85] = ACTIONS(518), + [anon_sym_86] = ACTIONS(518), + [anon_sym_87] = ACTIONS(518), + [anon_sym_88] = ACTIONS(518), + [anon_sym_89] = ACTIONS(518), + [anon_sym_90] = ACTIONS(518), + [anon_sym_91] = ACTIONS(518), + [anon_sym_92] = ACTIONS(518), + [sym__endOfLine] = ACTIONS(518), }, - [155] = { + [118] = { [aux_sym_number_token1] = ACTIONS(606), [sym_fraction] = ACTIONS(608), [anon_sym_os] = ACTIONS(606), @@ -44373,15 +35617,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_character_token1] = ACTIONS(608), [sym_string] = ACTIONS(608), [sym_multiLineString] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(608), [sym_identifier] = ACTIONS(606), [sym_identifierDeprecated] = ACTIONS(606), [sym_system] = ACTIONS(608), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(606), [sym_openParen] = ACTIONS(608), [sym_openCurly] = ACTIONS(608), + [sym_closeCurly] = ACTIONS(608), [sym_openBracket] = ACTIONS(608), + [sym_closeBracket] = ACTIONS(608), [anon_sym_CARET] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(608), [anon_sym_eta] = ACTIONS(608), [anon_sym_2] = ACTIONS(606), [anon_sym_pi] = ACTIONS(606), @@ -44527,6 +35774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_60] = ACTIONS(608), [anon_sym_fix] = ACTIONS(608), [anon_sym_61] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(608), [anon_sym_reduce] = ACTIONS(608), [anon_sym_SLASH] = ACTIONS(608), [anon_sym_scan] = ACTIONS(608), @@ -44588,4345 +35836,13492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(608), [anon_sym_91] = ACTIONS(608), [anon_sym_92] = ACTIONS(608), - [anon_sym_93] = ACTIONS(608), - [anon_sym_94] = ACTIONS(608), - [anon_sym_95] = ACTIONS(608), - [anon_sym_96] = ACTIONS(608), + [sym__endOfLine] = ACTIONS(610), + }, + [119] = { + [ts_builtin_sym_end] = ACTIONS(562), + [aux_sym_number_token1] = ACTIONS(560), + [sym_fraction] = ACTIONS(562), + [anon_sym_os] = ACTIONS(560), + [anon_sym_Family] = ACTIONS(560), + [anon_sym_Arch] = ACTIONS(560), + [anon_sym_ExeExt] = ACTIONS(560), + [anon_sym_PllExt] = ACTIONS(560), + [anon_sym_Sep] = ACTIONS(560), + [anon_sym_NUmProcs] = ACTIONS(560), + [anon_sym_] = ACTIONS(562), + [aux_sym_character_token1] = ACTIONS(562), + [sym_string] = ACTIONS(562), + [sym_multiLineString] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), + [sym_identifierDeprecated] = ACTIONS(560), + [sym_system] = ACTIONS(562), + [sym_comment] = ACTIONS(560), + [sym_openParen] = ACTIONS(562), + [sym_openCurly] = ACTIONS(562), + [sym_openBracket] = ACTIONS(562), + [sym_underscore] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(562), + [anon_sym_eta] = ACTIONS(562), + [anon_sym_2] = ACTIONS(560), + [anon_sym_pi] = ACTIONS(560), + [anon_sym_3] = ACTIONS(560), + [anon_sym_tau] = ACTIONS(562), + [anon_sym_4] = ACTIONS(560), + [anon_sym_infinity] = ACTIONS(562), + [anon_sym_5] = ACTIONS(562), + [anon_sym_e] = ACTIONS(560), + [anon_sym_NaN] = ACTIONS(560), + [anon_sym_NumProcs] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_identity] = ACTIONS(562), + [anon_sym_id] = ACTIONS(560), + [anon_sym_6] = ACTIONS(562), + [anon_sym_not] = ACTIONS(562), + [anon_sym_7] = ACTIONS(562), + [anon_sym_sign] = ACTIONS(562), + [anon_sym_8] = ACTIONS(562), + [anon_sym_BQUOTE] = ACTIONS(562), + [anon_sym_9] = ACTIONS(560), + [anon_sym_absolutevalue] = ACTIONS(562), + [anon_sym_10] = ACTIONS(562), + [anon_sym_sqrt] = ACTIONS(562), + [anon_sym_11] = ACTIONS(562), + [anon_sym_sine] = ACTIONS(562), + [anon_sym_12] = ACTIONS(562), + [anon_sym_floor] = ACTIONS(562), + [anon_sym_13] = ACTIONS(562), + [anon_sym_ceiling] = ACTIONS(562), + [anon_sym_14] = ACTIONS(562), + [anon_sym_round] = ACTIONS(562), + [anon_sym_15] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_16] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_17] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_18] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_19] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_20] = ACTIONS(562), + [anon_sym_modulus] = ACTIONS(562), + [anon_sym_21] = ACTIONS(562), + [anon_sym_power] = ACTIONS(562), + [anon_sym_22] = ACTIONS(562), + [anon_sym_logarithm] = ACTIONS(562), + [anon_sym_23] = ACTIONS(562), + [anon_sym_minimum] = ACTIONS(562), + [anon_sym_24] = ACTIONS(562), + [anon_sym_maximum] = ACTIONS(562), + [anon_sym_25] = ACTIONS(562), + [anon_sym_atangent] = ACTIONS(562), + [anon_sym_26] = ACTIONS(562), + [anon_sym_length] = ACTIONS(562), + [anon_sym_27] = ACTIONS(562), + [anon_sym_shape] = ACTIONS(562), + [anon_sym_28] = ACTIONS(562), + [anon_sym_range] = ACTIONS(562), + [anon_sym_29] = ACTIONS(562), + [anon_sym_first] = ACTIONS(562), + [anon_sym_30] = ACTIONS(562), + [anon_sym_reverse] = ACTIONS(562), + [anon_sym_31] = ACTIONS(562), + [anon_sym_deshape] = ACTIONS(562), + [anon_sym_32] = ACTIONS(562), + [anon_sym_bits] = ACTIONS(562), + [anon_sym_33] = ACTIONS(562), + [anon_sym_transpose] = ACTIONS(562), + [anon_sym_34] = ACTIONS(562), + [anon_sym_rise] = ACTIONS(562), + [anon_sym_35] = ACTIONS(562), + [anon_sym_fall] = ACTIONS(562), + [anon_sym_36] = ACTIONS(562), + [anon_sym_where] = ACTIONS(562), + [anon_sym_37] = ACTIONS(562), + [anon_sym_classify] = ACTIONS(562), + [anon_sym_38] = ACTIONS(562), + [anon_sym_deduplicate] = ACTIONS(562), + [anon_sym_39] = ACTIONS(562), + [anon_sym_box] = ACTIONS(562), + [anon_sym_40] = ACTIONS(562), + [anon_sym_unbox] = ACTIONS(562), + [anon_sym_41] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_42] = ACTIONS(562), + [anon_sym_couple] = ACTIONS(562), + [anon_sym_43] = ACTIONS(562), + [anon_sym_join] = ACTIONS(562), + [anon_sym_44] = ACTIONS(562), + [anon_sym_select] = ACTIONS(562), + [anon_sym_45] = ACTIONS(562), + [anon_sym_pick] = ACTIONS(562), + [anon_sym_46] = ACTIONS(562), + [anon_sym_reshape] = ACTIONS(562), + [anon_sym_47] = ACTIONS(562), + [anon_sym_take] = ACTIONS(562), + [anon_sym_48] = ACTIONS(562), + [anon_sym_drop] = ACTIONS(562), + [anon_sym_49] = ACTIONS(562), + [anon_sym_rotate] = ACTIONS(562), + [anon_sym_50] = ACTIONS(562), + [anon_sym_windows] = ACTIONS(562), + [anon_sym_51] = ACTIONS(562), + [anon_sym_keep] = ACTIONS(562), + [anon_sym_52] = ACTIONS(562), + [anon_sym_find] = ACTIONS(562), + [anon_sym_53] = ACTIONS(562), + [anon_sym_member] = ACTIONS(562), + [anon_sym_54] = ACTIONS(562), + [anon_sym_indexof] = ACTIONS(562), + [anon_sym_55] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(562), + [anon_sym_56] = ACTIONS(562), + [anon_sym_wait] = ACTIONS(562), + [anon_sym_parse] = ACTIONS(562), + [anon_sym_random] = ACTIONS(562), + [anon_sym_57] = ACTIONS(562), + [anon_sym_gen] = ACTIONS(562), + [anon_sym_deal] = ACTIONS(562), + [anon_sym_tag] = ACTIONS(562), + [anon_sym_now] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_58] = ACTIONS(562), + [anon_sym_dump] = ACTIONS(562), + [anon_sym_regex] = ACTIONS(562), + [anon_sym_utf] = ACTIONS(562), + [anon_sym_send] = ACTIONS(562), + [anon_sym_recv] = ACTIONS(562), + [anon_sym_tryrecv] = ACTIONS(562), + [anon_sym_complex] = ACTIONS(562), + [anon_sym_59] = ACTIONS(562), + [anon_sym_rerank] = ACTIONS(562), + [anon_sym_60] = ACTIONS(562), + [anon_sym_fix] = ACTIONS(562), + [anon_sym_61] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_reduce] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_scan] = ACTIONS(562), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_each] = ACTIONS(562), + [anon_sym_62] = ACTIONS(562), + [anon_sym_rows] = ACTIONS(562), + [anon_sym_63] = ACTIONS(562), + [anon_sym_repeat] = ACTIONS(562), + [anon_sym_64] = ACTIONS(562), + [anon_sym_dip] = ACTIONS(562), + [anon_sym_65] = ACTIONS(562), + [anon_sym_gap] = ACTIONS(562), + [anon_sym_66] = ACTIONS(562), + [anon_sym_invert] = ACTIONS(562), + [anon_sym_67] = ACTIONS(562), + [anon_sym_spawn] = ACTIONS(562), + [anon_sym_pack] = ACTIONS(562), + [anon_sym_68] = ACTIONS(562), + [anon_sym_rectify] = ACTIONS(562), + [anon_sym_69] = ACTIONS(562), + [anon_sym_this] = ACTIONS(562), + [anon_sym_70] = ACTIONS(562), + [anon_sym_recur] = ACTIONS(562), + [anon_sym_71] = ACTIONS(562), + [anon_sym_fold] = ACTIONS(562), + [anon_sym_72] = ACTIONS(562), + [anon_sym_table] = ACTIONS(562), + [anon_sym_73] = ACTIONS(562), + [anon_sym_cross] = ACTIONS(562), + [anon_sym_74] = ACTIONS(562), + [anon_sym_group] = ACTIONS(562), + [anon_sym_75] = ACTIONS(562), + [anon_sym_partition] = ACTIONS(562), + [anon_sym_76] = ACTIONS(562), + [anon_sym_both] = ACTIONS(562), + [anon_sym_77] = ACTIONS(562), + [anon_sym_bracket] = ACTIONS(562), + [anon_sym_78] = ACTIONS(562), + [anon_sym_fork] = ACTIONS(562), + [anon_sym_79] = ACTIONS(562), + [anon_sym_under] = ACTIONS(562), + [anon_sym_80] = ACTIONS(562), + [anon_sym_fill] = ACTIONS(562), + [anon_sym_81] = ACTIONS(562), + [anon_sym_try] = ACTIONS(560), + [anon_sym_82] = ACTIONS(562), + [anon_sym_do] = ACTIONS(560), + [anon_sym_83] = ACTIONS(562), + [anon_sym_all] = ACTIONS(562), + [anon_sym_84] = ACTIONS(562), + [anon_sym_setinv] = ACTIONS(562), + [anon_sym_setunder] = ACTIONS(562), + [anon_sym_85] = ACTIONS(562), + [anon_sym_86] = ACTIONS(562), + [anon_sym_87] = ACTIONS(562), + [anon_sym_88] = ACTIONS(562), + [anon_sym_89] = ACTIONS(562), + [anon_sym_90] = ACTIONS(562), + [anon_sym_91] = ACTIONS(562), + [anon_sym_92] = ACTIONS(562), + [sym__endOfLine] = ACTIONS(562), + }, + [120] = { + [ts_builtin_sym_end] = ACTIONS(514), + [aux_sym_number_token1] = ACTIONS(512), + [sym_fraction] = ACTIONS(514), + [anon_sym_os] = ACTIONS(512), + [anon_sym_Family] = ACTIONS(512), + [anon_sym_Arch] = ACTIONS(512), + [anon_sym_ExeExt] = ACTIONS(512), + [anon_sym_PllExt] = ACTIONS(512), + [anon_sym_Sep] = ACTIONS(512), + [anon_sym_NUmProcs] = ACTIONS(512), + [anon_sym_] = ACTIONS(514), + [aux_sym_character_token1] = ACTIONS(514), + [sym_string] = ACTIONS(514), + [sym_multiLineString] = ACTIONS(514), + [sym_identifier] = ACTIONS(512), + [sym_identifierDeprecated] = ACTIONS(512), + [sym_system] = ACTIONS(514), + [sym_comment] = ACTIONS(512), + [sym_openParen] = ACTIONS(514), + [sym_openCurly] = ACTIONS(514), + [sym_openBracket] = ACTIONS(514), + [sym_underscore] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(514), + [anon_sym_eta] = ACTIONS(514), + [anon_sym_2] = ACTIONS(512), + [anon_sym_pi] = ACTIONS(512), + [anon_sym_3] = ACTIONS(512), + [anon_sym_tau] = ACTIONS(514), + [anon_sym_4] = ACTIONS(512), + [anon_sym_infinity] = ACTIONS(514), + [anon_sym_5] = ACTIONS(514), + [anon_sym_e] = ACTIONS(512), + [anon_sym_NaN] = ACTIONS(512), + [anon_sym_NumProcs] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_COLON] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_identity] = ACTIONS(514), + [anon_sym_id] = ACTIONS(512), + [anon_sym_6] = ACTIONS(514), + [anon_sym_not] = ACTIONS(514), + [anon_sym_7] = ACTIONS(514), + [anon_sym_sign] = ACTIONS(514), + [anon_sym_8] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_9] = ACTIONS(512), + [anon_sym_absolutevalue] = ACTIONS(514), + [anon_sym_10] = ACTIONS(514), + [anon_sym_sqrt] = ACTIONS(514), + [anon_sym_11] = ACTIONS(514), + [anon_sym_sine] = ACTIONS(514), + [anon_sym_12] = ACTIONS(514), + [anon_sym_floor] = ACTIONS(514), + [anon_sym_13] = ACTIONS(514), + [anon_sym_ceiling] = ACTIONS(514), + [anon_sym_14] = ACTIONS(514), + [anon_sym_round] = ACTIONS(514), + [anon_sym_15] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_16] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(514), + [anon_sym_17] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(514), + [anon_sym_18] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_19] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_20] = ACTIONS(514), + [anon_sym_modulus] = ACTIONS(514), + [anon_sym_21] = ACTIONS(514), + [anon_sym_power] = ACTIONS(514), + [anon_sym_22] = ACTIONS(514), + [anon_sym_logarithm] = ACTIONS(514), + [anon_sym_23] = ACTIONS(514), + [anon_sym_minimum] = ACTIONS(514), + [anon_sym_24] = ACTIONS(514), + [anon_sym_maximum] = ACTIONS(514), + [anon_sym_25] = ACTIONS(514), + [anon_sym_atangent] = ACTIONS(514), + [anon_sym_26] = ACTIONS(514), + [anon_sym_length] = ACTIONS(514), + [anon_sym_27] = ACTIONS(514), + [anon_sym_shape] = ACTIONS(514), + [anon_sym_28] = ACTIONS(514), + [anon_sym_range] = ACTIONS(514), + [anon_sym_29] = ACTIONS(514), + [anon_sym_first] = ACTIONS(514), + [anon_sym_30] = ACTIONS(514), + [anon_sym_reverse] = ACTIONS(514), + [anon_sym_31] = ACTIONS(514), + [anon_sym_deshape] = ACTIONS(514), + [anon_sym_32] = ACTIONS(514), + [anon_sym_bits] = ACTIONS(514), + [anon_sym_33] = ACTIONS(514), + [anon_sym_transpose] = ACTIONS(514), + [anon_sym_34] = ACTIONS(514), + [anon_sym_rise] = ACTIONS(514), + [anon_sym_35] = ACTIONS(514), + [anon_sym_fall] = ACTIONS(514), + [anon_sym_36] = ACTIONS(514), + [anon_sym_where] = ACTIONS(514), + [anon_sym_37] = ACTIONS(514), + [anon_sym_classify] = ACTIONS(514), + [anon_sym_38] = ACTIONS(514), + [anon_sym_deduplicate] = ACTIONS(514), + [anon_sym_39] = ACTIONS(514), + [anon_sym_box] = ACTIONS(514), + [anon_sym_40] = ACTIONS(514), + [anon_sym_unbox] = ACTIONS(514), + [anon_sym_41] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_42] = ACTIONS(514), + [anon_sym_couple] = ACTIONS(514), + [anon_sym_43] = ACTIONS(514), + [anon_sym_join] = ACTIONS(514), + [anon_sym_44] = ACTIONS(514), + [anon_sym_select] = ACTIONS(514), + [anon_sym_45] = ACTIONS(514), + [anon_sym_pick] = ACTIONS(514), + [anon_sym_46] = ACTIONS(514), + [anon_sym_reshape] = ACTIONS(514), + [anon_sym_47] = ACTIONS(514), + [anon_sym_take] = ACTIONS(514), + [anon_sym_48] = ACTIONS(514), + [anon_sym_drop] = ACTIONS(514), + [anon_sym_49] = ACTIONS(514), + [anon_sym_rotate] = ACTIONS(514), + [anon_sym_50] = ACTIONS(514), + [anon_sym_windows] = ACTIONS(514), + [anon_sym_51] = ACTIONS(514), + [anon_sym_keep] = ACTIONS(514), + [anon_sym_52] = ACTIONS(514), + [anon_sym_find] = ACTIONS(514), + [anon_sym_53] = ACTIONS(514), + [anon_sym_member] = ACTIONS(514), + [anon_sym_54] = ACTIONS(514), + [anon_sym_indexof] = ACTIONS(514), + [anon_sym_55] = ACTIONS(514), + [anon_sym_assert] = ACTIONS(514), + [anon_sym_56] = ACTIONS(514), + [anon_sym_wait] = ACTIONS(514), + [anon_sym_parse] = ACTIONS(514), + [anon_sym_random] = ACTIONS(514), + [anon_sym_57] = ACTIONS(514), + [anon_sym_gen] = ACTIONS(514), + [anon_sym_deal] = ACTIONS(514), + [anon_sym_tag] = ACTIONS(514), + [anon_sym_now] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_58] = ACTIONS(514), + [anon_sym_dump] = ACTIONS(514), + [anon_sym_regex] = ACTIONS(514), + [anon_sym_utf] = ACTIONS(514), + [anon_sym_send] = ACTIONS(514), + [anon_sym_recv] = ACTIONS(514), + [anon_sym_tryrecv] = ACTIONS(514), + [anon_sym_complex] = ACTIONS(514), + [anon_sym_59] = ACTIONS(514), + [anon_sym_rerank] = ACTIONS(514), + [anon_sym_60] = ACTIONS(514), + [anon_sym_fix] = ACTIONS(514), + [anon_sym_61] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(514), + [anon_sym_reduce] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_scan] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(514), + [anon_sym_each] = ACTIONS(514), + [anon_sym_62] = ACTIONS(514), + [anon_sym_rows] = ACTIONS(514), + [anon_sym_63] = ACTIONS(514), + [anon_sym_repeat] = ACTIONS(514), + [anon_sym_64] = ACTIONS(514), + [anon_sym_dip] = ACTIONS(514), + [anon_sym_65] = ACTIONS(514), + [anon_sym_gap] = ACTIONS(514), + [anon_sym_66] = ACTIONS(514), + [anon_sym_invert] = ACTIONS(514), + [anon_sym_67] = ACTIONS(514), + [anon_sym_spawn] = ACTIONS(514), + [anon_sym_pack] = ACTIONS(514), + [anon_sym_68] = ACTIONS(514), + [anon_sym_rectify] = ACTIONS(514), + [anon_sym_69] = ACTIONS(514), + [anon_sym_this] = ACTIONS(514), + [anon_sym_70] = ACTIONS(514), + [anon_sym_recur] = ACTIONS(514), + [anon_sym_71] = ACTIONS(514), + [anon_sym_fold] = ACTIONS(514), + [anon_sym_72] = ACTIONS(514), + [anon_sym_table] = ACTIONS(514), + [anon_sym_73] = ACTIONS(514), + [anon_sym_cross] = ACTIONS(514), + [anon_sym_74] = ACTIONS(514), + [anon_sym_group] = ACTIONS(514), + [anon_sym_75] = ACTIONS(514), + [anon_sym_partition] = ACTIONS(514), + [anon_sym_76] = ACTIONS(514), + [anon_sym_both] = ACTIONS(514), + [anon_sym_77] = ACTIONS(514), + [anon_sym_bracket] = ACTIONS(514), + [anon_sym_78] = ACTIONS(514), + [anon_sym_fork] = ACTIONS(514), + [anon_sym_79] = ACTIONS(514), + [anon_sym_under] = ACTIONS(514), + [anon_sym_80] = ACTIONS(514), + [anon_sym_fill] = ACTIONS(514), + [anon_sym_81] = ACTIONS(514), + [anon_sym_try] = ACTIONS(512), + [anon_sym_82] = ACTIONS(514), + [anon_sym_do] = ACTIONS(512), + [anon_sym_83] = ACTIONS(514), + [anon_sym_all] = ACTIONS(514), + [anon_sym_84] = ACTIONS(514), + [anon_sym_setinv] = ACTIONS(514), + [anon_sym_setunder] = ACTIONS(514), + [anon_sym_85] = ACTIONS(514), + [anon_sym_86] = ACTIONS(514), + [anon_sym_87] = ACTIONS(514), + [anon_sym_88] = ACTIONS(514), + [anon_sym_89] = ACTIONS(514), + [anon_sym_90] = ACTIONS(514), + [anon_sym_91] = ACTIONS(514), + [anon_sym_92] = ACTIONS(514), + [sym__endOfLine] = ACTIONS(514), + }, + [121] = { + [aux_sym_number_token1] = ACTIONS(594), + [sym_fraction] = ACTIONS(596), + [anon_sym_os] = ACTIONS(594), + [anon_sym_Family] = ACTIONS(594), + [anon_sym_Arch] = ACTIONS(594), + [anon_sym_ExeExt] = ACTIONS(594), + [anon_sym_PllExt] = ACTIONS(594), + [anon_sym_Sep] = ACTIONS(594), + [anon_sym_NUmProcs] = ACTIONS(594), + [anon_sym_] = ACTIONS(596), + [aux_sym_character_token1] = ACTIONS(596), + [sym_string] = ACTIONS(596), + [sym_multiLineString] = ACTIONS(596), + [sym_identifier] = ACTIONS(594), + [sym_identifierDeprecated] = ACTIONS(594), + [sym_system] = ACTIONS(596), + [sym_comment] = ACTIONS(594), + [sym_tripleMinus] = ACTIONS(596), + [sym_openParen] = ACTIONS(596), + [sym_openCurly] = ACTIONS(596), + [sym_openBracket] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_eta] = ACTIONS(596), + [anon_sym_2] = ACTIONS(594), + [anon_sym_pi] = ACTIONS(594), + [anon_sym_3] = ACTIONS(594), + [anon_sym_tau] = ACTIONS(596), + [anon_sym_4] = ACTIONS(594), + [anon_sym_infinity] = ACTIONS(596), + [anon_sym_5] = ACTIONS(596), + [anon_sym_e] = ACTIONS(594), + [anon_sym_NaN] = ACTIONS(594), + [anon_sym_NumProcs] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_identity] = ACTIONS(596), + [anon_sym_id] = ACTIONS(594), + [anon_sym_6] = ACTIONS(596), + [anon_sym_not] = ACTIONS(596), + [anon_sym_7] = ACTIONS(596), + [anon_sym_sign] = ACTIONS(596), + [anon_sym_8] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_9] = ACTIONS(594), + [anon_sym_absolutevalue] = ACTIONS(596), + [anon_sym_10] = ACTIONS(596), + [anon_sym_sqrt] = ACTIONS(596), + [anon_sym_11] = ACTIONS(596), + [anon_sym_sine] = ACTIONS(596), + [anon_sym_12] = ACTIONS(596), + [anon_sym_floor] = ACTIONS(596), + [anon_sym_13] = ACTIONS(596), + [anon_sym_ceiling] = ACTIONS(596), + [anon_sym_14] = ACTIONS(596), + [anon_sym_round] = ACTIONS(596), + [anon_sym_15] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_16] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_17] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_18] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_19] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_20] = ACTIONS(596), + [anon_sym_modulus] = ACTIONS(596), + [anon_sym_21] = ACTIONS(596), + [anon_sym_power] = ACTIONS(596), + [anon_sym_22] = ACTIONS(596), + [anon_sym_logarithm] = ACTIONS(596), + [anon_sym_23] = ACTIONS(596), + [anon_sym_minimum] = ACTIONS(596), + [anon_sym_24] = ACTIONS(596), + [anon_sym_maximum] = ACTIONS(596), + [anon_sym_25] = ACTIONS(596), + [anon_sym_atangent] = ACTIONS(596), + [anon_sym_26] = ACTIONS(596), + [anon_sym_length] = ACTIONS(596), + [anon_sym_27] = ACTIONS(596), + [anon_sym_shape] = ACTIONS(596), + [anon_sym_28] = ACTIONS(596), + [anon_sym_range] = ACTIONS(596), + [anon_sym_29] = ACTIONS(596), + [anon_sym_first] = ACTIONS(596), + [anon_sym_30] = ACTIONS(596), + [anon_sym_reverse] = ACTIONS(596), + [anon_sym_31] = ACTIONS(596), + [anon_sym_deshape] = ACTIONS(596), + [anon_sym_32] = ACTIONS(596), + [anon_sym_bits] = ACTIONS(596), + [anon_sym_33] = ACTIONS(596), + [anon_sym_transpose] = ACTIONS(596), + [anon_sym_34] = ACTIONS(596), + [anon_sym_rise] = ACTIONS(596), + [anon_sym_35] = ACTIONS(596), + [anon_sym_fall] = ACTIONS(596), + [anon_sym_36] = ACTIONS(596), + [anon_sym_where] = ACTIONS(596), + [anon_sym_37] = ACTIONS(596), + [anon_sym_classify] = ACTIONS(596), + [anon_sym_38] = ACTIONS(596), + [anon_sym_deduplicate] = ACTIONS(596), + [anon_sym_39] = ACTIONS(596), + [anon_sym_box] = ACTIONS(596), + [anon_sym_40] = ACTIONS(596), + [anon_sym_unbox] = ACTIONS(596), + [anon_sym_41] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_42] = ACTIONS(596), + [anon_sym_couple] = ACTIONS(596), + [anon_sym_43] = ACTIONS(596), + [anon_sym_join] = ACTIONS(596), + [anon_sym_44] = ACTIONS(596), + [anon_sym_select] = ACTIONS(596), + [anon_sym_45] = ACTIONS(596), + [anon_sym_pick] = ACTIONS(596), + [anon_sym_46] = ACTIONS(596), + [anon_sym_reshape] = ACTIONS(596), + [anon_sym_47] = ACTIONS(596), + [anon_sym_take] = ACTIONS(596), + [anon_sym_48] = ACTIONS(596), + [anon_sym_drop] = ACTIONS(596), + [anon_sym_49] = ACTIONS(596), + [anon_sym_rotate] = ACTIONS(596), + [anon_sym_50] = ACTIONS(596), + [anon_sym_windows] = ACTIONS(596), + [anon_sym_51] = ACTIONS(596), + [anon_sym_keep] = ACTIONS(596), + [anon_sym_52] = ACTIONS(596), + [anon_sym_find] = ACTIONS(596), + [anon_sym_53] = ACTIONS(596), + [anon_sym_member] = ACTIONS(596), + [anon_sym_54] = ACTIONS(596), + [anon_sym_indexof] = ACTIONS(596), + [anon_sym_55] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_56] = ACTIONS(596), + [anon_sym_wait] = ACTIONS(596), + [anon_sym_parse] = ACTIONS(596), + [anon_sym_random] = ACTIONS(596), + [anon_sym_57] = ACTIONS(596), + [anon_sym_gen] = ACTIONS(596), + [anon_sym_deal] = ACTIONS(596), + [anon_sym_tag] = ACTIONS(596), + [anon_sym_now] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_58] = ACTIONS(596), + [anon_sym_dump] = ACTIONS(596), + [anon_sym_regex] = ACTIONS(596), + [anon_sym_utf] = ACTIONS(596), + [anon_sym_send] = ACTIONS(596), + [anon_sym_recv] = ACTIONS(596), + [anon_sym_tryrecv] = ACTIONS(596), + [anon_sym_complex] = ACTIONS(596), + [anon_sym_59] = ACTIONS(596), + [anon_sym_rerank] = ACTIONS(596), + [anon_sym_60] = ACTIONS(596), + [anon_sym_fix] = ACTIONS(596), + [anon_sym_61] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_reduce] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_scan] = ACTIONS(596), + [anon_sym_BSLASH] = ACTIONS(596), + [anon_sym_each] = ACTIONS(596), + [anon_sym_62] = ACTIONS(596), + [anon_sym_rows] = ACTIONS(596), + [anon_sym_63] = ACTIONS(596), + [anon_sym_repeat] = ACTIONS(596), + [anon_sym_64] = ACTIONS(596), + [anon_sym_dip] = ACTIONS(596), + [anon_sym_65] = ACTIONS(596), + [anon_sym_gap] = ACTIONS(596), + [anon_sym_66] = ACTIONS(596), + [anon_sym_invert] = ACTIONS(596), + [anon_sym_67] = ACTIONS(596), + [anon_sym_spawn] = ACTIONS(596), + [anon_sym_pack] = ACTIONS(596), + [anon_sym_68] = ACTIONS(596), + [anon_sym_rectify] = ACTIONS(596), + [anon_sym_69] = ACTIONS(596), + [anon_sym_this] = ACTIONS(596), + [anon_sym_70] = ACTIONS(596), + [anon_sym_recur] = ACTIONS(596), + [anon_sym_71] = ACTIONS(596), + [anon_sym_fold] = ACTIONS(596), + [anon_sym_72] = ACTIONS(596), + [anon_sym_table] = ACTIONS(596), + [anon_sym_73] = ACTIONS(596), + [anon_sym_cross] = ACTIONS(596), + [anon_sym_74] = ACTIONS(596), + [anon_sym_group] = ACTIONS(596), + [anon_sym_75] = ACTIONS(596), + [anon_sym_partition] = ACTIONS(596), + [anon_sym_76] = ACTIONS(596), + [anon_sym_both] = ACTIONS(596), + [anon_sym_77] = ACTIONS(596), + [anon_sym_bracket] = ACTIONS(596), + [anon_sym_78] = ACTIONS(596), + [anon_sym_fork] = ACTIONS(596), + [anon_sym_79] = ACTIONS(596), + [anon_sym_under] = ACTIONS(596), + [anon_sym_80] = ACTIONS(596), + [anon_sym_fill] = ACTIONS(596), + [anon_sym_81] = ACTIONS(596), + [anon_sym_try] = ACTIONS(594), + [anon_sym_82] = ACTIONS(596), + [anon_sym_do] = ACTIONS(594), + [anon_sym_83] = ACTIONS(596), + [anon_sym_all] = ACTIONS(596), + [anon_sym_84] = ACTIONS(596), + [anon_sym_setinv] = ACTIONS(596), + [anon_sym_setunder] = ACTIONS(596), + [anon_sym_85] = ACTIONS(596), + [anon_sym_86] = ACTIONS(596), + [anon_sym_87] = ACTIONS(596), + [anon_sym_88] = ACTIONS(596), + [anon_sym_89] = ACTIONS(596), + [anon_sym_90] = ACTIONS(596), + [anon_sym_91] = ACTIONS(596), + [anon_sym_92] = ACTIONS(596), + [sym_emptyMultiLineString] = ACTIONS(596), [sym__endOfLine] = ACTIONS(5), }, - [156] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(610), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [122] = { + [ts_builtin_sym_end] = ACTIONS(510), + [aux_sym_number_token1] = ACTIONS(508), + [sym_fraction] = ACTIONS(510), + [anon_sym_os] = ACTIONS(508), + [anon_sym_Family] = ACTIONS(508), + [anon_sym_Arch] = ACTIONS(508), + [anon_sym_ExeExt] = ACTIONS(508), + [anon_sym_PllExt] = ACTIONS(508), + [anon_sym_Sep] = ACTIONS(508), + [anon_sym_NUmProcs] = ACTIONS(508), + [anon_sym_] = ACTIONS(510), + [aux_sym_character_token1] = ACTIONS(510), + [sym_string] = ACTIONS(510), + [sym_multiLineString] = ACTIONS(510), + [sym_identifier] = ACTIONS(508), + [sym_identifierDeprecated] = ACTIONS(508), + [sym_system] = ACTIONS(510), + [sym_comment] = ACTIONS(508), + [sym_openParen] = ACTIONS(510), + [sym_openCurly] = ACTIONS(510), + [sym_openBracket] = ACTIONS(510), + [sym_underscore] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(510), + [anon_sym_eta] = ACTIONS(510), + [anon_sym_2] = ACTIONS(508), + [anon_sym_pi] = ACTIONS(508), + [anon_sym_3] = ACTIONS(508), + [anon_sym_tau] = ACTIONS(510), + [anon_sym_4] = ACTIONS(508), + [anon_sym_infinity] = ACTIONS(510), + [anon_sym_5] = ACTIONS(510), + [anon_sym_e] = ACTIONS(508), + [anon_sym_NaN] = ACTIONS(508), + [anon_sym_NumProcs] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_identity] = ACTIONS(510), + [anon_sym_id] = ACTIONS(508), + [anon_sym_6] = ACTIONS(510), + [anon_sym_not] = ACTIONS(510), + [anon_sym_7] = ACTIONS(510), + [anon_sym_sign] = ACTIONS(510), + [anon_sym_8] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_9] = ACTIONS(508), + [anon_sym_absolutevalue] = ACTIONS(510), + [anon_sym_10] = ACTIONS(510), + [anon_sym_sqrt] = ACTIONS(510), + [anon_sym_11] = ACTIONS(510), + [anon_sym_sine] = ACTIONS(510), + [anon_sym_12] = ACTIONS(510), + [anon_sym_floor] = ACTIONS(510), + [anon_sym_13] = ACTIONS(510), + [anon_sym_ceiling] = ACTIONS(510), + [anon_sym_14] = ACTIONS(510), + [anon_sym_round] = ACTIONS(510), + [anon_sym_15] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_16] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(510), + [anon_sym_17] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(510), + [anon_sym_18] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_19] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_20] = ACTIONS(510), + [anon_sym_modulus] = ACTIONS(510), + [anon_sym_21] = ACTIONS(510), + [anon_sym_power] = ACTIONS(510), + [anon_sym_22] = ACTIONS(510), + [anon_sym_logarithm] = ACTIONS(510), + [anon_sym_23] = ACTIONS(510), + [anon_sym_minimum] = ACTIONS(510), + [anon_sym_24] = ACTIONS(510), + [anon_sym_maximum] = ACTIONS(510), + [anon_sym_25] = ACTIONS(510), + [anon_sym_atangent] = ACTIONS(510), + [anon_sym_26] = ACTIONS(510), + [anon_sym_length] = ACTIONS(510), + [anon_sym_27] = ACTIONS(510), + [anon_sym_shape] = ACTIONS(510), + [anon_sym_28] = ACTIONS(510), + [anon_sym_range] = ACTIONS(510), + [anon_sym_29] = ACTIONS(510), + [anon_sym_first] = ACTIONS(510), + [anon_sym_30] = ACTIONS(510), + [anon_sym_reverse] = ACTIONS(510), + [anon_sym_31] = ACTIONS(510), + [anon_sym_deshape] = ACTIONS(510), + [anon_sym_32] = ACTIONS(510), + [anon_sym_bits] = ACTIONS(510), + [anon_sym_33] = ACTIONS(510), + [anon_sym_transpose] = ACTIONS(510), + [anon_sym_34] = ACTIONS(510), + [anon_sym_rise] = ACTIONS(510), + [anon_sym_35] = ACTIONS(510), + [anon_sym_fall] = ACTIONS(510), + [anon_sym_36] = ACTIONS(510), + [anon_sym_where] = ACTIONS(510), + [anon_sym_37] = ACTIONS(510), + [anon_sym_classify] = ACTIONS(510), + [anon_sym_38] = ACTIONS(510), + [anon_sym_deduplicate] = ACTIONS(510), + [anon_sym_39] = ACTIONS(510), + [anon_sym_box] = ACTIONS(510), + [anon_sym_40] = ACTIONS(510), + [anon_sym_unbox] = ACTIONS(510), + [anon_sym_41] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_42] = ACTIONS(510), + [anon_sym_couple] = ACTIONS(510), + [anon_sym_43] = ACTIONS(510), + [anon_sym_join] = ACTIONS(510), + [anon_sym_44] = ACTIONS(510), + [anon_sym_select] = ACTIONS(510), + [anon_sym_45] = ACTIONS(510), + [anon_sym_pick] = ACTIONS(510), + [anon_sym_46] = ACTIONS(510), + [anon_sym_reshape] = ACTIONS(510), + [anon_sym_47] = ACTIONS(510), + [anon_sym_take] = ACTIONS(510), + [anon_sym_48] = ACTIONS(510), + [anon_sym_drop] = ACTIONS(510), + [anon_sym_49] = ACTIONS(510), + [anon_sym_rotate] = ACTIONS(510), + [anon_sym_50] = ACTIONS(510), + [anon_sym_windows] = ACTIONS(510), + [anon_sym_51] = ACTIONS(510), + [anon_sym_keep] = ACTIONS(510), + [anon_sym_52] = ACTIONS(510), + [anon_sym_find] = ACTIONS(510), + [anon_sym_53] = ACTIONS(510), + [anon_sym_member] = ACTIONS(510), + [anon_sym_54] = ACTIONS(510), + [anon_sym_indexof] = ACTIONS(510), + [anon_sym_55] = ACTIONS(510), + [anon_sym_assert] = ACTIONS(510), + [anon_sym_56] = ACTIONS(510), + [anon_sym_wait] = ACTIONS(510), + [anon_sym_parse] = ACTIONS(510), + [anon_sym_random] = ACTIONS(510), + [anon_sym_57] = ACTIONS(510), + [anon_sym_gen] = ACTIONS(510), + [anon_sym_deal] = ACTIONS(510), + [anon_sym_tag] = ACTIONS(510), + [anon_sym_now] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_58] = ACTIONS(510), + [anon_sym_dump] = ACTIONS(510), + [anon_sym_regex] = ACTIONS(510), + [anon_sym_utf] = ACTIONS(510), + [anon_sym_send] = ACTIONS(510), + [anon_sym_recv] = ACTIONS(510), + [anon_sym_tryrecv] = ACTIONS(510), + [anon_sym_complex] = ACTIONS(510), + [anon_sym_59] = ACTIONS(510), + [anon_sym_rerank] = ACTIONS(510), + [anon_sym_60] = ACTIONS(510), + [anon_sym_fix] = ACTIONS(510), + [anon_sym_61] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(510), + [anon_sym_reduce] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_scan] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(510), + [anon_sym_each] = ACTIONS(510), + [anon_sym_62] = ACTIONS(510), + [anon_sym_rows] = ACTIONS(510), + [anon_sym_63] = ACTIONS(510), + [anon_sym_repeat] = ACTIONS(510), + [anon_sym_64] = ACTIONS(510), + [anon_sym_dip] = ACTIONS(510), + [anon_sym_65] = ACTIONS(510), + [anon_sym_gap] = ACTIONS(510), + [anon_sym_66] = ACTIONS(510), + [anon_sym_invert] = ACTIONS(510), + [anon_sym_67] = ACTIONS(510), + [anon_sym_spawn] = ACTIONS(510), + [anon_sym_pack] = ACTIONS(510), + [anon_sym_68] = ACTIONS(510), + [anon_sym_rectify] = ACTIONS(510), + [anon_sym_69] = ACTIONS(510), + [anon_sym_this] = ACTIONS(510), + [anon_sym_70] = ACTIONS(510), + [anon_sym_recur] = ACTIONS(510), + [anon_sym_71] = ACTIONS(510), + [anon_sym_fold] = ACTIONS(510), + [anon_sym_72] = ACTIONS(510), + [anon_sym_table] = ACTIONS(510), + [anon_sym_73] = ACTIONS(510), + [anon_sym_cross] = ACTIONS(510), + [anon_sym_74] = ACTIONS(510), + [anon_sym_group] = ACTIONS(510), + [anon_sym_75] = ACTIONS(510), + [anon_sym_partition] = ACTIONS(510), + [anon_sym_76] = ACTIONS(510), + [anon_sym_both] = ACTIONS(510), + [anon_sym_77] = ACTIONS(510), + [anon_sym_bracket] = ACTIONS(510), + [anon_sym_78] = ACTIONS(510), + [anon_sym_fork] = ACTIONS(510), + [anon_sym_79] = ACTIONS(510), + [anon_sym_under] = ACTIONS(510), + [anon_sym_80] = ACTIONS(510), + [anon_sym_fill] = ACTIONS(510), + [anon_sym_81] = ACTIONS(510), + [anon_sym_try] = ACTIONS(508), + [anon_sym_82] = ACTIONS(510), + [anon_sym_do] = ACTIONS(508), + [anon_sym_83] = ACTIONS(510), + [anon_sym_all] = ACTIONS(510), + [anon_sym_84] = ACTIONS(510), + [anon_sym_setinv] = ACTIONS(510), + [anon_sym_setunder] = ACTIONS(510), + [anon_sym_85] = ACTIONS(510), + [anon_sym_86] = ACTIONS(510), + [anon_sym_87] = ACTIONS(510), + [anon_sym_88] = ACTIONS(510), + [anon_sym_89] = ACTIONS(510), + [anon_sym_90] = ACTIONS(510), + [anon_sym_91] = ACTIONS(510), + [anon_sym_92] = ACTIONS(510), + [sym__endOfLine] = ACTIONS(510), + }, + [123] = { + [ts_builtin_sym_end] = ACTIONS(526), + [aux_sym_number_token1] = ACTIONS(524), + [sym_fraction] = ACTIONS(526), + [anon_sym_os] = ACTIONS(524), + [anon_sym_Family] = ACTIONS(524), + [anon_sym_Arch] = ACTIONS(524), + [anon_sym_ExeExt] = ACTIONS(524), + [anon_sym_PllExt] = ACTIONS(524), + [anon_sym_Sep] = ACTIONS(524), + [anon_sym_NUmProcs] = ACTIONS(524), + [anon_sym_] = ACTIONS(526), + [aux_sym_character_token1] = ACTIONS(526), + [sym_string] = ACTIONS(526), + [sym_multiLineString] = ACTIONS(526), + [sym_identifier] = ACTIONS(524), + [sym_identifierDeprecated] = ACTIONS(524), + [sym_system] = ACTIONS(526), + [sym_comment] = ACTIONS(524), + [sym_openParen] = ACTIONS(526), + [sym_openCurly] = ACTIONS(526), + [sym_openBracket] = ACTIONS(526), + [sym_underscore] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(524), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(526), + [anon_sym_eta] = ACTIONS(526), + [anon_sym_2] = ACTIONS(524), + [anon_sym_pi] = ACTIONS(524), + [anon_sym_3] = ACTIONS(524), + [anon_sym_tau] = ACTIONS(526), + [anon_sym_4] = ACTIONS(524), + [anon_sym_infinity] = ACTIONS(526), + [anon_sym_5] = ACTIONS(526), + [anon_sym_e] = ACTIONS(524), + [anon_sym_NaN] = ACTIONS(524), + [anon_sym_NumProcs] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_identity] = ACTIONS(526), + [anon_sym_id] = ACTIONS(524), + [anon_sym_6] = ACTIONS(526), + [anon_sym_not] = ACTIONS(526), + [anon_sym_7] = ACTIONS(526), + [anon_sym_sign] = ACTIONS(526), + [anon_sym_8] = ACTIONS(526), + [anon_sym_BQUOTE] = ACTIONS(526), + [anon_sym_9] = ACTIONS(524), + [anon_sym_absolutevalue] = ACTIONS(526), + [anon_sym_10] = ACTIONS(526), + [anon_sym_sqrt] = ACTIONS(526), + [anon_sym_11] = ACTIONS(526), + [anon_sym_sine] = ACTIONS(526), + [anon_sym_12] = ACTIONS(526), + [anon_sym_floor] = ACTIONS(526), + [anon_sym_13] = ACTIONS(526), + [anon_sym_ceiling] = ACTIONS(526), + [anon_sym_14] = ACTIONS(526), + [anon_sym_round] = ACTIONS(526), + [anon_sym_15] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_16] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_17] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_18] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_19] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_20] = ACTIONS(526), + [anon_sym_modulus] = ACTIONS(526), + [anon_sym_21] = ACTIONS(526), + [anon_sym_power] = ACTIONS(526), + [anon_sym_22] = ACTIONS(526), + [anon_sym_logarithm] = ACTIONS(526), + [anon_sym_23] = ACTIONS(526), + [anon_sym_minimum] = ACTIONS(526), + [anon_sym_24] = ACTIONS(526), + [anon_sym_maximum] = ACTIONS(526), + [anon_sym_25] = ACTIONS(526), + [anon_sym_atangent] = ACTIONS(526), + [anon_sym_26] = ACTIONS(526), + [anon_sym_length] = ACTIONS(526), + [anon_sym_27] = ACTIONS(526), + [anon_sym_shape] = ACTIONS(526), + [anon_sym_28] = ACTIONS(526), + [anon_sym_range] = ACTIONS(526), + [anon_sym_29] = ACTIONS(526), + [anon_sym_first] = ACTIONS(526), + [anon_sym_30] = ACTIONS(526), + [anon_sym_reverse] = ACTIONS(526), + [anon_sym_31] = ACTIONS(526), + [anon_sym_deshape] = ACTIONS(526), + [anon_sym_32] = ACTIONS(526), + [anon_sym_bits] = ACTIONS(526), + [anon_sym_33] = ACTIONS(526), + [anon_sym_transpose] = ACTIONS(526), + [anon_sym_34] = ACTIONS(526), + [anon_sym_rise] = ACTIONS(526), + [anon_sym_35] = ACTIONS(526), + [anon_sym_fall] = ACTIONS(526), + [anon_sym_36] = ACTIONS(526), + [anon_sym_where] = ACTIONS(526), + [anon_sym_37] = ACTIONS(526), + [anon_sym_classify] = ACTIONS(526), + [anon_sym_38] = ACTIONS(526), + [anon_sym_deduplicate] = ACTIONS(526), + [anon_sym_39] = ACTIONS(526), + [anon_sym_box] = ACTIONS(526), + [anon_sym_40] = ACTIONS(526), + [anon_sym_unbox] = ACTIONS(526), + [anon_sym_41] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_42] = ACTIONS(526), + [anon_sym_couple] = ACTIONS(526), + [anon_sym_43] = ACTIONS(526), + [anon_sym_join] = ACTIONS(526), + [anon_sym_44] = ACTIONS(526), + [anon_sym_select] = ACTIONS(526), + [anon_sym_45] = ACTIONS(526), + [anon_sym_pick] = ACTIONS(526), + [anon_sym_46] = ACTIONS(526), + [anon_sym_reshape] = ACTIONS(526), + [anon_sym_47] = ACTIONS(526), + [anon_sym_take] = ACTIONS(526), + [anon_sym_48] = ACTIONS(526), + [anon_sym_drop] = ACTIONS(526), + [anon_sym_49] = ACTIONS(526), + [anon_sym_rotate] = ACTIONS(526), + [anon_sym_50] = ACTIONS(526), + [anon_sym_windows] = ACTIONS(526), + [anon_sym_51] = ACTIONS(526), + [anon_sym_keep] = ACTIONS(526), + [anon_sym_52] = ACTIONS(526), + [anon_sym_find] = ACTIONS(526), + [anon_sym_53] = ACTIONS(526), + [anon_sym_member] = ACTIONS(526), + [anon_sym_54] = ACTIONS(526), + [anon_sym_indexof] = ACTIONS(526), + [anon_sym_55] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(526), + [anon_sym_56] = ACTIONS(526), + [anon_sym_wait] = ACTIONS(526), + [anon_sym_parse] = ACTIONS(526), + [anon_sym_random] = ACTIONS(526), + [anon_sym_57] = ACTIONS(526), + [anon_sym_gen] = ACTIONS(526), + [anon_sym_deal] = ACTIONS(526), + [anon_sym_tag] = ACTIONS(526), + [anon_sym_now] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_58] = ACTIONS(526), + [anon_sym_dump] = ACTIONS(526), + [anon_sym_regex] = ACTIONS(526), + [anon_sym_utf] = ACTIONS(526), + [anon_sym_send] = ACTIONS(526), + [anon_sym_recv] = ACTIONS(526), + [anon_sym_tryrecv] = ACTIONS(526), + [anon_sym_complex] = ACTIONS(526), + [anon_sym_59] = ACTIONS(526), + [anon_sym_rerank] = ACTIONS(526), + [anon_sym_60] = ACTIONS(526), + [anon_sym_fix] = ACTIONS(526), + [anon_sym_61] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_reduce] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_scan] = ACTIONS(526), + [anon_sym_BSLASH] = ACTIONS(526), + [anon_sym_each] = ACTIONS(526), + [anon_sym_62] = ACTIONS(526), + [anon_sym_rows] = ACTIONS(526), + [anon_sym_63] = ACTIONS(526), + [anon_sym_repeat] = ACTIONS(526), + [anon_sym_64] = ACTIONS(526), + [anon_sym_dip] = ACTIONS(526), + [anon_sym_65] = ACTIONS(526), + [anon_sym_gap] = ACTIONS(526), + [anon_sym_66] = ACTIONS(526), + [anon_sym_invert] = ACTIONS(526), + [anon_sym_67] = ACTIONS(526), + [anon_sym_spawn] = ACTIONS(526), + [anon_sym_pack] = ACTIONS(526), + [anon_sym_68] = ACTIONS(526), + [anon_sym_rectify] = ACTIONS(526), + [anon_sym_69] = ACTIONS(526), + [anon_sym_this] = ACTIONS(526), + [anon_sym_70] = ACTIONS(526), + [anon_sym_recur] = ACTIONS(526), + [anon_sym_71] = ACTIONS(526), + [anon_sym_fold] = ACTIONS(526), + [anon_sym_72] = ACTIONS(526), + [anon_sym_table] = ACTIONS(526), + [anon_sym_73] = ACTIONS(526), + [anon_sym_cross] = ACTIONS(526), + [anon_sym_74] = ACTIONS(526), + [anon_sym_group] = ACTIONS(526), + [anon_sym_75] = ACTIONS(526), + [anon_sym_partition] = ACTIONS(526), + [anon_sym_76] = ACTIONS(526), + [anon_sym_both] = ACTIONS(526), + [anon_sym_77] = ACTIONS(526), + [anon_sym_bracket] = ACTIONS(526), + [anon_sym_78] = ACTIONS(526), + [anon_sym_fork] = ACTIONS(526), + [anon_sym_79] = ACTIONS(526), + [anon_sym_under] = ACTIONS(526), + [anon_sym_80] = ACTIONS(526), + [anon_sym_fill] = ACTIONS(526), + [anon_sym_81] = ACTIONS(526), + [anon_sym_try] = ACTIONS(524), + [anon_sym_82] = ACTIONS(526), + [anon_sym_do] = ACTIONS(524), + [anon_sym_83] = ACTIONS(526), + [anon_sym_all] = ACTIONS(526), + [anon_sym_84] = ACTIONS(526), + [anon_sym_setinv] = ACTIONS(526), + [anon_sym_setunder] = ACTIONS(526), + [anon_sym_85] = ACTIONS(526), + [anon_sym_86] = ACTIONS(526), + [anon_sym_87] = ACTIONS(526), + [anon_sym_88] = ACTIONS(526), + [anon_sym_89] = ACTIONS(526), + [anon_sym_90] = ACTIONS(526), + [anon_sym_91] = ACTIONS(526), + [anon_sym_92] = ACTIONS(526), + [sym__endOfLine] = ACTIONS(526), }, - [157] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(612), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [124] = { + [ts_builtin_sym_end] = ACTIONS(502), + [aux_sym_number_token1] = ACTIONS(500), + [sym_fraction] = ACTIONS(502), + [anon_sym_os] = ACTIONS(500), + [anon_sym_Family] = ACTIONS(500), + [anon_sym_Arch] = ACTIONS(500), + [anon_sym_ExeExt] = ACTIONS(500), + [anon_sym_PllExt] = ACTIONS(500), + [anon_sym_Sep] = ACTIONS(500), + [anon_sym_NUmProcs] = ACTIONS(500), + [anon_sym_] = ACTIONS(502), + [aux_sym_character_token1] = ACTIONS(502), + [sym_string] = ACTIONS(502), + [sym_multiLineString] = ACTIONS(502), + [sym_identifier] = ACTIONS(500), + [sym_identifierDeprecated] = ACTIONS(500), + [sym_system] = ACTIONS(502), + [sym_comment] = ACTIONS(500), + [sym_openParen] = ACTIONS(502), + [sym_openCurly] = ACTIONS(502), + [sym_openBracket] = ACTIONS(502), + [sym_underscore] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(502), + [anon_sym_eta] = ACTIONS(502), + [anon_sym_2] = ACTIONS(500), + [anon_sym_pi] = ACTIONS(500), + [anon_sym_3] = ACTIONS(500), + [anon_sym_tau] = ACTIONS(502), + [anon_sym_4] = ACTIONS(500), + [anon_sym_infinity] = ACTIONS(502), + [anon_sym_5] = ACTIONS(502), + [anon_sym_e] = ACTIONS(500), + [anon_sym_NaN] = ACTIONS(500), + [anon_sym_NumProcs] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_COLON] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_identity] = ACTIONS(502), + [anon_sym_id] = ACTIONS(500), + [anon_sym_6] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_7] = ACTIONS(502), + [anon_sym_sign] = ACTIONS(502), + [anon_sym_8] = ACTIONS(502), + [anon_sym_BQUOTE] = ACTIONS(502), + [anon_sym_9] = ACTIONS(500), + [anon_sym_absolutevalue] = ACTIONS(502), + [anon_sym_10] = ACTIONS(502), + [anon_sym_sqrt] = ACTIONS(502), + [anon_sym_11] = ACTIONS(502), + [anon_sym_sine] = ACTIONS(502), + [anon_sym_12] = ACTIONS(502), + [anon_sym_floor] = ACTIONS(502), + [anon_sym_13] = ACTIONS(502), + [anon_sym_ceiling] = ACTIONS(502), + [anon_sym_14] = ACTIONS(502), + [anon_sym_round] = ACTIONS(502), + [anon_sym_15] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_16] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(502), + [anon_sym_17] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_18] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_19] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_20] = ACTIONS(502), + [anon_sym_modulus] = ACTIONS(502), + [anon_sym_21] = ACTIONS(502), + [anon_sym_power] = ACTIONS(502), + [anon_sym_22] = ACTIONS(502), + [anon_sym_logarithm] = ACTIONS(502), + [anon_sym_23] = ACTIONS(502), + [anon_sym_minimum] = ACTIONS(502), + [anon_sym_24] = ACTIONS(502), + [anon_sym_maximum] = ACTIONS(502), + [anon_sym_25] = ACTIONS(502), + [anon_sym_atangent] = ACTIONS(502), + [anon_sym_26] = ACTIONS(502), + [anon_sym_length] = ACTIONS(502), + [anon_sym_27] = ACTIONS(502), + [anon_sym_shape] = ACTIONS(502), + [anon_sym_28] = ACTIONS(502), + [anon_sym_range] = ACTIONS(502), + [anon_sym_29] = ACTIONS(502), + [anon_sym_first] = ACTIONS(502), + [anon_sym_30] = ACTIONS(502), + [anon_sym_reverse] = ACTIONS(502), + [anon_sym_31] = ACTIONS(502), + [anon_sym_deshape] = ACTIONS(502), + [anon_sym_32] = ACTIONS(502), + [anon_sym_bits] = ACTIONS(502), + [anon_sym_33] = ACTIONS(502), + [anon_sym_transpose] = ACTIONS(502), + [anon_sym_34] = ACTIONS(502), + [anon_sym_rise] = ACTIONS(502), + [anon_sym_35] = ACTIONS(502), + [anon_sym_fall] = ACTIONS(502), + [anon_sym_36] = ACTIONS(502), + [anon_sym_where] = ACTIONS(502), + [anon_sym_37] = ACTIONS(502), + [anon_sym_classify] = ACTIONS(502), + [anon_sym_38] = ACTIONS(502), + [anon_sym_deduplicate] = ACTIONS(502), + [anon_sym_39] = ACTIONS(502), + [anon_sym_box] = ACTIONS(502), + [anon_sym_40] = ACTIONS(502), + [anon_sym_unbox] = ACTIONS(502), + [anon_sym_41] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_42] = ACTIONS(502), + [anon_sym_couple] = ACTIONS(502), + [anon_sym_43] = ACTIONS(502), + [anon_sym_join] = ACTIONS(502), + [anon_sym_44] = ACTIONS(502), + [anon_sym_select] = ACTIONS(502), + [anon_sym_45] = ACTIONS(502), + [anon_sym_pick] = ACTIONS(502), + [anon_sym_46] = ACTIONS(502), + [anon_sym_reshape] = ACTIONS(502), + [anon_sym_47] = ACTIONS(502), + [anon_sym_take] = ACTIONS(502), + [anon_sym_48] = ACTIONS(502), + [anon_sym_drop] = ACTIONS(502), + [anon_sym_49] = ACTIONS(502), + [anon_sym_rotate] = ACTIONS(502), + [anon_sym_50] = ACTIONS(502), + [anon_sym_windows] = ACTIONS(502), + [anon_sym_51] = ACTIONS(502), + [anon_sym_keep] = ACTIONS(502), + [anon_sym_52] = ACTIONS(502), + [anon_sym_find] = ACTIONS(502), + [anon_sym_53] = ACTIONS(502), + [anon_sym_member] = ACTIONS(502), + [anon_sym_54] = ACTIONS(502), + [anon_sym_indexof] = ACTIONS(502), + [anon_sym_55] = ACTIONS(502), + [anon_sym_assert] = ACTIONS(502), + [anon_sym_56] = ACTIONS(502), + [anon_sym_wait] = ACTIONS(502), + [anon_sym_parse] = ACTIONS(502), + [anon_sym_random] = ACTIONS(502), + [anon_sym_57] = ACTIONS(502), + [anon_sym_gen] = ACTIONS(502), + [anon_sym_deal] = ACTIONS(502), + [anon_sym_tag] = ACTIONS(502), + [anon_sym_now] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_58] = ACTIONS(502), + [anon_sym_dump] = ACTIONS(502), + [anon_sym_regex] = ACTIONS(502), + [anon_sym_utf] = ACTIONS(502), + [anon_sym_send] = ACTIONS(502), + [anon_sym_recv] = ACTIONS(502), + [anon_sym_tryrecv] = ACTIONS(502), + [anon_sym_complex] = ACTIONS(502), + [anon_sym_59] = ACTIONS(502), + [anon_sym_rerank] = ACTIONS(502), + [anon_sym_60] = ACTIONS(502), + [anon_sym_fix] = ACTIONS(502), + [anon_sym_61] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(502), + [anon_sym_reduce] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_scan] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(502), + [anon_sym_each] = ACTIONS(502), + [anon_sym_62] = ACTIONS(502), + [anon_sym_rows] = ACTIONS(502), + [anon_sym_63] = ACTIONS(502), + [anon_sym_repeat] = ACTIONS(502), + [anon_sym_64] = ACTIONS(502), + [anon_sym_dip] = ACTIONS(502), + [anon_sym_65] = ACTIONS(502), + [anon_sym_gap] = ACTIONS(502), + [anon_sym_66] = ACTIONS(502), + [anon_sym_invert] = ACTIONS(502), + [anon_sym_67] = ACTIONS(502), + [anon_sym_spawn] = ACTIONS(502), + [anon_sym_pack] = ACTIONS(502), + [anon_sym_68] = ACTIONS(502), + [anon_sym_rectify] = ACTIONS(502), + [anon_sym_69] = ACTIONS(502), + [anon_sym_this] = ACTIONS(502), + [anon_sym_70] = ACTIONS(502), + [anon_sym_recur] = ACTIONS(502), + [anon_sym_71] = ACTIONS(502), + [anon_sym_fold] = ACTIONS(502), + [anon_sym_72] = ACTIONS(502), + [anon_sym_table] = ACTIONS(502), + [anon_sym_73] = ACTIONS(502), + [anon_sym_cross] = ACTIONS(502), + [anon_sym_74] = ACTIONS(502), + [anon_sym_group] = ACTIONS(502), + [anon_sym_75] = ACTIONS(502), + [anon_sym_partition] = ACTIONS(502), + [anon_sym_76] = ACTIONS(502), + [anon_sym_both] = ACTIONS(502), + [anon_sym_77] = ACTIONS(502), + [anon_sym_bracket] = ACTIONS(502), + [anon_sym_78] = ACTIONS(502), + [anon_sym_fork] = ACTIONS(502), + [anon_sym_79] = ACTIONS(502), + [anon_sym_under] = ACTIONS(502), + [anon_sym_80] = ACTIONS(502), + [anon_sym_fill] = ACTIONS(502), + [anon_sym_81] = ACTIONS(502), + [anon_sym_try] = ACTIONS(500), + [anon_sym_82] = ACTIONS(502), + [anon_sym_do] = ACTIONS(500), + [anon_sym_83] = ACTIONS(502), + [anon_sym_all] = ACTIONS(502), + [anon_sym_84] = ACTIONS(502), + [anon_sym_setinv] = ACTIONS(502), + [anon_sym_setunder] = ACTIONS(502), + [anon_sym_85] = ACTIONS(502), + [anon_sym_86] = ACTIONS(502), + [anon_sym_87] = ACTIONS(502), + [anon_sym_88] = ACTIONS(502), + [anon_sym_89] = ACTIONS(502), + [anon_sym_90] = ACTIONS(502), + [anon_sym_91] = ACTIONS(502), + [anon_sym_92] = ACTIONS(502), + [sym__endOfLine] = ACTIONS(502), }, - [158] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(614), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [125] = { + [ts_builtin_sym_end] = ACTIONS(538), + [aux_sym_number_token1] = ACTIONS(536), + [sym_fraction] = ACTIONS(538), + [anon_sym_os] = ACTIONS(536), + [anon_sym_Family] = ACTIONS(536), + [anon_sym_Arch] = ACTIONS(536), + [anon_sym_ExeExt] = ACTIONS(536), + [anon_sym_PllExt] = ACTIONS(536), + [anon_sym_Sep] = ACTIONS(536), + [anon_sym_NUmProcs] = ACTIONS(536), + [anon_sym_] = ACTIONS(538), + [aux_sym_character_token1] = ACTIONS(538), + [sym_string] = ACTIONS(538), + [sym_multiLineString] = ACTIONS(538), + [sym_identifier] = ACTIONS(536), + [sym_identifierDeprecated] = ACTIONS(536), + [sym_system] = ACTIONS(538), + [sym_comment] = ACTIONS(536), + [sym_openParen] = ACTIONS(538), + [sym_openCurly] = ACTIONS(538), + [sym_openBracket] = ACTIONS(538), + [sym_underscore] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_eta] = ACTIONS(538), + [anon_sym_2] = ACTIONS(536), + [anon_sym_pi] = ACTIONS(536), + [anon_sym_3] = ACTIONS(536), + [anon_sym_tau] = ACTIONS(538), + [anon_sym_4] = ACTIONS(536), + [anon_sym_infinity] = ACTIONS(538), + [anon_sym_5] = ACTIONS(538), + [anon_sym_e] = ACTIONS(536), + [anon_sym_NaN] = ACTIONS(536), + [anon_sym_NumProcs] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_identity] = ACTIONS(538), + [anon_sym_id] = ACTIONS(536), + [anon_sym_6] = ACTIONS(538), + [anon_sym_not] = ACTIONS(538), + [anon_sym_7] = ACTIONS(538), + [anon_sym_sign] = ACTIONS(538), + [anon_sym_8] = ACTIONS(538), + [anon_sym_BQUOTE] = ACTIONS(538), + [anon_sym_9] = ACTIONS(536), + [anon_sym_absolutevalue] = ACTIONS(538), + [anon_sym_10] = ACTIONS(538), + [anon_sym_sqrt] = ACTIONS(538), + [anon_sym_11] = ACTIONS(538), + [anon_sym_sine] = ACTIONS(538), + [anon_sym_12] = ACTIONS(538), + [anon_sym_floor] = ACTIONS(538), + [anon_sym_13] = ACTIONS(538), + [anon_sym_ceiling] = ACTIONS(538), + [anon_sym_14] = ACTIONS(538), + [anon_sym_round] = ACTIONS(538), + [anon_sym_15] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_16] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_17] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_18] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_19] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_20] = ACTIONS(538), + [anon_sym_modulus] = ACTIONS(538), + [anon_sym_21] = ACTIONS(538), + [anon_sym_power] = ACTIONS(538), + [anon_sym_22] = ACTIONS(538), + [anon_sym_logarithm] = ACTIONS(538), + [anon_sym_23] = ACTIONS(538), + [anon_sym_minimum] = ACTIONS(538), + [anon_sym_24] = ACTIONS(538), + [anon_sym_maximum] = ACTIONS(538), + [anon_sym_25] = ACTIONS(538), + [anon_sym_atangent] = ACTIONS(538), + [anon_sym_26] = ACTIONS(538), + [anon_sym_length] = ACTIONS(538), + [anon_sym_27] = ACTIONS(538), + [anon_sym_shape] = ACTIONS(538), + [anon_sym_28] = ACTIONS(538), + [anon_sym_range] = ACTIONS(538), + [anon_sym_29] = ACTIONS(538), + [anon_sym_first] = ACTIONS(538), + [anon_sym_30] = ACTIONS(538), + [anon_sym_reverse] = ACTIONS(538), + [anon_sym_31] = ACTIONS(538), + [anon_sym_deshape] = ACTIONS(538), + [anon_sym_32] = ACTIONS(538), + [anon_sym_bits] = ACTIONS(538), + [anon_sym_33] = ACTIONS(538), + [anon_sym_transpose] = ACTIONS(538), + [anon_sym_34] = ACTIONS(538), + [anon_sym_rise] = ACTIONS(538), + [anon_sym_35] = ACTIONS(538), + [anon_sym_fall] = ACTIONS(538), + [anon_sym_36] = ACTIONS(538), + [anon_sym_where] = ACTIONS(538), + [anon_sym_37] = ACTIONS(538), + [anon_sym_classify] = ACTIONS(538), + [anon_sym_38] = ACTIONS(538), + [anon_sym_deduplicate] = ACTIONS(538), + [anon_sym_39] = ACTIONS(538), + [anon_sym_box] = ACTIONS(538), + [anon_sym_40] = ACTIONS(538), + [anon_sym_unbox] = ACTIONS(538), + [anon_sym_41] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_42] = ACTIONS(538), + [anon_sym_couple] = ACTIONS(538), + [anon_sym_43] = ACTIONS(538), + [anon_sym_join] = ACTIONS(538), + [anon_sym_44] = ACTIONS(538), + [anon_sym_select] = ACTIONS(538), + [anon_sym_45] = ACTIONS(538), + [anon_sym_pick] = ACTIONS(538), + [anon_sym_46] = ACTIONS(538), + [anon_sym_reshape] = ACTIONS(538), + [anon_sym_47] = ACTIONS(538), + [anon_sym_take] = ACTIONS(538), + [anon_sym_48] = ACTIONS(538), + [anon_sym_drop] = ACTIONS(538), + [anon_sym_49] = ACTIONS(538), + [anon_sym_rotate] = ACTIONS(538), + [anon_sym_50] = ACTIONS(538), + [anon_sym_windows] = ACTIONS(538), + [anon_sym_51] = ACTIONS(538), + [anon_sym_keep] = ACTIONS(538), + [anon_sym_52] = ACTIONS(538), + [anon_sym_find] = ACTIONS(538), + [anon_sym_53] = ACTIONS(538), + [anon_sym_member] = ACTIONS(538), + [anon_sym_54] = ACTIONS(538), + [anon_sym_indexof] = ACTIONS(538), + [anon_sym_55] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(538), + [anon_sym_56] = ACTIONS(538), + [anon_sym_wait] = ACTIONS(538), + [anon_sym_parse] = ACTIONS(538), + [anon_sym_random] = ACTIONS(538), + [anon_sym_57] = ACTIONS(538), + [anon_sym_gen] = ACTIONS(538), + [anon_sym_deal] = ACTIONS(538), + [anon_sym_tag] = ACTIONS(538), + [anon_sym_now] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_58] = ACTIONS(538), + [anon_sym_dump] = ACTIONS(538), + [anon_sym_regex] = ACTIONS(538), + [anon_sym_utf] = ACTIONS(538), + [anon_sym_send] = ACTIONS(538), + [anon_sym_recv] = ACTIONS(538), + [anon_sym_tryrecv] = ACTIONS(538), + [anon_sym_complex] = ACTIONS(538), + [anon_sym_59] = ACTIONS(538), + [anon_sym_rerank] = ACTIONS(538), + [anon_sym_60] = ACTIONS(538), + [anon_sym_fix] = ACTIONS(538), + [anon_sym_61] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(538), + [anon_sym_reduce] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_scan] = ACTIONS(538), + [anon_sym_BSLASH] = ACTIONS(538), + [anon_sym_each] = ACTIONS(538), + [anon_sym_62] = ACTIONS(538), + [anon_sym_rows] = ACTIONS(538), + [anon_sym_63] = ACTIONS(538), + [anon_sym_repeat] = ACTIONS(538), + [anon_sym_64] = ACTIONS(538), + [anon_sym_dip] = ACTIONS(538), + [anon_sym_65] = ACTIONS(538), + [anon_sym_gap] = ACTIONS(538), + [anon_sym_66] = ACTIONS(538), + [anon_sym_invert] = ACTIONS(538), + [anon_sym_67] = ACTIONS(538), + [anon_sym_spawn] = ACTIONS(538), + [anon_sym_pack] = ACTIONS(538), + [anon_sym_68] = ACTIONS(538), + [anon_sym_rectify] = ACTIONS(538), + [anon_sym_69] = ACTIONS(538), + [anon_sym_this] = ACTIONS(538), + [anon_sym_70] = ACTIONS(538), + [anon_sym_recur] = ACTIONS(538), + [anon_sym_71] = ACTIONS(538), + [anon_sym_fold] = ACTIONS(538), + [anon_sym_72] = ACTIONS(538), + [anon_sym_table] = ACTIONS(538), + [anon_sym_73] = ACTIONS(538), + [anon_sym_cross] = ACTIONS(538), + [anon_sym_74] = ACTIONS(538), + [anon_sym_group] = ACTIONS(538), + [anon_sym_75] = ACTIONS(538), + [anon_sym_partition] = ACTIONS(538), + [anon_sym_76] = ACTIONS(538), + [anon_sym_both] = ACTIONS(538), + [anon_sym_77] = ACTIONS(538), + [anon_sym_bracket] = ACTIONS(538), + [anon_sym_78] = ACTIONS(538), + [anon_sym_fork] = ACTIONS(538), + [anon_sym_79] = ACTIONS(538), + [anon_sym_under] = ACTIONS(538), + [anon_sym_80] = ACTIONS(538), + [anon_sym_fill] = ACTIONS(538), + [anon_sym_81] = ACTIONS(538), + [anon_sym_try] = ACTIONS(536), + [anon_sym_82] = ACTIONS(538), + [anon_sym_do] = ACTIONS(536), + [anon_sym_83] = ACTIONS(538), + [anon_sym_all] = ACTIONS(538), + [anon_sym_84] = ACTIONS(538), + [anon_sym_setinv] = ACTIONS(538), + [anon_sym_setunder] = ACTIONS(538), + [anon_sym_85] = ACTIONS(538), + [anon_sym_86] = ACTIONS(538), + [anon_sym_87] = ACTIONS(538), + [anon_sym_88] = ACTIONS(538), + [anon_sym_89] = ACTIONS(538), + [anon_sym_90] = ACTIONS(538), + [anon_sym_91] = ACTIONS(538), + [anon_sym_92] = ACTIONS(538), + [sym__endOfLine] = ACTIONS(538), }, - [159] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(616), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [126] = { + [ts_builtin_sym_end] = ACTIONS(494), + [aux_sym_number_token1] = ACTIONS(492), + [sym_fraction] = ACTIONS(494), + [anon_sym_os] = ACTIONS(492), + [anon_sym_Family] = ACTIONS(492), + [anon_sym_Arch] = ACTIONS(492), + [anon_sym_ExeExt] = ACTIONS(492), + [anon_sym_PllExt] = ACTIONS(492), + [anon_sym_Sep] = ACTIONS(492), + [anon_sym_NUmProcs] = ACTIONS(492), + [anon_sym_] = ACTIONS(494), + [aux_sym_character_token1] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [sym_multiLineString] = ACTIONS(494), + [sym_identifier] = ACTIONS(492), + [sym_identifierDeprecated] = ACTIONS(492), + [sym_system] = ACTIONS(494), + [sym_comment] = ACTIONS(492), + [sym_openParen] = ACTIONS(494), + [sym_openCurly] = ACTIONS(494), + [sym_openBracket] = ACTIONS(494), + [sym_underscore] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(494), + [anon_sym_eta] = ACTIONS(494), + [anon_sym_2] = ACTIONS(492), + [anon_sym_pi] = ACTIONS(492), + [anon_sym_3] = ACTIONS(492), + [anon_sym_tau] = ACTIONS(494), + [anon_sym_4] = ACTIONS(492), + [anon_sym_infinity] = ACTIONS(494), + [anon_sym_5] = ACTIONS(494), + [anon_sym_e] = ACTIONS(492), + [anon_sym_NaN] = ACTIONS(492), + [anon_sym_NumProcs] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_identity] = ACTIONS(494), + [anon_sym_id] = ACTIONS(492), + [anon_sym_6] = ACTIONS(494), + [anon_sym_not] = ACTIONS(494), + [anon_sym_7] = ACTIONS(494), + [anon_sym_sign] = ACTIONS(494), + [anon_sym_8] = ACTIONS(494), + [anon_sym_BQUOTE] = ACTIONS(494), + [anon_sym_9] = ACTIONS(492), + [anon_sym_absolutevalue] = ACTIONS(494), + [anon_sym_10] = ACTIONS(494), + [anon_sym_sqrt] = ACTIONS(494), + [anon_sym_11] = ACTIONS(494), + [anon_sym_sine] = ACTIONS(494), + [anon_sym_12] = ACTIONS(494), + [anon_sym_floor] = ACTIONS(494), + [anon_sym_13] = ACTIONS(494), + [anon_sym_ceiling] = ACTIONS(494), + [anon_sym_14] = ACTIONS(494), + [anon_sym_round] = ACTIONS(494), + [anon_sym_15] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(494), + [anon_sym_16] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_17] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_18] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_19] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_20] = ACTIONS(494), + [anon_sym_modulus] = ACTIONS(494), + [anon_sym_21] = ACTIONS(494), + [anon_sym_power] = ACTIONS(494), + [anon_sym_22] = ACTIONS(494), + [anon_sym_logarithm] = ACTIONS(494), + [anon_sym_23] = ACTIONS(494), + [anon_sym_minimum] = ACTIONS(494), + [anon_sym_24] = ACTIONS(494), + [anon_sym_maximum] = ACTIONS(494), + [anon_sym_25] = ACTIONS(494), + [anon_sym_atangent] = ACTIONS(494), + [anon_sym_26] = ACTIONS(494), + [anon_sym_length] = ACTIONS(494), + [anon_sym_27] = ACTIONS(494), + [anon_sym_shape] = ACTIONS(494), + [anon_sym_28] = ACTIONS(494), + [anon_sym_range] = ACTIONS(494), + [anon_sym_29] = ACTIONS(494), + [anon_sym_first] = ACTIONS(494), + [anon_sym_30] = ACTIONS(494), + [anon_sym_reverse] = ACTIONS(494), + [anon_sym_31] = ACTIONS(494), + [anon_sym_deshape] = ACTIONS(494), + [anon_sym_32] = ACTIONS(494), + [anon_sym_bits] = ACTIONS(494), + [anon_sym_33] = ACTIONS(494), + [anon_sym_transpose] = ACTIONS(494), + [anon_sym_34] = ACTIONS(494), + [anon_sym_rise] = ACTIONS(494), + [anon_sym_35] = ACTIONS(494), + [anon_sym_fall] = ACTIONS(494), + [anon_sym_36] = ACTIONS(494), + [anon_sym_where] = ACTIONS(494), + [anon_sym_37] = ACTIONS(494), + [anon_sym_classify] = ACTIONS(494), + [anon_sym_38] = ACTIONS(494), + [anon_sym_deduplicate] = ACTIONS(494), + [anon_sym_39] = ACTIONS(494), + [anon_sym_box] = ACTIONS(494), + [anon_sym_40] = ACTIONS(494), + [anon_sym_unbox] = ACTIONS(494), + [anon_sym_41] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_42] = ACTIONS(494), + [anon_sym_couple] = ACTIONS(494), + [anon_sym_43] = ACTIONS(494), + [anon_sym_join] = ACTIONS(494), + [anon_sym_44] = ACTIONS(494), + [anon_sym_select] = ACTIONS(494), + [anon_sym_45] = ACTIONS(494), + [anon_sym_pick] = ACTIONS(494), + [anon_sym_46] = ACTIONS(494), + [anon_sym_reshape] = ACTIONS(494), + [anon_sym_47] = ACTIONS(494), + [anon_sym_take] = ACTIONS(494), + [anon_sym_48] = ACTIONS(494), + [anon_sym_drop] = ACTIONS(494), + [anon_sym_49] = ACTIONS(494), + [anon_sym_rotate] = ACTIONS(494), + [anon_sym_50] = ACTIONS(494), + [anon_sym_windows] = ACTIONS(494), + [anon_sym_51] = ACTIONS(494), + [anon_sym_keep] = ACTIONS(494), + [anon_sym_52] = ACTIONS(494), + [anon_sym_find] = ACTIONS(494), + [anon_sym_53] = ACTIONS(494), + [anon_sym_member] = ACTIONS(494), + [anon_sym_54] = ACTIONS(494), + [anon_sym_indexof] = ACTIONS(494), + [anon_sym_55] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(494), + [anon_sym_56] = ACTIONS(494), + [anon_sym_wait] = ACTIONS(494), + [anon_sym_parse] = ACTIONS(494), + [anon_sym_random] = ACTIONS(494), + [anon_sym_57] = ACTIONS(494), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_deal] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_now] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_58] = ACTIONS(494), + [anon_sym_dump] = ACTIONS(494), + [anon_sym_regex] = ACTIONS(494), + [anon_sym_utf] = ACTIONS(494), + [anon_sym_send] = ACTIONS(494), + [anon_sym_recv] = ACTIONS(494), + [anon_sym_tryrecv] = ACTIONS(494), + [anon_sym_complex] = ACTIONS(494), + [anon_sym_59] = ACTIONS(494), + [anon_sym_rerank] = ACTIONS(494), + [anon_sym_60] = ACTIONS(494), + [anon_sym_fix] = ACTIONS(494), + [anon_sym_61] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), + [anon_sym_reduce] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_scan] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_each] = ACTIONS(494), + [anon_sym_62] = ACTIONS(494), + [anon_sym_rows] = ACTIONS(494), + [anon_sym_63] = ACTIONS(494), + [anon_sym_repeat] = ACTIONS(494), + [anon_sym_64] = ACTIONS(494), + [anon_sym_dip] = ACTIONS(494), + [anon_sym_65] = ACTIONS(494), + [anon_sym_gap] = ACTIONS(494), + [anon_sym_66] = ACTIONS(494), + [anon_sym_invert] = ACTIONS(494), + [anon_sym_67] = ACTIONS(494), + [anon_sym_spawn] = ACTIONS(494), + [anon_sym_pack] = ACTIONS(494), + [anon_sym_68] = ACTIONS(494), + [anon_sym_rectify] = ACTIONS(494), + [anon_sym_69] = ACTIONS(494), + [anon_sym_this] = ACTIONS(494), + [anon_sym_70] = ACTIONS(494), + [anon_sym_recur] = ACTIONS(494), + [anon_sym_71] = ACTIONS(494), + [anon_sym_fold] = ACTIONS(494), + [anon_sym_72] = ACTIONS(494), + [anon_sym_table] = ACTIONS(494), + [anon_sym_73] = ACTIONS(494), + [anon_sym_cross] = ACTIONS(494), + [anon_sym_74] = ACTIONS(494), + [anon_sym_group] = ACTIONS(494), + [anon_sym_75] = ACTIONS(494), + [anon_sym_partition] = ACTIONS(494), + [anon_sym_76] = ACTIONS(494), + [anon_sym_both] = ACTIONS(494), + [anon_sym_77] = ACTIONS(494), + [anon_sym_bracket] = ACTIONS(494), + [anon_sym_78] = ACTIONS(494), + [anon_sym_fork] = ACTIONS(494), + [anon_sym_79] = ACTIONS(494), + [anon_sym_under] = ACTIONS(494), + [anon_sym_80] = ACTIONS(494), + [anon_sym_fill] = ACTIONS(494), + [anon_sym_81] = ACTIONS(494), + [anon_sym_try] = ACTIONS(492), + [anon_sym_82] = ACTIONS(494), + [anon_sym_do] = ACTIONS(492), + [anon_sym_83] = ACTIONS(494), + [anon_sym_all] = ACTIONS(494), + [anon_sym_84] = ACTIONS(494), + [anon_sym_setinv] = ACTIONS(494), + [anon_sym_setunder] = ACTIONS(494), + [anon_sym_85] = ACTIONS(494), + [anon_sym_86] = ACTIONS(494), + [anon_sym_87] = ACTIONS(494), + [anon_sym_88] = ACTIONS(494), + [anon_sym_89] = ACTIONS(494), + [anon_sym_90] = ACTIONS(494), + [anon_sym_91] = ACTIONS(494), + [anon_sym_92] = ACTIONS(494), + [sym__endOfLine] = ACTIONS(494), }, - [160] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_closeParen] = ACTIONS(618), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [127] = { + [ts_builtin_sym_end] = ACTIONS(506), + [aux_sym_number_token1] = ACTIONS(504), + [sym_fraction] = ACTIONS(506), + [anon_sym_os] = ACTIONS(504), + [anon_sym_Family] = ACTIONS(504), + [anon_sym_Arch] = ACTIONS(504), + [anon_sym_ExeExt] = ACTIONS(504), + [anon_sym_PllExt] = ACTIONS(504), + [anon_sym_Sep] = ACTIONS(504), + [anon_sym_NUmProcs] = ACTIONS(504), + [anon_sym_] = ACTIONS(506), + [aux_sym_character_token1] = ACTIONS(506), + [sym_string] = ACTIONS(506), + [sym_multiLineString] = ACTIONS(506), + [sym_identifier] = ACTIONS(504), + [sym_identifierDeprecated] = ACTIONS(504), + [sym_system] = ACTIONS(506), + [sym_comment] = ACTIONS(504), + [sym_openParen] = ACTIONS(506), + [sym_openCurly] = ACTIONS(506), + [sym_openBracket] = ACTIONS(506), + [sym_underscore] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(504), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(506), + [anon_sym_eta] = ACTIONS(506), + [anon_sym_2] = ACTIONS(504), + [anon_sym_pi] = ACTIONS(504), + [anon_sym_3] = ACTIONS(504), + [anon_sym_tau] = ACTIONS(506), + [anon_sym_4] = ACTIONS(504), + [anon_sym_infinity] = ACTIONS(506), + [anon_sym_5] = ACTIONS(506), + [anon_sym_e] = ACTIONS(504), + [anon_sym_NaN] = ACTIONS(504), + [anon_sym_NumProcs] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_identity] = ACTIONS(506), + [anon_sym_id] = ACTIONS(504), + [anon_sym_6] = ACTIONS(506), + [anon_sym_not] = ACTIONS(506), + [anon_sym_7] = ACTIONS(506), + [anon_sym_sign] = ACTIONS(506), + [anon_sym_8] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(506), + [anon_sym_9] = ACTIONS(504), + [anon_sym_absolutevalue] = ACTIONS(506), + [anon_sym_10] = ACTIONS(506), + [anon_sym_sqrt] = ACTIONS(506), + [anon_sym_11] = ACTIONS(506), + [anon_sym_sine] = ACTIONS(506), + [anon_sym_12] = ACTIONS(506), + [anon_sym_floor] = ACTIONS(506), + [anon_sym_13] = ACTIONS(506), + [anon_sym_ceiling] = ACTIONS(506), + [anon_sym_14] = ACTIONS(506), + [anon_sym_round] = ACTIONS(506), + [anon_sym_15] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_16] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_17] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_18] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_19] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_20] = ACTIONS(506), + [anon_sym_modulus] = ACTIONS(506), + [anon_sym_21] = ACTIONS(506), + [anon_sym_power] = ACTIONS(506), + [anon_sym_22] = ACTIONS(506), + [anon_sym_logarithm] = ACTIONS(506), + [anon_sym_23] = ACTIONS(506), + [anon_sym_minimum] = ACTIONS(506), + [anon_sym_24] = ACTIONS(506), + [anon_sym_maximum] = ACTIONS(506), + [anon_sym_25] = ACTIONS(506), + [anon_sym_atangent] = ACTIONS(506), + [anon_sym_26] = ACTIONS(506), + [anon_sym_length] = ACTIONS(506), + [anon_sym_27] = ACTIONS(506), + [anon_sym_shape] = ACTIONS(506), + [anon_sym_28] = ACTIONS(506), + [anon_sym_range] = ACTIONS(506), + [anon_sym_29] = ACTIONS(506), + [anon_sym_first] = ACTIONS(506), + [anon_sym_30] = ACTIONS(506), + [anon_sym_reverse] = ACTIONS(506), + [anon_sym_31] = ACTIONS(506), + [anon_sym_deshape] = ACTIONS(506), + [anon_sym_32] = ACTIONS(506), + [anon_sym_bits] = ACTIONS(506), + [anon_sym_33] = ACTIONS(506), + [anon_sym_transpose] = ACTIONS(506), + [anon_sym_34] = ACTIONS(506), + [anon_sym_rise] = ACTIONS(506), + [anon_sym_35] = ACTIONS(506), + [anon_sym_fall] = ACTIONS(506), + [anon_sym_36] = ACTIONS(506), + [anon_sym_where] = ACTIONS(506), + [anon_sym_37] = ACTIONS(506), + [anon_sym_classify] = ACTIONS(506), + [anon_sym_38] = ACTIONS(506), + [anon_sym_deduplicate] = ACTIONS(506), + [anon_sym_39] = ACTIONS(506), + [anon_sym_box] = ACTIONS(506), + [anon_sym_40] = ACTIONS(506), + [anon_sym_unbox] = ACTIONS(506), + [anon_sym_41] = ACTIONS(506), + [anon_sym_match] = ACTIONS(506), + [anon_sym_42] = ACTIONS(506), + [anon_sym_couple] = ACTIONS(506), + [anon_sym_43] = ACTIONS(506), + [anon_sym_join] = ACTIONS(506), + [anon_sym_44] = ACTIONS(506), + [anon_sym_select] = ACTIONS(506), + [anon_sym_45] = ACTIONS(506), + [anon_sym_pick] = ACTIONS(506), + [anon_sym_46] = ACTIONS(506), + [anon_sym_reshape] = ACTIONS(506), + [anon_sym_47] = ACTIONS(506), + [anon_sym_take] = ACTIONS(506), + [anon_sym_48] = ACTIONS(506), + [anon_sym_drop] = ACTIONS(506), + [anon_sym_49] = ACTIONS(506), + [anon_sym_rotate] = ACTIONS(506), + [anon_sym_50] = ACTIONS(506), + [anon_sym_windows] = ACTIONS(506), + [anon_sym_51] = ACTIONS(506), + [anon_sym_keep] = ACTIONS(506), + [anon_sym_52] = ACTIONS(506), + [anon_sym_find] = ACTIONS(506), + [anon_sym_53] = ACTIONS(506), + [anon_sym_member] = ACTIONS(506), + [anon_sym_54] = ACTIONS(506), + [anon_sym_indexof] = ACTIONS(506), + [anon_sym_55] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(506), + [anon_sym_56] = ACTIONS(506), + [anon_sym_wait] = ACTIONS(506), + [anon_sym_parse] = ACTIONS(506), + [anon_sym_random] = ACTIONS(506), + [anon_sym_57] = ACTIONS(506), + [anon_sym_gen] = ACTIONS(506), + [anon_sym_deal] = ACTIONS(506), + [anon_sym_tag] = ACTIONS(506), + [anon_sym_now] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_58] = ACTIONS(506), + [anon_sym_dump] = ACTIONS(506), + [anon_sym_regex] = ACTIONS(506), + [anon_sym_utf] = ACTIONS(506), + [anon_sym_send] = ACTIONS(506), + [anon_sym_recv] = ACTIONS(506), + [anon_sym_tryrecv] = ACTIONS(506), + [anon_sym_complex] = ACTIONS(506), + [anon_sym_59] = ACTIONS(506), + [anon_sym_rerank] = ACTIONS(506), + [anon_sym_60] = ACTIONS(506), + [anon_sym_fix] = ACTIONS(506), + [anon_sym_61] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_reduce] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_scan] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(506), + [anon_sym_each] = ACTIONS(506), + [anon_sym_62] = ACTIONS(506), + [anon_sym_rows] = ACTIONS(506), + [anon_sym_63] = ACTIONS(506), + [anon_sym_repeat] = ACTIONS(506), + [anon_sym_64] = ACTIONS(506), + [anon_sym_dip] = ACTIONS(506), + [anon_sym_65] = ACTIONS(506), + [anon_sym_gap] = ACTIONS(506), + [anon_sym_66] = ACTIONS(506), + [anon_sym_invert] = ACTIONS(506), + [anon_sym_67] = ACTIONS(506), + [anon_sym_spawn] = ACTIONS(506), + [anon_sym_pack] = ACTIONS(506), + [anon_sym_68] = ACTIONS(506), + [anon_sym_rectify] = ACTIONS(506), + [anon_sym_69] = ACTIONS(506), + [anon_sym_this] = ACTIONS(506), + [anon_sym_70] = ACTIONS(506), + [anon_sym_recur] = ACTIONS(506), + [anon_sym_71] = ACTIONS(506), + [anon_sym_fold] = ACTIONS(506), + [anon_sym_72] = ACTIONS(506), + [anon_sym_table] = ACTIONS(506), + [anon_sym_73] = ACTIONS(506), + [anon_sym_cross] = ACTIONS(506), + [anon_sym_74] = ACTIONS(506), + [anon_sym_group] = ACTIONS(506), + [anon_sym_75] = ACTIONS(506), + [anon_sym_partition] = ACTIONS(506), + [anon_sym_76] = ACTIONS(506), + [anon_sym_both] = ACTIONS(506), + [anon_sym_77] = ACTIONS(506), + [anon_sym_bracket] = ACTIONS(506), + [anon_sym_78] = ACTIONS(506), + [anon_sym_fork] = ACTIONS(506), + [anon_sym_79] = ACTIONS(506), + [anon_sym_under] = ACTIONS(506), + [anon_sym_80] = ACTIONS(506), + [anon_sym_fill] = ACTIONS(506), + [anon_sym_81] = ACTIONS(506), + [anon_sym_try] = ACTIONS(504), + [anon_sym_82] = ACTIONS(506), + [anon_sym_do] = ACTIONS(504), + [anon_sym_83] = ACTIONS(506), + [anon_sym_all] = ACTIONS(506), + [anon_sym_84] = ACTIONS(506), + [anon_sym_setinv] = ACTIONS(506), + [anon_sym_setunder] = ACTIONS(506), + [anon_sym_85] = ACTIONS(506), + [anon_sym_86] = ACTIONS(506), + [anon_sym_87] = ACTIONS(506), + [anon_sym_88] = ACTIONS(506), + [anon_sym_89] = ACTIONS(506), + [anon_sym_90] = ACTIONS(506), + [anon_sym_91] = ACTIONS(506), + [anon_sym_92] = ACTIONS(506), + [sym__endOfLine] = ACTIONS(506), }, - [161] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_tripleMinus] = ACTIONS(620), - [sym_openParen] = ACTIONS(582), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [128] = { + [ts_builtin_sym_end] = ACTIONS(534), + [aux_sym_number_token1] = ACTIONS(532), + [sym_fraction] = ACTIONS(534), + [anon_sym_os] = ACTIONS(532), + [anon_sym_Family] = ACTIONS(532), + [anon_sym_Arch] = ACTIONS(532), + [anon_sym_ExeExt] = ACTIONS(532), + [anon_sym_PllExt] = ACTIONS(532), + [anon_sym_Sep] = ACTIONS(532), + [anon_sym_NUmProcs] = ACTIONS(532), + [anon_sym_] = ACTIONS(534), + [aux_sym_character_token1] = ACTIONS(534), + [sym_string] = ACTIONS(534), + [sym_multiLineString] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), + [sym_identifierDeprecated] = ACTIONS(532), + [sym_system] = ACTIONS(534), + [sym_comment] = ACTIONS(532), + [sym_openParen] = ACTIONS(534), + [sym_openCurly] = ACTIONS(534), + [sym_openBracket] = ACTIONS(534), + [sym_underscore] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(534), + [anon_sym_eta] = ACTIONS(534), + [anon_sym_2] = ACTIONS(532), + [anon_sym_pi] = ACTIONS(532), + [anon_sym_3] = ACTIONS(532), + [anon_sym_tau] = ACTIONS(534), + [anon_sym_4] = ACTIONS(532), + [anon_sym_infinity] = ACTIONS(534), + [anon_sym_5] = ACTIONS(534), + [anon_sym_e] = ACTIONS(532), + [anon_sym_NaN] = ACTIONS(532), + [anon_sym_NumProcs] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_identity] = ACTIONS(534), + [anon_sym_id] = ACTIONS(532), + [anon_sym_6] = ACTIONS(534), + [anon_sym_not] = ACTIONS(534), + [anon_sym_7] = ACTIONS(534), + [anon_sym_sign] = ACTIONS(534), + [anon_sym_8] = ACTIONS(534), + [anon_sym_BQUOTE] = ACTIONS(534), + [anon_sym_9] = ACTIONS(532), + [anon_sym_absolutevalue] = ACTIONS(534), + [anon_sym_10] = ACTIONS(534), + [anon_sym_sqrt] = ACTIONS(534), + [anon_sym_11] = ACTIONS(534), + [anon_sym_sine] = ACTIONS(534), + [anon_sym_12] = ACTIONS(534), + [anon_sym_floor] = ACTIONS(534), + [anon_sym_13] = ACTIONS(534), + [anon_sym_ceiling] = ACTIONS(534), + [anon_sym_14] = ACTIONS(534), + [anon_sym_round] = ACTIONS(534), + [anon_sym_15] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_16] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_17] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_18] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_19] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_20] = ACTIONS(534), + [anon_sym_modulus] = ACTIONS(534), + [anon_sym_21] = ACTIONS(534), + [anon_sym_power] = ACTIONS(534), + [anon_sym_22] = ACTIONS(534), + [anon_sym_logarithm] = ACTIONS(534), + [anon_sym_23] = ACTIONS(534), + [anon_sym_minimum] = ACTIONS(534), + [anon_sym_24] = ACTIONS(534), + [anon_sym_maximum] = ACTIONS(534), + [anon_sym_25] = ACTIONS(534), + [anon_sym_atangent] = ACTIONS(534), + [anon_sym_26] = ACTIONS(534), + [anon_sym_length] = ACTIONS(534), + [anon_sym_27] = ACTIONS(534), + [anon_sym_shape] = ACTIONS(534), + [anon_sym_28] = ACTIONS(534), + [anon_sym_range] = ACTIONS(534), + [anon_sym_29] = ACTIONS(534), + [anon_sym_first] = ACTIONS(534), + [anon_sym_30] = ACTIONS(534), + [anon_sym_reverse] = ACTIONS(534), + [anon_sym_31] = ACTIONS(534), + [anon_sym_deshape] = ACTIONS(534), + [anon_sym_32] = ACTIONS(534), + [anon_sym_bits] = ACTIONS(534), + [anon_sym_33] = ACTIONS(534), + [anon_sym_transpose] = ACTIONS(534), + [anon_sym_34] = ACTIONS(534), + [anon_sym_rise] = ACTIONS(534), + [anon_sym_35] = ACTIONS(534), + [anon_sym_fall] = ACTIONS(534), + [anon_sym_36] = ACTIONS(534), + [anon_sym_where] = ACTIONS(534), + [anon_sym_37] = ACTIONS(534), + [anon_sym_classify] = ACTIONS(534), + [anon_sym_38] = ACTIONS(534), + [anon_sym_deduplicate] = ACTIONS(534), + [anon_sym_39] = ACTIONS(534), + [anon_sym_box] = ACTIONS(534), + [anon_sym_40] = ACTIONS(534), + [anon_sym_unbox] = ACTIONS(534), + [anon_sym_41] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_42] = ACTIONS(534), + [anon_sym_couple] = ACTIONS(534), + [anon_sym_43] = ACTIONS(534), + [anon_sym_join] = ACTIONS(534), + [anon_sym_44] = ACTIONS(534), + [anon_sym_select] = ACTIONS(534), + [anon_sym_45] = ACTIONS(534), + [anon_sym_pick] = ACTIONS(534), + [anon_sym_46] = ACTIONS(534), + [anon_sym_reshape] = ACTIONS(534), + [anon_sym_47] = ACTIONS(534), + [anon_sym_take] = ACTIONS(534), + [anon_sym_48] = ACTIONS(534), + [anon_sym_drop] = ACTIONS(534), + [anon_sym_49] = ACTIONS(534), + [anon_sym_rotate] = ACTIONS(534), + [anon_sym_50] = ACTIONS(534), + [anon_sym_windows] = ACTIONS(534), + [anon_sym_51] = ACTIONS(534), + [anon_sym_keep] = ACTIONS(534), + [anon_sym_52] = ACTIONS(534), + [anon_sym_find] = ACTIONS(534), + [anon_sym_53] = ACTIONS(534), + [anon_sym_member] = ACTIONS(534), + [anon_sym_54] = ACTIONS(534), + [anon_sym_indexof] = ACTIONS(534), + [anon_sym_55] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(534), + [anon_sym_56] = ACTIONS(534), + [anon_sym_wait] = ACTIONS(534), + [anon_sym_parse] = ACTIONS(534), + [anon_sym_random] = ACTIONS(534), + [anon_sym_57] = ACTIONS(534), + [anon_sym_gen] = ACTIONS(534), + [anon_sym_deal] = ACTIONS(534), + [anon_sym_tag] = ACTIONS(534), + [anon_sym_now] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_58] = ACTIONS(534), + [anon_sym_dump] = ACTIONS(534), + [anon_sym_regex] = ACTIONS(534), + [anon_sym_utf] = ACTIONS(534), + [anon_sym_send] = ACTIONS(534), + [anon_sym_recv] = ACTIONS(534), + [anon_sym_tryrecv] = ACTIONS(534), + [anon_sym_complex] = ACTIONS(534), + [anon_sym_59] = ACTIONS(534), + [anon_sym_rerank] = ACTIONS(534), + [anon_sym_60] = ACTIONS(534), + [anon_sym_fix] = ACTIONS(534), + [anon_sym_61] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_reduce] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_scan] = ACTIONS(534), + [anon_sym_BSLASH] = ACTIONS(534), + [anon_sym_each] = ACTIONS(534), + [anon_sym_62] = ACTIONS(534), + [anon_sym_rows] = ACTIONS(534), + [anon_sym_63] = ACTIONS(534), + [anon_sym_repeat] = ACTIONS(534), + [anon_sym_64] = ACTIONS(534), + [anon_sym_dip] = ACTIONS(534), + [anon_sym_65] = ACTIONS(534), + [anon_sym_gap] = ACTIONS(534), + [anon_sym_66] = ACTIONS(534), + [anon_sym_invert] = ACTIONS(534), + [anon_sym_67] = ACTIONS(534), + [anon_sym_spawn] = ACTIONS(534), + [anon_sym_pack] = ACTIONS(534), + [anon_sym_68] = ACTIONS(534), + [anon_sym_rectify] = ACTIONS(534), + [anon_sym_69] = ACTIONS(534), + [anon_sym_this] = ACTIONS(534), + [anon_sym_70] = ACTIONS(534), + [anon_sym_recur] = ACTIONS(534), + [anon_sym_71] = ACTIONS(534), + [anon_sym_fold] = ACTIONS(534), + [anon_sym_72] = ACTIONS(534), + [anon_sym_table] = ACTIONS(534), + [anon_sym_73] = ACTIONS(534), + [anon_sym_cross] = ACTIONS(534), + [anon_sym_74] = ACTIONS(534), + [anon_sym_group] = ACTIONS(534), + [anon_sym_75] = ACTIONS(534), + [anon_sym_partition] = ACTIONS(534), + [anon_sym_76] = ACTIONS(534), + [anon_sym_both] = ACTIONS(534), + [anon_sym_77] = ACTIONS(534), + [anon_sym_bracket] = ACTIONS(534), + [anon_sym_78] = ACTIONS(534), + [anon_sym_fork] = ACTIONS(534), + [anon_sym_79] = ACTIONS(534), + [anon_sym_under] = ACTIONS(534), + [anon_sym_80] = ACTIONS(534), + [anon_sym_fill] = ACTIONS(534), + [anon_sym_81] = ACTIONS(534), + [anon_sym_try] = ACTIONS(532), + [anon_sym_82] = ACTIONS(534), + [anon_sym_do] = ACTIONS(532), + [anon_sym_83] = ACTIONS(534), + [anon_sym_all] = ACTIONS(534), + [anon_sym_84] = ACTIONS(534), + [anon_sym_setinv] = ACTIONS(534), + [anon_sym_setunder] = ACTIONS(534), + [anon_sym_85] = ACTIONS(534), + [anon_sym_86] = ACTIONS(534), + [anon_sym_87] = ACTIONS(534), + [anon_sym_88] = ACTIONS(534), + [anon_sym_89] = ACTIONS(534), + [anon_sym_90] = ACTIONS(534), + [anon_sym_91] = ACTIONS(534), + [anon_sym_92] = ACTIONS(534), + [sym__endOfLine] = ACTIONS(534), }, - [162] = { - [aux_sym_number_token1] = ACTIONS(622), - [sym_fraction] = ACTIONS(624), - [anon_sym_os] = ACTIONS(622), - [anon_sym_Family] = ACTIONS(622), - [anon_sym_Arch] = ACTIONS(622), - [anon_sym_ExeExt] = ACTIONS(622), - [anon_sym_PllExt] = ACTIONS(622), - [anon_sym_Sep] = ACTIONS(622), - [anon_sym_NUmProcs] = ACTIONS(622), - [anon_sym_] = ACTIONS(624), - [aux_sym_character_token1] = ACTIONS(624), - [sym_string] = ACTIONS(624), - [sym_multiLineString] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [sym_identifier] = ACTIONS(622), - [sym_identifierDeprecated] = ACTIONS(622), - [sym_system] = ACTIONS(624), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(624), - [sym_openCurly] = ACTIONS(624), - [sym_openBracket] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_eta] = ACTIONS(624), - [anon_sym_2] = ACTIONS(622), - [anon_sym_pi] = ACTIONS(622), - [anon_sym_3] = ACTIONS(622), - [anon_sym_tau] = ACTIONS(624), - [anon_sym_4] = ACTIONS(622), - [anon_sym_infinity] = ACTIONS(624), - [anon_sym_5] = ACTIONS(624), - [anon_sym_e] = ACTIONS(622), - [anon_sym_NaN] = ACTIONS(622), - [anon_sym_NumProcs] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(624), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_COLON] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_identity] = ACTIONS(624), - [anon_sym_id] = ACTIONS(622), - [anon_sym_6] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_7] = ACTIONS(624), - [anon_sym_sign] = ACTIONS(624), - [anon_sym_8] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_9] = ACTIONS(622), - [anon_sym_absolutevalue] = ACTIONS(624), - [anon_sym_10] = ACTIONS(624), - [anon_sym_sqrt] = ACTIONS(624), - [anon_sym_11] = ACTIONS(624), - [anon_sym_sine] = ACTIONS(624), - [anon_sym_12] = ACTIONS(624), - [anon_sym_floor] = ACTIONS(624), - [anon_sym_13] = ACTIONS(624), - [anon_sym_ceiling] = ACTIONS(624), - [anon_sym_14] = ACTIONS(624), - [anon_sym_round] = ACTIONS(624), - [anon_sym_15] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_16] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_17] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_18] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_19] = ACTIONS(624), - [anon_sym_PERCENT] = ACTIONS(624), - [anon_sym_20] = ACTIONS(624), - [anon_sym_modulus] = ACTIONS(624), - [anon_sym_21] = ACTIONS(624), - [anon_sym_power] = ACTIONS(624), - [anon_sym_22] = ACTIONS(624), - [anon_sym_logarithm] = ACTIONS(624), - [anon_sym_23] = ACTIONS(624), - [anon_sym_minimum] = ACTIONS(624), - [anon_sym_24] = ACTIONS(624), - [anon_sym_maximum] = ACTIONS(624), - [anon_sym_25] = ACTIONS(624), - [anon_sym_atangent] = ACTIONS(624), - [anon_sym_26] = ACTIONS(624), - [anon_sym_length] = ACTIONS(624), - [anon_sym_27] = ACTIONS(624), - [anon_sym_shape] = ACTIONS(624), - [anon_sym_28] = ACTIONS(624), - [anon_sym_range] = ACTIONS(624), - [anon_sym_29] = ACTIONS(624), - [anon_sym_first] = ACTIONS(624), - [anon_sym_30] = ACTIONS(624), - [anon_sym_reverse] = ACTIONS(624), - [anon_sym_31] = ACTIONS(624), - [anon_sym_deshape] = ACTIONS(624), - [anon_sym_32] = ACTIONS(624), - [anon_sym_bits] = ACTIONS(624), - [anon_sym_33] = ACTIONS(624), - [anon_sym_transpose] = ACTIONS(624), - [anon_sym_34] = ACTIONS(624), - [anon_sym_rise] = ACTIONS(624), - [anon_sym_35] = ACTIONS(624), - [anon_sym_fall] = ACTIONS(624), - [anon_sym_36] = ACTIONS(624), - [anon_sym_where] = ACTIONS(624), - [anon_sym_37] = ACTIONS(624), - [anon_sym_classify] = ACTIONS(624), - [anon_sym_38] = ACTIONS(624), - [anon_sym_deduplicate] = ACTIONS(624), - [anon_sym_39] = ACTIONS(624), - [anon_sym_box] = ACTIONS(624), - [anon_sym_40] = ACTIONS(624), - [anon_sym_unbox] = ACTIONS(624), - [anon_sym_41] = ACTIONS(624), - [anon_sym_match] = ACTIONS(624), - [anon_sym_42] = ACTIONS(624), - [anon_sym_couple] = ACTIONS(624), - [anon_sym_43] = ACTIONS(624), - [anon_sym_join] = ACTIONS(624), - [anon_sym_44] = ACTIONS(624), - [anon_sym_select] = ACTIONS(624), - [anon_sym_45] = ACTIONS(624), - [anon_sym_pick] = ACTIONS(624), - [anon_sym_46] = ACTIONS(624), - [anon_sym_reshape] = ACTIONS(624), - [anon_sym_47] = ACTIONS(624), - [anon_sym_take] = ACTIONS(624), - [anon_sym_48] = ACTIONS(624), - [anon_sym_drop] = ACTIONS(624), - [anon_sym_49] = ACTIONS(624), - [anon_sym_rotate] = ACTIONS(624), - [anon_sym_50] = ACTIONS(624), - [anon_sym_windows] = ACTIONS(624), - [anon_sym_51] = ACTIONS(624), - [anon_sym_keep] = ACTIONS(624), - [anon_sym_52] = ACTIONS(624), - [anon_sym_find] = ACTIONS(624), - [anon_sym_53] = ACTIONS(624), - [anon_sym_member] = ACTIONS(624), - [anon_sym_54] = ACTIONS(624), - [anon_sym_indexof] = ACTIONS(624), - [anon_sym_55] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(624), - [anon_sym_56] = ACTIONS(624), - [anon_sym_wait] = ACTIONS(624), - [anon_sym_parse] = ACTIONS(624), - [anon_sym_random] = ACTIONS(624), - [anon_sym_57] = ACTIONS(624), - [anon_sym_gen] = ACTIONS(624), - [anon_sym_deal] = ACTIONS(624), - [anon_sym_tag] = ACTIONS(624), - [anon_sym_now] = ACTIONS(624), - [anon_sym_type] = ACTIONS(624), - [anon_sym_58] = ACTIONS(624), - [anon_sym_dump] = ACTIONS(624), - [anon_sym_regex] = ACTIONS(624), - [anon_sym_utf] = ACTIONS(624), - [anon_sym_send] = ACTIONS(624), - [anon_sym_recv] = ACTIONS(624), - [anon_sym_tryrecv] = ACTIONS(624), - [anon_sym_complex] = ACTIONS(624), - [anon_sym_59] = ACTIONS(624), - [anon_sym_rerank] = ACTIONS(624), - [anon_sym_60] = ACTIONS(624), - [anon_sym_fix] = ACTIONS(624), - [anon_sym_61] = ACTIONS(624), - [anon_sym_reduce] = ACTIONS(624), - [anon_sym_SLASH] = ACTIONS(624), - [anon_sym_scan] = ACTIONS(624), - [anon_sym_BSLASH] = ACTIONS(624), - [anon_sym_each] = ACTIONS(624), - [anon_sym_62] = ACTIONS(624), - [anon_sym_rows] = ACTIONS(624), - [anon_sym_63] = ACTIONS(624), - [anon_sym_repeat] = ACTIONS(624), - [anon_sym_64] = ACTIONS(624), - [anon_sym_dip] = ACTIONS(624), - [anon_sym_65] = ACTIONS(624), - [anon_sym_gap] = ACTIONS(624), - [anon_sym_66] = ACTIONS(624), - [anon_sym_invert] = ACTIONS(624), - [anon_sym_67] = ACTIONS(624), - [anon_sym_spawn] = ACTIONS(624), - [anon_sym_pack] = ACTIONS(624), - [anon_sym_68] = ACTIONS(624), - [anon_sym_rectify] = ACTIONS(624), - [anon_sym_69] = ACTIONS(624), - [anon_sym_this] = ACTIONS(624), - [anon_sym_70] = ACTIONS(624), - [anon_sym_recur] = ACTIONS(624), - [anon_sym_71] = ACTIONS(624), - [anon_sym_fold] = ACTIONS(624), - [anon_sym_72] = ACTIONS(624), - [anon_sym_table] = ACTIONS(624), - [anon_sym_73] = ACTIONS(624), - [anon_sym_cross] = ACTIONS(624), - [anon_sym_74] = ACTIONS(624), - [anon_sym_group] = ACTIONS(624), - [anon_sym_75] = ACTIONS(624), - [anon_sym_partition] = ACTIONS(624), - [anon_sym_76] = ACTIONS(624), - [anon_sym_both] = ACTIONS(624), - [anon_sym_77] = ACTIONS(624), - [anon_sym_bracket] = ACTIONS(624), - [anon_sym_78] = ACTIONS(624), - [anon_sym_fork] = ACTIONS(624), - [anon_sym_79] = ACTIONS(624), - [anon_sym_under] = ACTIONS(624), - [anon_sym_80] = ACTIONS(624), - [anon_sym_fill] = ACTIONS(624), - [anon_sym_81] = ACTIONS(624), - [anon_sym_try] = ACTIONS(622), - [anon_sym_82] = ACTIONS(624), - [anon_sym_do] = ACTIONS(622), - [anon_sym_83] = ACTIONS(624), - [anon_sym_all] = ACTIONS(624), - [anon_sym_84] = ACTIONS(624), - [anon_sym_setinv] = ACTIONS(624), - [anon_sym_setunder] = ACTIONS(624), - [anon_sym_85] = ACTIONS(624), - [anon_sym_86] = ACTIONS(624), - [anon_sym_87] = ACTIONS(624), - [anon_sym_88] = ACTIONS(624), - [anon_sym_89] = ACTIONS(624), - [anon_sym_90] = ACTIONS(624), - [anon_sym_91] = ACTIONS(624), - [anon_sym_92] = ACTIONS(624), - [anon_sym_93] = ACTIONS(624), - [anon_sym_94] = ACTIONS(624), - [anon_sym_95] = ACTIONS(624), - [anon_sym_96] = ACTIONS(624), - [sym__endOfLine] = ACTIONS(5), + [129] = { + [ts_builtin_sym_end] = ACTIONS(468), + [aux_sym_number_token1] = ACTIONS(466), + [sym_fraction] = ACTIONS(468), + [anon_sym_os] = ACTIONS(466), + [anon_sym_Family] = ACTIONS(466), + [anon_sym_Arch] = ACTIONS(466), + [anon_sym_ExeExt] = ACTIONS(466), + [anon_sym_PllExt] = ACTIONS(466), + [anon_sym_Sep] = ACTIONS(466), + [anon_sym_NUmProcs] = ACTIONS(466), + [anon_sym_] = ACTIONS(468), + [aux_sym_character_token1] = ACTIONS(468), + [sym_string] = ACTIONS(468), + [sym_multiLineString] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [sym_identifierDeprecated] = ACTIONS(466), + [sym_system] = ACTIONS(468), + [sym_comment] = ACTIONS(466), + [sym_openParen] = ACTIONS(468), + [sym_openCurly] = ACTIONS(468), + [sym_openBracket] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(468), + [anon_sym_eta] = ACTIONS(468), + [anon_sym_2] = ACTIONS(466), + [anon_sym_pi] = ACTIONS(466), + [anon_sym_3] = ACTIONS(466), + [anon_sym_tau] = ACTIONS(468), + [anon_sym_4] = ACTIONS(466), + [anon_sym_infinity] = ACTIONS(468), + [anon_sym_5] = ACTIONS(468), + [anon_sym_e] = ACTIONS(466), + [anon_sym_NaN] = ACTIONS(466), + [anon_sym_NumProcs] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_COLON] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_identity] = ACTIONS(468), + [anon_sym_id] = ACTIONS(466), + [anon_sym_6] = ACTIONS(468), + [anon_sym_not] = ACTIONS(468), + [anon_sym_7] = ACTIONS(468), + [anon_sym_sign] = ACTIONS(468), + [anon_sym_8] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_9] = ACTIONS(466), + [anon_sym_absolutevalue] = ACTIONS(468), + [anon_sym_10] = ACTIONS(468), + [anon_sym_sqrt] = ACTIONS(468), + [anon_sym_11] = ACTIONS(468), + [anon_sym_sine] = ACTIONS(468), + [anon_sym_12] = ACTIONS(468), + [anon_sym_floor] = ACTIONS(468), + [anon_sym_13] = ACTIONS(468), + [anon_sym_ceiling] = ACTIONS(468), + [anon_sym_14] = ACTIONS(468), + [anon_sym_round] = ACTIONS(468), + [anon_sym_15] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_16] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_17] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_18] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_19] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_20] = ACTIONS(468), + [anon_sym_modulus] = ACTIONS(468), + [anon_sym_21] = ACTIONS(468), + [anon_sym_power] = ACTIONS(468), + [anon_sym_22] = ACTIONS(468), + [anon_sym_logarithm] = ACTIONS(468), + [anon_sym_23] = ACTIONS(468), + [anon_sym_minimum] = ACTIONS(468), + [anon_sym_24] = ACTIONS(468), + [anon_sym_maximum] = ACTIONS(468), + [anon_sym_25] = ACTIONS(468), + [anon_sym_atangent] = ACTIONS(468), + [anon_sym_26] = ACTIONS(468), + [anon_sym_length] = ACTIONS(468), + [anon_sym_27] = ACTIONS(468), + [anon_sym_shape] = ACTIONS(468), + [anon_sym_28] = ACTIONS(468), + [anon_sym_range] = ACTIONS(468), + [anon_sym_29] = ACTIONS(468), + [anon_sym_first] = ACTIONS(468), + [anon_sym_30] = ACTIONS(468), + [anon_sym_reverse] = ACTIONS(468), + [anon_sym_31] = ACTIONS(468), + [anon_sym_deshape] = ACTIONS(468), + [anon_sym_32] = ACTIONS(468), + [anon_sym_bits] = ACTIONS(468), + [anon_sym_33] = ACTIONS(468), + [anon_sym_transpose] = ACTIONS(468), + [anon_sym_34] = ACTIONS(468), + [anon_sym_rise] = ACTIONS(468), + [anon_sym_35] = ACTIONS(468), + [anon_sym_fall] = ACTIONS(468), + [anon_sym_36] = ACTIONS(468), + [anon_sym_where] = ACTIONS(468), + [anon_sym_37] = ACTIONS(468), + [anon_sym_classify] = ACTIONS(468), + [anon_sym_38] = ACTIONS(468), + [anon_sym_deduplicate] = ACTIONS(468), + [anon_sym_39] = ACTIONS(468), + [anon_sym_box] = ACTIONS(468), + [anon_sym_40] = ACTIONS(468), + [anon_sym_unbox] = ACTIONS(468), + [anon_sym_41] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_42] = ACTIONS(468), + [anon_sym_couple] = ACTIONS(468), + [anon_sym_43] = ACTIONS(468), + [anon_sym_join] = ACTIONS(468), + [anon_sym_44] = ACTIONS(468), + [anon_sym_select] = ACTIONS(468), + [anon_sym_45] = ACTIONS(468), + [anon_sym_pick] = ACTIONS(468), + [anon_sym_46] = ACTIONS(468), + [anon_sym_reshape] = ACTIONS(468), + [anon_sym_47] = ACTIONS(468), + [anon_sym_take] = ACTIONS(468), + [anon_sym_48] = ACTIONS(468), + [anon_sym_drop] = ACTIONS(468), + [anon_sym_49] = ACTIONS(468), + [anon_sym_rotate] = ACTIONS(468), + [anon_sym_50] = ACTIONS(468), + [anon_sym_windows] = ACTIONS(468), + [anon_sym_51] = ACTIONS(468), + [anon_sym_keep] = ACTIONS(468), + [anon_sym_52] = ACTIONS(468), + [anon_sym_find] = ACTIONS(468), + [anon_sym_53] = ACTIONS(468), + [anon_sym_member] = ACTIONS(468), + [anon_sym_54] = ACTIONS(468), + [anon_sym_indexof] = ACTIONS(468), + [anon_sym_55] = ACTIONS(468), + [anon_sym_assert] = ACTIONS(468), + [anon_sym_56] = ACTIONS(468), + [anon_sym_wait] = ACTIONS(468), + [anon_sym_parse] = ACTIONS(468), + [anon_sym_random] = ACTIONS(468), + [anon_sym_57] = ACTIONS(468), + [anon_sym_gen] = ACTIONS(468), + [anon_sym_deal] = ACTIONS(468), + [anon_sym_tag] = ACTIONS(468), + [anon_sym_now] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_58] = ACTIONS(468), + [anon_sym_dump] = ACTIONS(468), + [anon_sym_regex] = ACTIONS(468), + [anon_sym_utf] = ACTIONS(468), + [anon_sym_send] = ACTIONS(468), + [anon_sym_recv] = ACTIONS(468), + [anon_sym_tryrecv] = ACTIONS(468), + [anon_sym_complex] = ACTIONS(468), + [anon_sym_59] = ACTIONS(468), + [anon_sym_rerank] = ACTIONS(468), + [anon_sym_60] = ACTIONS(468), + [anon_sym_fix] = ACTIONS(468), + [anon_sym_61] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(468), + [anon_sym_reduce] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_scan] = ACTIONS(468), + [anon_sym_BSLASH] = ACTIONS(468), + [anon_sym_each] = ACTIONS(468), + [anon_sym_62] = ACTIONS(468), + [anon_sym_rows] = ACTIONS(468), + [anon_sym_63] = ACTIONS(468), + [anon_sym_repeat] = ACTIONS(468), + [anon_sym_64] = ACTIONS(468), + [anon_sym_dip] = ACTIONS(468), + [anon_sym_65] = ACTIONS(468), + [anon_sym_gap] = ACTIONS(468), + [anon_sym_66] = ACTIONS(468), + [anon_sym_invert] = ACTIONS(468), + [anon_sym_67] = ACTIONS(468), + [anon_sym_spawn] = ACTIONS(468), + [anon_sym_pack] = ACTIONS(468), + [anon_sym_68] = ACTIONS(468), + [anon_sym_rectify] = ACTIONS(468), + [anon_sym_69] = ACTIONS(468), + [anon_sym_this] = ACTIONS(468), + [anon_sym_70] = ACTIONS(468), + [anon_sym_recur] = ACTIONS(468), + [anon_sym_71] = ACTIONS(468), + [anon_sym_fold] = ACTIONS(468), + [anon_sym_72] = ACTIONS(468), + [anon_sym_table] = ACTIONS(468), + [anon_sym_73] = ACTIONS(468), + [anon_sym_cross] = ACTIONS(468), + [anon_sym_74] = ACTIONS(468), + [anon_sym_group] = ACTIONS(468), + [anon_sym_75] = ACTIONS(468), + [anon_sym_partition] = ACTIONS(468), + [anon_sym_76] = ACTIONS(468), + [anon_sym_both] = ACTIONS(468), + [anon_sym_77] = ACTIONS(468), + [anon_sym_bracket] = ACTIONS(468), + [anon_sym_78] = ACTIONS(468), + [anon_sym_fork] = ACTIONS(468), + [anon_sym_79] = ACTIONS(468), + [anon_sym_under] = ACTIONS(468), + [anon_sym_80] = ACTIONS(468), + [anon_sym_fill] = ACTIONS(468), + [anon_sym_81] = ACTIONS(468), + [anon_sym_try] = ACTIONS(466), + [anon_sym_82] = ACTIONS(468), + [anon_sym_do] = ACTIONS(466), + [anon_sym_83] = ACTIONS(468), + [anon_sym_all] = ACTIONS(468), + [anon_sym_84] = ACTIONS(468), + [anon_sym_setinv] = ACTIONS(468), + [anon_sym_setunder] = ACTIONS(468), + [anon_sym_85] = ACTIONS(468), + [anon_sym_86] = ACTIONS(468), + [anon_sym_87] = ACTIONS(468), + [anon_sym_88] = ACTIONS(468), + [anon_sym_89] = ACTIONS(468), + [anon_sym_90] = ACTIONS(468), + [anon_sym_91] = ACTIONS(468), + [anon_sym_92] = ACTIONS(468), + [sym__endOfLine] = ACTIONS(468), }, - [163] = { - [aux_sym_number_token1] = ACTIONS(626), - [sym_fraction] = ACTIONS(628), - [anon_sym_os] = ACTIONS(626), - [anon_sym_Family] = ACTIONS(626), - [anon_sym_Arch] = ACTIONS(626), - [anon_sym_ExeExt] = ACTIONS(626), - [anon_sym_PllExt] = ACTIONS(626), - [anon_sym_Sep] = ACTIONS(626), - [anon_sym_NUmProcs] = ACTIONS(626), - [anon_sym_] = ACTIONS(628), - [aux_sym_character_token1] = ACTIONS(628), - [sym_string] = ACTIONS(628), - [sym_multiLineString] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(628), - [sym_identifier] = ACTIONS(626), - [sym_identifierDeprecated] = ACTIONS(626), - [sym_system] = ACTIONS(628), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(628), - [sym_openCurly] = ACTIONS(628), - [sym_openBracket] = ACTIONS(628), - [anon_sym_CARET] = ACTIONS(628), - [anon_sym_eta] = ACTIONS(628), - [anon_sym_2] = ACTIONS(626), - [anon_sym_pi] = ACTIONS(626), - [anon_sym_3] = ACTIONS(626), - [anon_sym_tau] = ACTIONS(628), - [anon_sym_4] = ACTIONS(626), - [anon_sym_infinity] = ACTIONS(628), - [anon_sym_5] = ACTIONS(628), - [anon_sym_e] = ACTIONS(626), - [anon_sym_NaN] = ACTIONS(626), - [anon_sym_NumProcs] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(628), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_COLON] = ACTIONS(628), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_identity] = ACTIONS(628), - [anon_sym_id] = ACTIONS(626), - [anon_sym_6] = ACTIONS(628), - [anon_sym_not] = ACTIONS(628), - [anon_sym_7] = ACTIONS(628), - [anon_sym_sign] = ACTIONS(628), - [anon_sym_8] = ACTIONS(628), - [anon_sym_BQUOTE] = ACTIONS(628), - [anon_sym_9] = ACTIONS(626), - [anon_sym_absolutevalue] = ACTIONS(628), - [anon_sym_10] = ACTIONS(628), - [anon_sym_sqrt] = ACTIONS(628), - [anon_sym_11] = ACTIONS(628), - [anon_sym_sine] = ACTIONS(628), - [anon_sym_12] = ACTIONS(628), - [anon_sym_floor] = ACTIONS(628), - [anon_sym_13] = ACTIONS(628), - [anon_sym_ceiling] = ACTIONS(628), - [anon_sym_14] = ACTIONS(628), - [anon_sym_round] = ACTIONS(628), - [anon_sym_15] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_16] = ACTIONS(628), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_17] = ACTIONS(628), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_18] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_19] = ACTIONS(628), - [anon_sym_PERCENT] = ACTIONS(628), - [anon_sym_20] = ACTIONS(628), - [anon_sym_modulus] = ACTIONS(628), - [anon_sym_21] = ACTIONS(628), - [anon_sym_power] = ACTIONS(628), - [anon_sym_22] = ACTIONS(628), - [anon_sym_logarithm] = ACTIONS(628), - [anon_sym_23] = ACTIONS(628), - [anon_sym_minimum] = ACTIONS(628), - [anon_sym_24] = ACTIONS(628), - [anon_sym_maximum] = ACTIONS(628), - [anon_sym_25] = ACTIONS(628), - [anon_sym_atangent] = ACTIONS(628), - [anon_sym_26] = ACTIONS(628), - [anon_sym_length] = ACTIONS(628), - [anon_sym_27] = ACTIONS(628), - [anon_sym_shape] = ACTIONS(628), - [anon_sym_28] = ACTIONS(628), - [anon_sym_range] = ACTIONS(628), - [anon_sym_29] = ACTIONS(628), - [anon_sym_first] = ACTIONS(628), - [anon_sym_30] = ACTIONS(628), - [anon_sym_reverse] = ACTIONS(628), - [anon_sym_31] = ACTIONS(628), - [anon_sym_deshape] = ACTIONS(628), - [anon_sym_32] = ACTIONS(628), - [anon_sym_bits] = ACTIONS(628), - [anon_sym_33] = ACTIONS(628), - [anon_sym_transpose] = ACTIONS(628), - [anon_sym_34] = ACTIONS(628), - [anon_sym_rise] = ACTIONS(628), - [anon_sym_35] = ACTIONS(628), - [anon_sym_fall] = ACTIONS(628), - [anon_sym_36] = ACTIONS(628), - [anon_sym_where] = ACTIONS(628), - [anon_sym_37] = ACTIONS(628), - [anon_sym_classify] = ACTIONS(628), - [anon_sym_38] = ACTIONS(628), - [anon_sym_deduplicate] = ACTIONS(628), - [anon_sym_39] = ACTIONS(628), - [anon_sym_box] = ACTIONS(628), - [anon_sym_40] = ACTIONS(628), - [anon_sym_unbox] = ACTIONS(628), - [anon_sym_41] = ACTIONS(628), - [anon_sym_match] = ACTIONS(628), - [anon_sym_42] = ACTIONS(628), - [anon_sym_couple] = ACTIONS(628), - [anon_sym_43] = ACTIONS(628), - [anon_sym_join] = ACTIONS(628), - [anon_sym_44] = ACTIONS(628), - [anon_sym_select] = ACTIONS(628), - [anon_sym_45] = ACTIONS(628), - [anon_sym_pick] = ACTIONS(628), - [anon_sym_46] = ACTIONS(628), - [anon_sym_reshape] = ACTIONS(628), - [anon_sym_47] = ACTIONS(628), - [anon_sym_take] = ACTIONS(628), - [anon_sym_48] = ACTIONS(628), - [anon_sym_drop] = ACTIONS(628), - [anon_sym_49] = ACTIONS(628), - [anon_sym_rotate] = ACTIONS(628), - [anon_sym_50] = ACTIONS(628), - [anon_sym_windows] = ACTIONS(628), - [anon_sym_51] = ACTIONS(628), - [anon_sym_keep] = ACTIONS(628), - [anon_sym_52] = ACTIONS(628), - [anon_sym_find] = ACTIONS(628), - [anon_sym_53] = ACTIONS(628), - [anon_sym_member] = ACTIONS(628), - [anon_sym_54] = ACTIONS(628), - [anon_sym_indexof] = ACTIONS(628), - [anon_sym_55] = ACTIONS(628), - [anon_sym_assert] = ACTIONS(628), - [anon_sym_56] = ACTIONS(628), - [anon_sym_wait] = ACTIONS(628), - [anon_sym_parse] = ACTIONS(628), - [anon_sym_random] = ACTIONS(628), - [anon_sym_57] = ACTIONS(628), - [anon_sym_gen] = ACTIONS(628), - [anon_sym_deal] = ACTIONS(628), - [anon_sym_tag] = ACTIONS(628), - [anon_sym_now] = ACTIONS(628), - [anon_sym_type] = ACTIONS(628), - [anon_sym_58] = ACTIONS(628), - [anon_sym_dump] = ACTIONS(628), - [anon_sym_regex] = ACTIONS(628), - [anon_sym_utf] = ACTIONS(628), - [anon_sym_send] = ACTIONS(628), - [anon_sym_recv] = ACTIONS(628), - [anon_sym_tryrecv] = ACTIONS(628), - [anon_sym_complex] = ACTIONS(628), - [anon_sym_59] = ACTIONS(628), - [anon_sym_rerank] = ACTIONS(628), - [anon_sym_60] = ACTIONS(628), - [anon_sym_fix] = ACTIONS(628), - [anon_sym_61] = ACTIONS(628), - [anon_sym_reduce] = ACTIONS(628), - [anon_sym_SLASH] = ACTIONS(628), - [anon_sym_scan] = ACTIONS(628), - [anon_sym_BSLASH] = ACTIONS(628), - [anon_sym_each] = ACTIONS(628), - [anon_sym_62] = ACTIONS(628), - [anon_sym_rows] = ACTIONS(628), - [anon_sym_63] = ACTIONS(628), - [anon_sym_repeat] = ACTIONS(628), - [anon_sym_64] = ACTIONS(628), - [anon_sym_dip] = ACTIONS(628), - [anon_sym_65] = ACTIONS(628), - [anon_sym_gap] = ACTIONS(628), - [anon_sym_66] = ACTIONS(628), - [anon_sym_invert] = ACTIONS(628), - [anon_sym_67] = ACTIONS(628), - [anon_sym_spawn] = ACTIONS(628), - [anon_sym_pack] = ACTIONS(628), - [anon_sym_68] = ACTIONS(628), - [anon_sym_rectify] = ACTIONS(628), - [anon_sym_69] = ACTIONS(628), - [anon_sym_this] = ACTIONS(628), - [anon_sym_70] = ACTIONS(628), - [anon_sym_recur] = ACTIONS(628), - [anon_sym_71] = ACTIONS(628), - [anon_sym_fold] = ACTIONS(628), - [anon_sym_72] = ACTIONS(628), - [anon_sym_table] = ACTIONS(628), - [anon_sym_73] = ACTIONS(628), - [anon_sym_cross] = ACTIONS(628), - [anon_sym_74] = ACTIONS(628), - [anon_sym_group] = ACTIONS(628), - [anon_sym_75] = ACTIONS(628), - [anon_sym_partition] = ACTIONS(628), - [anon_sym_76] = ACTIONS(628), - [anon_sym_both] = ACTIONS(628), - [anon_sym_77] = ACTIONS(628), - [anon_sym_bracket] = ACTIONS(628), - [anon_sym_78] = ACTIONS(628), - [anon_sym_fork] = ACTIONS(628), - [anon_sym_79] = ACTIONS(628), - [anon_sym_under] = ACTIONS(628), - [anon_sym_80] = ACTIONS(628), - [anon_sym_fill] = ACTIONS(628), - [anon_sym_81] = ACTIONS(628), - [anon_sym_try] = ACTIONS(626), - [anon_sym_82] = ACTIONS(628), - [anon_sym_do] = ACTIONS(626), - [anon_sym_83] = ACTIONS(628), - [anon_sym_all] = ACTIONS(628), - [anon_sym_84] = ACTIONS(628), - [anon_sym_setinv] = ACTIONS(628), - [anon_sym_setunder] = ACTIONS(628), - [anon_sym_85] = ACTIONS(628), - [anon_sym_86] = ACTIONS(628), - [anon_sym_87] = ACTIONS(628), - [anon_sym_88] = ACTIONS(628), - [anon_sym_89] = ACTIONS(628), - [anon_sym_90] = ACTIONS(628), - [anon_sym_91] = ACTIONS(628), - [anon_sym_92] = ACTIONS(628), - [anon_sym_93] = ACTIONS(628), - [anon_sym_94] = ACTIONS(628), - [anon_sym_95] = ACTIONS(628), - [anon_sym_96] = ACTIONS(628), - [sym__endOfLine] = ACTIONS(5), + [130] = { + [ts_builtin_sym_end] = ACTIONS(530), + [aux_sym_number_token1] = ACTIONS(528), + [sym_fraction] = ACTIONS(530), + [anon_sym_os] = ACTIONS(528), + [anon_sym_Family] = ACTIONS(528), + [anon_sym_Arch] = ACTIONS(528), + [anon_sym_ExeExt] = ACTIONS(528), + [anon_sym_PllExt] = ACTIONS(528), + [anon_sym_Sep] = ACTIONS(528), + [anon_sym_NUmProcs] = ACTIONS(528), + [anon_sym_] = ACTIONS(530), + [aux_sym_character_token1] = ACTIONS(530), + [sym_string] = ACTIONS(530), + [sym_multiLineString] = ACTIONS(530), + [sym_identifier] = ACTIONS(528), + [sym_identifierDeprecated] = ACTIONS(528), + [sym_system] = ACTIONS(530), + [sym_comment] = ACTIONS(528), + [sym_openParen] = ACTIONS(530), + [sym_openCurly] = ACTIONS(530), + [sym_openBracket] = ACTIONS(530), + [sym_underscore] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_SQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(530), + [anon_sym_eta] = ACTIONS(530), + [anon_sym_2] = ACTIONS(528), + [anon_sym_pi] = ACTIONS(528), + [anon_sym_3] = ACTIONS(528), + [anon_sym_tau] = ACTIONS(530), + [anon_sym_4] = ACTIONS(528), + [anon_sym_infinity] = ACTIONS(530), + [anon_sym_5] = ACTIONS(530), + [anon_sym_e] = ACTIONS(528), + [anon_sym_NaN] = ACTIONS(528), + [anon_sym_NumProcs] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_identity] = ACTIONS(530), + [anon_sym_id] = ACTIONS(528), + [anon_sym_6] = ACTIONS(530), + [anon_sym_not] = ACTIONS(530), + [anon_sym_7] = ACTIONS(530), + [anon_sym_sign] = ACTIONS(530), + [anon_sym_8] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_9] = ACTIONS(528), + [anon_sym_absolutevalue] = ACTIONS(530), + [anon_sym_10] = ACTIONS(530), + [anon_sym_sqrt] = ACTIONS(530), + [anon_sym_11] = ACTIONS(530), + [anon_sym_sine] = ACTIONS(530), + [anon_sym_12] = ACTIONS(530), + [anon_sym_floor] = ACTIONS(530), + [anon_sym_13] = ACTIONS(530), + [anon_sym_ceiling] = ACTIONS(530), + [anon_sym_14] = ACTIONS(530), + [anon_sym_round] = ACTIONS(530), + [anon_sym_15] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_16] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_17] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_18] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_19] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_20] = ACTIONS(530), + [anon_sym_modulus] = ACTIONS(530), + [anon_sym_21] = ACTIONS(530), + [anon_sym_power] = ACTIONS(530), + [anon_sym_22] = ACTIONS(530), + [anon_sym_logarithm] = ACTIONS(530), + [anon_sym_23] = ACTIONS(530), + [anon_sym_minimum] = ACTIONS(530), + [anon_sym_24] = ACTIONS(530), + [anon_sym_maximum] = ACTIONS(530), + [anon_sym_25] = ACTIONS(530), + [anon_sym_atangent] = ACTIONS(530), + [anon_sym_26] = ACTIONS(530), + [anon_sym_length] = ACTIONS(530), + [anon_sym_27] = ACTIONS(530), + [anon_sym_shape] = ACTIONS(530), + [anon_sym_28] = ACTIONS(530), + [anon_sym_range] = ACTIONS(530), + [anon_sym_29] = ACTIONS(530), + [anon_sym_first] = ACTIONS(530), + [anon_sym_30] = ACTIONS(530), + [anon_sym_reverse] = ACTIONS(530), + [anon_sym_31] = ACTIONS(530), + [anon_sym_deshape] = ACTIONS(530), + [anon_sym_32] = ACTIONS(530), + [anon_sym_bits] = ACTIONS(530), + [anon_sym_33] = ACTIONS(530), + [anon_sym_transpose] = ACTIONS(530), + [anon_sym_34] = ACTIONS(530), + [anon_sym_rise] = ACTIONS(530), + [anon_sym_35] = ACTIONS(530), + [anon_sym_fall] = ACTIONS(530), + [anon_sym_36] = ACTIONS(530), + [anon_sym_where] = ACTIONS(530), + [anon_sym_37] = ACTIONS(530), + [anon_sym_classify] = ACTIONS(530), + [anon_sym_38] = ACTIONS(530), + [anon_sym_deduplicate] = ACTIONS(530), + [anon_sym_39] = ACTIONS(530), + [anon_sym_box] = ACTIONS(530), + [anon_sym_40] = ACTIONS(530), + [anon_sym_unbox] = ACTIONS(530), + [anon_sym_41] = ACTIONS(530), + [anon_sym_match] = ACTIONS(530), + [anon_sym_42] = ACTIONS(530), + [anon_sym_couple] = ACTIONS(530), + [anon_sym_43] = ACTIONS(530), + [anon_sym_join] = ACTIONS(530), + [anon_sym_44] = ACTIONS(530), + [anon_sym_select] = ACTIONS(530), + [anon_sym_45] = ACTIONS(530), + [anon_sym_pick] = ACTIONS(530), + [anon_sym_46] = ACTIONS(530), + [anon_sym_reshape] = ACTIONS(530), + [anon_sym_47] = ACTIONS(530), + [anon_sym_take] = ACTIONS(530), + [anon_sym_48] = ACTIONS(530), + [anon_sym_drop] = ACTIONS(530), + [anon_sym_49] = ACTIONS(530), + [anon_sym_rotate] = ACTIONS(530), + [anon_sym_50] = ACTIONS(530), + [anon_sym_windows] = ACTIONS(530), + [anon_sym_51] = ACTIONS(530), + [anon_sym_keep] = ACTIONS(530), + [anon_sym_52] = ACTIONS(530), + [anon_sym_find] = ACTIONS(530), + [anon_sym_53] = ACTIONS(530), + [anon_sym_member] = ACTIONS(530), + [anon_sym_54] = ACTIONS(530), + [anon_sym_indexof] = ACTIONS(530), + [anon_sym_55] = ACTIONS(530), + [anon_sym_assert] = ACTIONS(530), + [anon_sym_56] = ACTIONS(530), + [anon_sym_wait] = ACTIONS(530), + [anon_sym_parse] = ACTIONS(530), + [anon_sym_random] = ACTIONS(530), + [anon_sym_57] = ACTIONS(530), + [anon_sym_gen] = ACTIONS(530), + [anon_sym_deal] = ACTIONS(530), + [anon_sym_tag] = ACTIONS(530), + [anon_sym_now] = ACTIONS(530), + [anon_sym_type] = ACTIONS(530), + [anon_sym_58] = ACTIONS(530), + [anon_sym_dump] = ACTIONS(530), + [anon_sym_regex] = ACTIONS(530), + [anon_sym_utf] = ACTIONS(530), + [anon_sym_send] = ACTIONS(530), + [anon_sym_recv] = ACTIONS(530), + [anon_sym_tryrecv] = ACTIONS(530), + [anon_sym_complex] = ACTIONS(530), + [anon_sym_59] = ACTIONS(530), + [anon_sym_rerank] = ACTIONS(530), + [anon_sym_60] = ACTIONS(530), + [anon_sym_fix] = ACTIONS(530), + [anon_sym_61] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_reduce] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(530), + [anon_sym_scan] = ACTIONS(530), + [anon_sym_BSLASH] = ACTIONS(530), + [anon_sym_each] = ACTIONS(530), + [anon_sym_62] = ACTIONS(530), + [anon_sym_rows] = ACTIONS(530), + [anon_sym_63] = ACTIONS(530), + [anon_sym_repeat] = ACTIONS(530), + [anon_sym_64] = ACTIONS(530), + [anon_sym_dip] = ACTIONS(530), + [anon_sym_65] = ACTIONS(530), + [anon_sym_gap] = ACTIONS(530), + [anon_sym_66] = ACTIONS(530), + [anon_sym_invert] = ACTIONS(530), + [anon_sym_67] = ACTIONS(530), + [anon_sym_spawn] = ACTIONS(530), + [anon_sym_pack] = ACTIONS(530), + [anon_sym_68] = ACTIONS(530), + [anon_sym_rectify] = ACTIONS(530), + [anon_sym_69] = ACTIONS(530), + [anon_sym_this] = ACTIONS(530), + [anon_sym_70] = ACTIONS(530), + [anon_sym_recur] = ACTIONS(530), + [anon_sym_71] = ACTIONS(530), + [anon_sym_fold] = ACTIONS(530), + [anon_sym_72] = ACTIONS(530), + [anon_sym_table] = ACTIONS(530), + [anon_sym_73] = ACTIONS(530), + [anon_sym_cross] = ACTIONS(530), + [anon_sym_74] = ACTIONS(530), + [anon_sym_group] = ACTIONS(530), + [anon_sym_75] = ACTIONS(530), + [anon_sym_partition] = ACTIONS(530), + [anon_sym_76] = ACTIONS(530), + [anon_sym_both] = ACTIONS(530), + [anon_sym_77] = ACTIONS(530), + [anon_sym_bracket] = ACTIONS(530), + [anon_sym_78] = ACTIONS(530), + [anon_sym_fork] = ACTIONS(530), + [anon_sym_79] = ACTIONS(530), + [anon_sym_under] = ACTIONS(530), + [anon_sym_80] = ACTIONS(530), + [anon_sym_fill] = ACTIONS(530), + [anon_sym_81] = ACTIONS(530), + [anon_sym_try] = ACTIONS(528), + [anon_sym_82] = ACTIONS(530), + [anon_sym_do] = ACTIONS(528), + [anon_sym_83] = ACTIONS(530), + [anon_sym_all] = ACTIONS(530), + [anon_sym_84] = ACTIONS(530), + [anon_sym_setinv] = ACTIONS(530), + [anon_sym_setunder] = ACTIONS(530), + [anon_sym_85] = ACTIONS(530), + [anon_sym_86] = ACTIONS(530), + [anon_sym_87] = ACTIONS(530), + [anon_sym_88] = ACTIONS(530), + [anon_sym_89] = ACTIONS(530), + [anon_sym_90] = ACTIONS(530), + [anon_sym_91] = ACTIONS(530), + [anon_sym_92] = ACTIONS(530), + [sym__endOfLine] = ACTIONS(530), }, - [164] = { - [aux_sym_number_token1] = ACTIONS(630), - [sym_fraction] = ACTIONS(632), - [anon_sym_os] = ACTIONS(630), - [anon_sym_Family] = ACTIONS(630), - [anon_sym_Arch] = ACTIONS(630), - [anon_sym_ExeExt] = ACTIONS(630), - [anon_sym_PllExt] = ACTIONS(630), - [anon_sym_Sep] = ACTIONS(630), - [anon_sym_NUmProcs] = ACTIONS(630), - [anon_sym_] = ACTIONS(632), - [aux_sym_character_token1] = ACTIONS(632), - [sym_string] = ACTIONS(632), - [sym_multiLineString] = ACTIONS(632), - [sym_identifier] = ACTIONS(630), - [sym_identifierDeprecated] = ACTIONS(630), - [sym_system] = ACTIONS(632), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(632), - [sym_openCurly] = ACTIONS(632), - [sym_openBracket] = ACTIONS(632), - [anon_sym_CARET] = ACTIONS(632), - [anon_sym_eta] = ACTIONS(632), - [anon_sym_2] = ACTIONS(630), - [anon_sym_pi] = ACTIONS(630), - [anon_sym_3] = ACTIONS(630), - [anon_sym_tau] = ACTIONS(632), - [anon_sym_4] = ACTIONS(630), - [anon_sym_infinity] = ACTIONS(632), - [anon_sym_5] = ACTIONS(632), - [anon_sym_e] = ACTIONS(630), - [anon_sym_NaN] = ACTIONS(630), - [anon_sym_NumProcs] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(632), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_COLON] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_identity] = ACTIONS(632), - [anon_sym_id] = ACTIONS(630), - [anon_sym_6] = ACTIONS(632), - [anon_sym_not] = ACTIONS(632), - [anon_sym_7] = ACTIONS(632), - [anon_sym_sign] = ACTIONS(632), - [anon_sym_8] = ACTIONS(632), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_9] = ACTIONS(630), - [anon_sym_absolutevalue] = ACTIONS(632), - [anon_sym_10] = ACTIONS(632), - [anon_sym_sqrt] = ACTIONS(632), - [anon_sym_11] = ACTIONS(632), - [anon_sym_sine] = ACTIONS(632), - [anon_sym_12] = ACTIONS(632), - [anon_sym_floor] = ACTIONS(632), - [anon_sym_13] = ACTIONS(632), - [anon_sym_ceiling] = ACTIONS(632), - [anon_sym_14] = ACTIONS(632), - [anon_sym_round] = ACTIONS(632), - [anon_sym_15] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_16] = ACTIONS(632), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_17] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_18] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(632), - [anon_sym_19] = ACTIONS(632), - [anon_sym_PERCENT] = ACTIONS(632), - [anon_sym_20] = ACTIONS(632), - [anon_sym_modulus] = ACTIONS(632), - [anon_sym_21] = ACTIONS(632), - [anon_sym_power] = ACTIONS(632), - [anon_sym_22] = ACTIONS(632), - [anon_sym_logarithm] = ACTIONS(632), - [anon_sym_23] = ACTIONS(632), - [anon_sym_minimum] = ACTIONS(632), - [anon_sym_24] = ACTIONS(632), - [anon_sym_maximum] = ACTIONS(632), - [anon_sym_25] = ACTIONS(632), - [anon_sym_atangent] = ACTIONS(632), - [anon_sym_26] = ACTIONS(632), - [anon_sym_length] = ACTIONS(632), - [anon_sym_27] = ACTIONS(632), - [anon_sym_shape] = ACTIONS(632), - [anon_sym_28] = ACTIONS(632), - [anon_sym_range] = ACTIONS(632), - [anon_sym_29] = ACTIONS(632), - [anon_sym_first] = ACTIONS(632), - [anon_sym_30] = ACTIONS(632), - [anon_sym_reverse] = ACTIONS(632), - [anon_sym_31] = ACTIONS(632), - [anon_sym_deshape] = ACTIONS(632), - [anon_sym_32] = ACTIONS(632), - [anon_sym_bits] = ACTIONS(632), - [anon_sym_33] = ACTIONS(632), - [anon_sym_transpose] = ACTIONS(632), - [anon_sym_34] = ACTIONS(632), - [anon_sym_rise] = ACTIONS(632), - [anon_sym_35] = ACTIONS(632), - [anon_sym_fall] = ACTIONS(632), - [anon_sym_36] = ACTIONS(632), - [anon_sym_where] = ACTIONS(632), - [anon_sym_37] = ACTIONS(632), - [anon_sym_classify] = ACTIONS(632), - [anon_sym_38] = ACTIONS(632), - [anon_sym_deduplicate] = ACTIONS(632), - [anon_sym_39] = ACTIONS(632), - [anon_sym_box] = ACTIONS(632), - [anon_sym_40] = ACTIONS(632), - [anon_sym_unbox] = ACTIONS(632), - [anon_sym_41] = ACTIONS(632), - [anon_sym_match] = ACTIONS(632), - [anon_sym_42] = ACTIONS(632), - [anon_sym_couple] = ACTIONS(632), - [anon_sym_43] = ACTIONS(632), - [anon_sym_join] = ACTIONS(632), - [anon_sym_44] = ACTIONS(632), - [anon_sym_select] = ACTIONS(632), - [anon_sym_45] = ACTIONS(632), - [anon_sym_pick] = ACTIONS(632), - [anon_sym_46] = ACTIONS(632), - [anon_sym_reshape] = ACTIONS(632), - [anon_sym_47] = ACTIONS(632), - [anon_sym_take] = ACTIONS(632), - [anon_sym_48] = ACTIONS(632), - [anon_sym_drop] = ACTIONS(632), - [anon_sym_49] = ACTIONS(632), - [anon_sym_rotate] = ACTIONS(632), - [anon_sym_50] = ACTIONS(632), - [anon_sym_windows] = ACTIONS(632), - [anon_sym_51] = ACTIONS(632), - [anon_sym_keep] = ACTIONS(632), - [anon_sym_52] = ACTIONS(632), - [anon_sym_find] = ACTIONS(632), - [anon_sym_53] = ACTIONS(632), - [anon_sym_member] = ACTIONS(632), - [anon_sym_54] = ACTIONS(632), - [anon_sym_indexof] = ACTIONS(632), - [anon_sym_55] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_56] = ACTIONS(632), - [anon_sym_wait] = ACTIONS(632), - [anon_sym_parse] = ACTIONS(632), - [anon_sym_random] = ACTIONS(632), - [anon_sym_57] = ACTIONS(632), - [anon_sym_gen] = ACTIONS(632), - [anon_sym_deal] = ACTIONS(632), - [anon_sym_tag] = ACTIONS(632), - [anon_sym_now] = ACTIONS(632), - [anon_sym_type] = ACTIONS(632), - [anon_sym_58] = ACTIONS(632), - [anon_sym_dump] = ACTIONS(632), - [anon_sym_regex] = ACTIONS(632), - [anon_sym_utf] = ACTIONS(632), - [anon_sym_send] = ACTIONS(632), - [anon_sym_recv] = ACTIONS(632), - [anon_sym_tryrecv] = ACTIONS(632), - [anon_sym_complex] = ACTIONS(632), - [anon_sym_59] = ACTIONS(632), - [anon_sym_rerank] = ACTIONS(632), - [anon_sym_60] = ACTIONS(632), - [anon_sym_fix] = ACTIONS(632), - [anon_sym_61] = ACTIONS(632), - [anon_sym_reduce] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_scan] = ACTIONS(632), - [anon_sym_BSLASH] = ACTIONS(632), - [anon_sym_each] = ACTIONS(632), - [anon_sym_62] = ACTIONS(632), - [anon_sym_rows] = ACTIONS(632), - [anon_sym_63] = ACTIONS(632), - [anon_sym_repeat] = ACTIONS(632), - [anon_sym_64] = ACTIONS(632), - [anon_sym_dip] = ACTIONS(632), - [anon_sym_65] = ACTIONS(632), - [anon_sym_gap] = ACTIONS(632), - [anon_sym_66] = ACTIONS(632), - [anon_sym_invert] = ACTIONS(632), - [anon_sym_67] = ACTIONS(632), - [anon_sym_spawn] = ACTIONS(632), - [anon_sym_pack] = ACTIONS(632), - [anon_sym_68] = ACTIONS(632), - [anon_sym_rectify] = ACTIONS(632), - [anon_sym_69] = ACTIONS(632), - [anon_sym_this] = ACTIONS(632), - [anon_sym_70] = ACTIONS(632), - [anon_sym_recur] = ACTIONS(632), - [anon_sym_71] = ACTIONS(632), - [anon_sym_fold] = ACTIONS(632), - [anon_sym_72] = ACTIONS(632), - [anon_sym_table] = ACTIONS(632), - [anon_sym_73] = ACTIONS(632), - [anon_sym_cross] = ACTIONS(632), - [anon_sym_74] = ACTIONS(632), - [anon_sym_group] = ACTIONS(632), - [anon_sym_75] = ACTIONS(632), - [anon_sym_partition] = ACTIONS(632), - [anon_sym_76] = ACTIONS(632), - [anon_sym_both] = ACTIONS(632), - [anon_sym_77] = ACTIONS(632), - [anon_sym_bracket] = ACTIONS(632), - [anon_sym_78] = ACTIONS(632), - [anon_sym_fork] = ACTIONS(632), - [anon_sym_79] = ACTIONS(632), - [anon_sym_under] = ACTIONS(632), - [anon_sym_80] = ACTIONS(632), - [anon_sym_fill] = ACTIONS(632), - [anon_sym_81] = ACTIONS(632), - [anon_sym_try] = ACTIONS(630), - [anon_sym_82] = ACTIONS(632), - [anon_sym_do] = ACTIONS(630), - [anon_sym_83] = ACTIONS(632), - [anon_sym_all] = ACTIONS(632), - [anon_sym_84] = ACTIONS(632), - [anon_sym_setinv] = ACTIONS(632), - [anon_sym_setunder] = ACTIONS(632), - [anon_sym_85] = ACTIONS(632), - [anon_sym_86] = ACTIONS(632), - [anon_sym_87] = ACTIONS(632), - [anon_sym_88] = ACTIONS(632), - [anon_sym_89] = ACTIONS(632), - [anon_sym_90] = ACTIONS(632), - [anon_sym_91] = ACTIONS(632), - [anon_sym_92] = ACTIONS(632), - [anon_sym_93] = ACTIONS(632), - [anon_sym_94] = ACTIONS(632), - [anon_sym_95] = ACTIONS(632), - [anon_sym_96] = ACTIONS(632), - [sym__endOfLine] = ACTIONS(5), + [131] = { + [aux_sym_number_token1] = ACTIONS(504), + [sym_fraction] = ACTIONS(506), + [anon_sym_os] = ACTIONS(504), + [anon_sym_Family] = ACTIONS(504), + [anon_sym_Arch] = ACTIONS(504), + [anon_sym_ExeExt] = ACTIONS(504), + [anon_sym_PllExt] = ACTIONS(504), + [anon_sym_Sep] = ACTIONS(504), + [anon_sym_NUmProcs] = ACTIONS(504), + [anon_sym_] = ACTIONS(506), + [aux_sym_character_token1] = ACTIONS(506), + [sym_string] = ACTIONS(506), + [sym_multiLineString] = ACTIONS(506), + [sym_identifier] = ACTIONS(504), + [sym_identifierDeprecated] = ACTIONS(504), + [sym_system] = ACTIONS(506), + [sym_comment] = ACTIONS(504), + [sym_openParen] = ACTIONS(506), + [sym_openCurly] = ACTIONS(506), + [sym_openBracket] = ACTIONS(506), + [sym_underscore] = ACTIONS(506), + [sym_leftArrow] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(504), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(506), + [anon_sym_eta] = ACTIONS(506), + [anon_sym_2] = ACTIONS(504), + [anon_sym_pi] = ACTIONS(504), + [anon_sym_3] = ACTIONS(504), + [anon_sym_tau] = ACTIONS(506), + [anon_sym_4] = ACTIONS(504), + [anon_sym_infinity] = ACTIONS(506), + [anon_sym_5] = ACTIONS(506), + [anon_sym_e] = ACTIONS(504), + [anon_sym_NaN] = ACTIONS(504), + [anon_sym_NumProcs] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_identity] = ACTIONS(506), + [anon_sym_id] = ACTIONS(504), + [anon_sym_6] = ACTIONS(506), + [anon_sym_not] = ACTIONS(506), + [anon_sym_7] = ACTIONS(506), + [anon_sym_sign] = ACTIONS(506), + [anon_sym_8] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(506), + [anon_sym_9] = ACTIONS(504), + [anon_sym_absolutevalue] = ACTIONS(506), + [anon_sym_10] = ACTIONS(506), + [anon_sym_sqrt] = ACTIONS(506), + [anon_sym_11] = ACTIONS(506), + [anon_sym_sine] = ACTIONS(506), + [anon_sym_12] = ACTIONS(506), + [anon_sym_floor] = ACTIONS(506), + [anon_sym_13] = ACTIONS(506), + [anon_sym_ceiling] = ACTIONS(506), + [anon_sym_14] = ACTIONS(506), + [anon_sym_round] = ACTIONS(506), + [anon_sym_15] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_16] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_17] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_18] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_19] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_20] = ACTIONS(506), + [anon_sym_modulus] = ACTIONS(506), + [anon_sym_21] = ACTIONS(506), + [anon_sym_power] = ACTIONS(506), + [anon_sym_22] = ACTIONS(506), + [anon_sym_logarithm] = ACTIONS(506), + [anon_sym_23] = ACTIONS(506), + [anon_sym_minimum] = ACTIONS(506), + [anon_sym_24] = ACTIONS(506), + [anon_sym_maximum] = ACTIONS(506), + [anon_sym_25] = ACTIONS(506), + [anon_sym_atangent] = ACTIONS(506), + [anon_sym_26] = ACTIONS(506), + [anon_sym_length] = ACTIONS(506), + [anon_sym_27] = ACTIONS(506), + [anon_sym_shape] = ACTIONS(506), + [anon_sym_28] = ACTIONS(506), + [anon_sym_range] = ACTIONS(506), + [anon_sym_29] = ACTIONS(506), + [anon_sym_first] = ACTIONS(506), + [anon_sym_30] = ACTIONS(506), + [anon_sym_reverse] = ACTIONS(506), + [anon_sym_31] = ACTIONS(506), + [anon_sym_deshape] = ACTIONS(506), + [anon_sym_32] = ACTIONS(506), + [anon_sym_bits] = ACTIONS(506), + [anon_sym_33] = ACTIONS(506), + [anon_sym_transpose] = ACTIONS(506), + [anon_sym_34] = ACTIONS(506), + [anon_sym_rise] = ACTIONS(506), + [anon_sym_35] = ACTIONS(506), + [anon_sym_fall] = ACTIONS(506), + [anon_sym_36] = ACTIONS(506), + [anon_sym_where] = ACTIONS(506), + [anon_sym_37] = ACTIONS(506), + [anon_sym_classify] = ACTIONS(506), + [anon_sym_38] = ACTIONS(506), + [anon_sym_deduplicate] = ACTIONS(506), + [anon_sym_39] = ACTIONS(506), + [anon_sym_box] = ACTIONS(506), + [anon_sym_40] = ACTIONS(506), + [anon_sym_unbox] = ACTIONS(506), + [anon_sym_41] = ACTIONS(506), + [anon_sym_match] = ACTIONS(506), + [anon_sym_42] = ACTIONS(506), + [anon_sym_couple] = ACTIONS(506), + [anon_sym_43] = ACTIONS(506), + [anon_sym_join] = ACTIONS(506), + [anon_sym_44] = ACTIONS(506), + [anon_sym_select] = ACTIONS(506), + [anon_sym_45] = ACTIONS(506), + [anon_sym_pick] = ACTIONS(506), + [anon_sym_46] = ACTIONS(506), + [anon_sym_reshape] = ACTIONS(506), + [anon_sym_47] = ACTIONS(506), + [anon_sym_take] = ACTIONS(506), + [anon_sym_48] = ACTIONS(506), + [anon_sym_drop] = ACTIONS(506), + [anon_sym_49] = ACTIONS(506), + [anon_sym_rotate] = ACTIONS(506), + [anon_sym_50] = ACTIONS(506), + [anon_sym_windows] = ACTIONS(506), + [anon_sym_51] = ACTIONS(506), + [anon_sym_keep] = ACTIONS(506), + [anon_sym_52] = ACTIONS(506), + [anon_sym_find] = ACTIONS(506), + [anon_sym_53] = ACTIONS(506), + [anon_sym_member] = ACTIONS(506), + [anon_sym_54] = ACTIONS(506), + [anon_sym_indexof] = ACTIONS(506), + [anon_sym_55] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(506), + [anon_sym_56] = ACTIONS(506), + [anon_sym_wait] = ACTIONS(506), + [anon_sym_parse] = ACTIONS(506), + [anon_sym_random] = ACTIONS(506), + [anon_sym_57] = ACTIONS(506), + [anon_sym_gen] = ACTIONS(506), + [anon_sym_deal] = ACTIONS(506), + [anon_sym_tag] = ACTIONS(506), + [anon_sym_now] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_58] = ACTIONS(506), + [anon_sym_dump] = ACTIONS(506), + [anon_sym_regex] = ACTIONS(506), + [anon_sym_utf] = ACTIONS(506), + [anon_sym_send] = ACTIONS(506), + [anon_sym_recv] = ACTIONS(506), + [anon_sym_tryrecv] = ACTIONS(506), + [anon_sym_complex] = ACTIONS(506), + [anon_sym_59] = ACTIONS(506), + [anon_sym_rerank] = ACTIONS(506), + [anon_sym_60] = ACTIONS(506), + [anon_sym_fix] = ACTIONS(506), + [anon_sym_61] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_reduce] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_scan] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(506), + [anon_sym_each] = ACTIONS(506), + [anon_sym_62] = ACTIONS(506), + [anon_sym_rows] = ACTIONS(506), + [anon_sym_63] = ACTIONS(506), + [anon_sym_repeat] = ACTIONS(506), + [anon_sym_64] = ACTIONS(506), + [anon_sym_dip] = ACTIONS(506), + [anon_sym_65] = ACTIONS(506), + [anon_sym_gap] = ACTIONS(506), + [anon_sym_66] = ACTIONS(506), + [anon_sym_invert] = ACTIONS(506), + [anon_sym_67] = ACTIONS(506), + [anon_sym_spawn] = ACTIONS(506), + [anon_sym_pack] = ACTIONS(506), + [anon_sym_68] = ACTIONS(506), + [anon_sym_rectify] = ACTIONS(506), + [anon_sym_69] = ACTIONS(506), + [anon_sym_this] = ACTIONS(506), + [anon_sym_70] = ACTIONS(506), + [anon_sym_recur] = ACTIONS(506), + [anon_sym_71] = ACTIONS(506), + [anon_sym_fold] = ACTIONS(506), + [anon_sym_72] = ACTIONS(506), + [anon_sym_table] = ACTIONS(506), + [anon_sym_73] = ACTIONS(506), + [anon_sym_cross] = ACTIONS(506), + [anon_sym_74] = ACTIONS(506), + [anon_sym_group] = ACTIONS(506), + [anon_sym_75] = ACTIONS(506), + [anon_sym_partition] = ACTIONS(506), + [anon_sym_76] = ACTIONS(506), + [anon_sym_both] = ACTIONS(506), + [anon_sym_77] = ACTIONS(506), + [anon_sym_bracket] = ACTIONS(506), + [anon_sym_78] = ACTIONS(506), + [anon_sym_fork] = ACTIONS(506), + [anon_sym_79] = ACTIONS(506), + [anon_sym_under] = ACTIONS(506), + [anon_sym_80] = ACTIONS(506), + [anon_sym_fill] = ACTIONS(506), + [anon_sym_81] = ACTIONS(506), + [anon_sym_try] = ACTIONS(504), + [anon_sym_82] = ACTIONS(506), + [anon_sym_do] = ACTIONS(504), + [anon_sym_83] = ACTIONS(506), + [anon_sym_all] = ACTIONS(506), + [anon_sym_84] = ACTIONS(506), + [anon_sym_setinv] = ACTIONS(506), + [anon_sym_setunder] = ACTIONS(506), + [anon_sym_85] = ACTIONS(506), + [anon_sym_86] = ACTIONS(506), + [anon_sym_87] = ACTIONS(506), + [anon_sym_88] = ACTIONS(506), + [anon_sym_89] = ACTIONS(506), + [anon_sym_90] = ACTIONS(506), + [anon_sym_91] = ACTIONS(506), + [anon_sym_92] = ACTIONS(506), + [sym__endOfLine] = ACTIONS(506), }, - [165] = { - [aux_sym_number_token1] = ACTIONS(580), - [sym_fraction] = ACTIONS(582), - [anon_sym_os] = ACTIONS(580), - [anon_sym_Family] = ACTIONS(580), - [anon_sym_Arch] = ACTIONS(580), - [anon_sym_ExeExt] = ACTIONS(580), - [anon_sym_PllExt] = ACTIONS(580), - [anon_sym_Sep] = ACTIONS(580), - [anon_sym_NUmProcs] = ACTIONS(580), - [anon_sym_] = ACTIONS(582), - [aux_sym_character_token1] = ACTIONS(582), - [sym_string] = ACTIONS(582), - [sym_multiLineString] = ACTIONS(582), - [sym_identifier] = ACTIONS(580), - [sym_identifierDeprecated] = ACTIONS(580), - [sym_system] = ACTIONS(582), - [sym_comment] = ACTIONS(580), - [sym_openParen] = ACTIONS(582), - [sym_openCurly] = ACTIONS(582), - [sym_openBracket] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_eta] = ACTIONS(582), - [anon_sym_2] = ACTIONS(580), - [anon_sym_pi] = ACTIONS(580), - [anon_sym_3] = ACTIONS(580), - [anon_sym_tau] = ACTIONS(582), - [anon_sym_4] = ACTIONS(580), - [anon_sym_infinity] = ACTIONS(582), - [anon_sym_5] = ACTIONS(582), - [anon_sym_e] = ACTIONS(580), - [anon_sym_NaN] = ACTIONS(580), - [anon_sym_NumProcs] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_identity] = ACTIONS(582), - [anon_sym_id] = ACTIONS(580), - [anon_sym_6] = ACTIONS(582), - [anon_sym_not] = ACTIONS(582), - [anon_sym_7] = ACTIONS(582), - [anon_sym_sign] = ACTIONS(582), - [anon_sym_8] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_9] = ACTIONS(580), - [anon_sym_absolutevalue] = ACTIONS(582), - [anon_sym_10] = ACTIONS(582), - [anon_sym_sqrt] = ACTIONS(582), - [anon_sym_11] = ACTIONS(582), - [anon_sym_sine] = ACTIONS(582), - [anon_sym_12] = ACTIONS(582), - [anon_sym_floor] = ACTIONS(582), - [anon_sym_13] = ACTIONS(582), - [anon_sym_ceiling] = ACTIONS(582), - [anon_sym_14] = ACTIONS(582), - [anon_sym_round] = ACTIONS(582), - [anon_sym_15] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_16] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_17] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_18] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_19] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_20] = ACTIONS(582), - [anon_sym_modulus] = ACTIONS(582), - [anon_sym_21] = ACTIONS(582), - [anon_sym_power] = ACTIONS(582), - [anon_sym_22] = ACTIONS(582), - [anon_sym_logarithm] = ACTIONS(582), - [anon_sym_23] = ACTIONS(582), - [anon_sym_minimum] = ACTIONS(582), - [anon_sym_24] = ACTIONS(582), - [anon_sym_maximum] = ACTIONS(582), - [anon_sym_25] = ACTIONS(582), - [anon_sym_atangent] = ACTIONS(582), - [anon_sym_26] = ACTIONS(582), - [anon_sym_length] = ACTIONS(582), - [anon_sym_27] = ACTIONS(582), - [anon_sym_shape] = ACTIONS(582), - [anon_sym_28] = ACTIONS(582), - [anon_sym_range] = ACTIONS(582), - [anon_sym_29] = ACTIONS(582), - [anon_sym_first] = ACTIONS(582), - [anon_sym_30] = ACTIONS(582), - [anon_sym_reverse] = ACTIONS(582), - [anon_sym_31] = ACTIONS(582), - [anon_sym_deshape] = ACTIONS(582), - [anon_sym_32] = ACTIONS(582), - [anon_sym_bits] = ACTIONS(582), - [anon_sym_33] = ACTIONS(582), - [anon_sym_transpose] = ACTIONS(582), - [anon_sym_34] = ACTIONS(582), - [anon_sym_rise] = ACTIONS(582), - [anon_sym_35] = ACTIONS(582), - [anon_sym_fall] = ACTIONS(582), - [anon_sym_36] = ACTIONS(582), - [anon_sym_where] = ACTIONS(582), - [anon_sym_37] = ACTIONS(582), - [anon_sym_classify] = ACTIONS(582), - [anon_sym_38] = ACTIONS(582), - [anon_sym_deduplicate] = ACTIONS(582), - [anon_sym_39] = ACTIONS(582), - [anon_sym_box] = ACTIONS(582), - [anon_sym_40] = ACTIONS(582), - [anon_sym_unbox] = ACTIONS(582), - [anon_sym_41] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_42] = ACTIONS(582), - [anon_sym_couple] = ACTIONS(582), - [anon_sym_43] = ACTIONS(582), - [anon_sym_join] = ACTIONS(582), - [anon_sym_44] = ACTIONS(582), - [anon_sym_select] = ACTIONS(582), - [anon_sym_45] = ACTIONS(582), - [anon_sym_pick] = ACTIONS(582), - [anon_sym_46] = ACTIONS(582), - [anon_sym_reshape] = ACTIONS(582), - [anon_sym_47] = ACTIONS(582), - [anon_sym_take] = ACTIONS(582), - [anon_sym_48] = ACTIONS(582), - [anon_sym_drop] = ACTIONS(582), - [anon_sym_49] = ACTIONS(582), - [anon_sym_rotate] = ACTIONS(582), - [anon_sym_50] = ACTIONS(582), - [anon_sym_windows] = ACTIONS(582), - [anon_sym_51] = ACTIONS(582), - [anon_sym_keep] = ACTIONS(582), - [anon_sym_52] = ACTIONS(582), - [anon_sym_find] = ACTIONS(582), - [anon_sym_53] = ACTIONS(582), - [anon_sym_member] = ACTIONS(582), - [anon_sym_54] = ACTIONS(582), - [anon_sym_indexof] = ACTIONS(582), - [anon_sym_55] = ACTIONS(582), - [anon_sym_assert] = ACTIONS(582), - [anon_sym_56] = ACTIONS(582), - [anon_sym_wait] = ACTIONS(582), - [anon_sym_parse] = ACTIONS(582), - [anon_sym_random] = ACTIONS(582), - [anon_sym_57] = ACTIONS(582), - [anon_sym_gen] = ACTIONS(582), - [anon_sym_deal] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_now] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_58] = ACTIONS(582), - [anon_sym_dump] = ACTIONS(582), - [anon_sym_regex] = ACTIONS(582), - [anon_sym_utf] = ACTIONS(582), - [anon_sym_send] = ACTIONS(582), - [anon_sym_recv] = ACTIONS(582), - [anon_sym_tryrecv] = ACTIONS(582), - [anon_sym_complex] = ACTIONS(582), - [anon_sym_59] = ACTIONS(582), - [anon_sym_rerank] = ACTIONS(582), - [anon_sym_60] = ACTIONS(582), - [anon_sym_fix] = ACTIONS(582), - [anon_sym_61] = ACTIONS(582), - [anon_sym_reduce] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_scan] = ACTIONS(582), - [anon_sym_BSLASH] = ACTIONS(582), - [anon_sym_each] = ACTIONS(582), - [anon_sym_62] = ACTIONS(582), - [anon_sym_rows] = ACTIONS(582), - [anon_sym_63] = ACTIONS(582), - [anon_sym_repeat] = ACTIONS(582), - [anon_sym_64] = ACTIONS(582), - [anon_sym_dip] = ACTIONS(582), - [anon_sym_65] = ACTIONS(582), - [anon_sym_gap] = ACTIONS(582), - [anon_sym_66] = ACTIONS(582), - [anon_sym_invert] = ACTIONS(582), - [anon_sym_67] = ACTIONS(582), - [anon_sym_spawn] = ACTIONS(582), - [anon_sym_pack] = ACTIONS(582), - [anon_sym_68] = ACTIONS(582), - [anon_sym_rectify] = ACTIONS(582), - [anon_sym_69] = ACTIONS(582), - [anon_sym_this] = ACTIONS(582), - [anon_sym_70] = ACTIONS(582), - [anon_sym_recur] = ACTIONS(582), - [anon_sym_71] = ACTIONS(582), - [anon_sym_fold] = ACTIONS(582), - [anon_sym_72] = ACTIONS(582), - [anon_sym_table] = ACTIONS(582), - [anon_sym_73] = ACTIONS(582), - [anon_sym_cross] = ACTIONS(582), - [anon_sym_74] = ACTIONS(582), - [anon_sym_group] = ACTIONS(582), - [anon_sym_75] = ACTIONS(582), - [anon_sym_partition] = ACTIONS(582), - [anon_sym_76] = ACTIONS(582), - [anon_sym_both] = ACTIONS(582), - [anon_sym_77] = ACTIONS(582), - [anon_sym_bracket] = ACTIONS(582), - [anon_sym_78] = ACTIONS(582), - [anon_sym_fork] = ACTIONS(582), - [anon_sym_79] = ACTIONS(582), - [anon_sym_under] = ACTIONS(582), - [anon_sym_80] = ACTIONS(582), - [anon_sym_fill] = ACTIONS(582), - [anon_sym_81] = ACTIONS(582), - [anon_sym_try] = ACTIONS(580), - [anon_sym_82] = ACTIONS(582), - [anon_sym_do] = ACTIONS(580), - [anon_sym_83] = ACTIONS(582), - [anon_sym_all] = ACTIONS(582), - [anon_sym_84] = ACTIONS(582), - [anon_sym_setinv] = ACTIONS(582), - [anon_sym_setunder] = ACTIONS(582), - [anon_sym_85] = ACTIONS(582), - [anon_sym_86] = ACTIONS(582), - [anon_sym_87] = ACTIONS(582), - [anon_sym_88] = ACTIONS(582), - [anon_sym_89] = ACTIONS(582), - [anon_sym_90] = ACTIONS(582), - [anon_sym_91] = ACTIONS(582), - [anon_sym_92] = ACTIONS(582), - [anon_sym_93] = ACTIONS(582), - [anon_sym_94] = ACTIONS(582), - [anon_sym_95] = ACTIONS(582), - [anon_sym_96] = ACTIONS(582), - [sym__endOfLine] = ACTIONS(5), + [132] = { + [aux_sym_number_token1] = ACTIONS(614), + [sym_fraction] = ACTIONS(616), + [anon_sym_os] = ACTIONS(614), + [anon_sym_Family] = ACTIONS(614), + [anon_sym_Arch] = ACTIONS(614), + [anon_sym_ExeExt] = ACTIONS(614), + [anon_sym_PllExt] = ACTIONS(614), + [anon_sym_Sep] = ACTIONS(614), + [anon_sym_NUmProcs] = ACTIONS(614), + [anon_sym_] = ACTIONS(616), + [aux_sym_character_token1] = ACTIONS(616), + [sym_string] = ACTIONS(616), + [sym_multiLineString] = ACTIONS(616), + [sym_identifier] = ACTIONS(614), + [sym_identifierDeprecated] = ACTIONS(614), + [sym_system] = ACTIONS(616), + [sym_comment] = ACTIONS(614), + [sym_openParen] = ACTIONS(616), + [sym_openCurly] = ACTIONS(616), + [sym_closeCurly] = ACTIONS(616), + [sym_openBracket] = ACTIONS(616), + [sym_closeBracket] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(616), + [anon_sym_eta] = ACTIONS(616), + [anon_sym_2] = ACTIONS(614), + [anon_sym_pi] = ACTIONS(614), + [anon_sym_3] = ACTIONS(614), + [anon_sym_tau] = ACTIONS(616), + [anon_sym_4] = ACTIONS(614), + [anon_sym_infinity] = ACTIONS(616), + [anon_sym_5] = ACTIONS(616), + [anon_sym_e] = ACTIONS(614), + [anon_sym_NaN] = ACTIONS(614), + [anon_sym_NumProcs] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_identity] = ACTIONS(616), + [anon_sym_id] = ACTIONS(614), + [anon_sym_6] = ACTIONS(616), + [anon_sym_not] = ACTIONS(616), + [anon_sym_7] = ACTIONS(616), + [anon_sym_sign] = ACTIONS(616), + [anon_sym_8] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_9] = ACTIONS(614), + [anon_sym_absolutevalue] = ACTIONS(616), + [anon_sym_10] = ACTIONS(616), + [anon_sym_sqrt] = ACTIONS(616), + [anon_sym_11] = ACTIONS(616), + [anon_sym_sine] = ACTIONS(616), + [anon_sym_12] = ACTIONS(616), + [anon_sym_floor] = ACTIONS(616), + [anon_sym_13] = ACTIONS(616), + [anon_sym_ceiling] = ACTIONS(616), + [anon_sym_14] = ACTIONS(616), + [anon_sym_round] = ACTIONS(616), + [anon_sym_15] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_16] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_17] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_18] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_19] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_20] = ACTIONS(616), + [anon_sym_modulus] = ACTIONS(616), + [anon_sym_21] = ACTIONS(616), + [anon_sym_power] = ACTIONS(616), + [anon_sym_22] = ACTIONS(616), + [anon_sym_logarithm] = ACTIONS(616), + [anon_sym_23] = ACTIONS(616), + [anon_sym_minimum] = ACTIONS(616), + [anon_sym_24] = ACTIONS(616), + [anon_sym_maximum] = ACTIONS(616), + [anon_sym_25] = ACTIONS(616), + [anon_sym_atangent] = ACTIONS(616), + [anon_sym_26] = ACTIONS(616), + [anon_sym_length] = ACTIONS(616), + [anon_sym_27] = ACTIONS(616), + [anon_sym_shape] = ACTIONS(616), + [anon_sym_28] = ACTIONS(616), + [anon_sym_range] = ACTIONS(616), + [anon_sym_29] = ACTIONS(616), + [anon_sym_first] = ACTIONS(616), + [anon_sym_30] = ACTIONS(616), + [anon_sym_reverse] = ACTIONS(616), + [anon_sym_31] = ACTIONS(616), + [anon_sym_deshape] = ACTIONS(616), + [anon_sym_32] = ACTIONS(616), + [anon_sym_bits] = ACTIONS(616), + [anon_sym_33] = ACTIONS(616), + [anon_sym_transpose] = ACTIONS(616), + [anon_sym_34] = ACTIONS(616), + [anon_sym_rise] = ACTIONS(616), + [anon_sym_35] = ACTIONS(616), + [anon_sym_fall] = ACTIONS(616), + [anon_sym_36] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_37] = ACTIONS(616), + [anon_sym_classify] = ACTIONS(616), + [anon_sym_38] = ACTIONS(616), + [anon_sym_deduplicate] = ACTIONS(616), + [anon_sym_39] = ACTIONS(616), + [anon_sym_box] = ACTIONS(616), + [anon_sym_40] = ACTIONS(616), + [anon_sym_unbox] = ACTIONS(616), + [anon_sym_41] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_42] = ACTIONS(616), + [anon_sym_couple] = ACTIONS(616), + [anon_sym_43] = ACTIONS(616), + [anon_sym_join] = ACTIONS(616), + [anon_sym_44] = ACTIONS(616), + [anon_sym_select] = ACTIONS(616), + [anon_sym_45] = ACTIONS(616), + [anon_sym_pick] = ACTIONS(616), + [anon_sym_46] = ACTIONS(616), + [anon_sym_reshape] = ACTIONS(616), + [anon_sym_47] = ACTIONS(616), + [anon_sym_take] = ACTIONS(616), + [anon_sym_48] = ACTIONS(616), + [anon_sym_drop] = ACTIONS(616), + [anon_sym_49] = ACTIONS(616), + [anon_sym_rotate] = ACTIONS(616), + [anon_sym_50] = ACTIONS(616), + [anon_sym_windows] = ACTIONS(616), + [anon_sym_51] = ACTIONS(616), + [anon_sym_keep] = ACTIONS(616), + [anon_sym_52] = ACTIONS(616), + [anon_sym_find] = ACTIONS(616), + [anon_sym_53] = ACTIONS(616), + [anon_sym_member] = ACTIONS(616), + [anon_sym_54] = ACTIONS(616), + [anon_sym_indexof] = ACTIONS(616), + [anon_sym_55] = ACTIONS(616), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_56] = ACTIONS(616), + [anon_sym_wait] = ACTIONS(616), + [anon_sym_parse] = ACTIONS(616), + [anon_sym_random] = ACTIONS(616), + [anon_sym_57] = ACTIONS(616), + [anon_sym_gen] = ACTIONS(616), + [anon_sym_deal] = ACTIONS(616), + [anon_sym_tag] = ACTIONS(616), + [anon_sym_now] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_58] = ACTIONS(616), + [anon_sym_dump] = ACTIONS(616), + [anon_sym_regex] = ACTIONS(616), + [anon_sym_utf] = ACTIONS(616), + [anon_sym_send] = ACTIONS(616), + [anon_sym_recv] = ACTIONS(616), + [anon_sym_tryrecv] = ACTIONS(616), + [anon_sym_complex] = ACTIONS(616), + [anon_sym_59] = ACTIONS(616), + [anon_sym_rerank] = ACTIONS(616), + [anon_sym_60] = ACTIONS(616), + [anon_sym_fix] = ACTIONS(616), + [anon_sym_61] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_reduce] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_scan] = ACTIONS(616), + [anon_sym_BSLASH] = ACTIONS(616), + [anon_sym_each] = ACTIONS(616), + [anon_sym_62] = ACTIONS(616), + [anon_sym_rows] = ACTIONS(616), + [anon_sym_63] = ACTIONS(616), + [anon_sym_repeat] = ACTIONS(616), + [anon_sym_64] = ACTIONS(616), + [anon_sym_dip] = ACTIONS(616), + [anon_sym_65] = ACTIONS(616), + [anon_sym_gap] = ACTIONS(616), + [anon_sym_66] = ACTIONS(616), + [anon_sym_invert] = ACTIONS(616), + [anon_sym_67] = ACTIONS(616), + [anon_sym_spawn] = ACTIONS(616), + [anon_sym_pack] = ACTIONS(616), + [anon_sym_68] = ACTIONS(616), + [anon_sym_rectify] = ACTIONS(616), + [anon_sym_69] = ACTIONS(616), + [anon_sym_this] = ACTIONS(616), + [anon_sym_70] = ACTIONS(616), + [anon_sym_recur] = ACTIONS(616), + [anon_sym_71] = ACTIONS(616), + [anon_sym_fold] = ACTIONS(616), + [anon_sym_72] = ACTIONS(616), + [anon_sym_table] = ACTIONS(616), + [anon_sym_73] = ACTIONS(616), + [anon_sym_cross] = ACTIONS(616), + [anon_sym_74] = ACTIONS(616), + [anon_sym_group] = ACTIONS(616), + [anon_sym_75] = ACTIONS(616), + [anon_sym_partition] = ACTIONS(616), + [anon_sym_76] = ACTIONS(616), + [anon_sym_both] = ACTIONS(616), + [anon_sym_77] = ACTIONS(616), + [anon_sym_bracket] = ACTIONS(616), + [anon_sym_78] = ACTIONS(616), + [anon_sym_fork] = ACTIONS(616), + [anon_sym_79] = ACTIONS(616), + [anon_sym_under] = ACTIONS(616), + [anon_sym_80] = ACTIONS(616), + [anon_sym_fill] = ACTIONS(616), + [anon_sym_81] = ACTIONS(616), + [anon_sym_try] = ACTIONS(614), + [anon_sym_82] = ACTIONS(616), + [anon_sym_do] = ACTIONS(614), + [anon_sym_83] = ACTIONS(616), + [anon_sym_all] = ACTIONS(616), + [anon_sym_84] = ACTIONS(616), + [anon_sym_setinv] = ACTIONS(616), + [anon_sym_setunder] = ACTIONS(616), + [anon_sym_85] = ACTIONS(616), + [anon_sym_86] = ACTIONS(616), + [anon_sym_87] = ACTIONS(616), + [anon_sym_88] = ACTIONS(616), + [anon_sym_89] = ACTIONS(616), + [anon_sym_90] = ACTIONS(616), + [anon_sym_91] = ACTIONS(616), + [anon_sym_92] = ACTIONS(616), + [sym__endOfLine] = ACTIONS(616), }, - [166] = { - [aux_sym_number_token1] = ACTIONS(630), - [sym_fraction] = ACTIONS(632), - [anon_sym_os] = ACTIONS(630), - [anon_sym_Family] = ACTIONS(630), - [anon_sym_Arch] = ACTIONS(630), - [anon_sym_ExeExt] = ACTIONS(630), - [anon_sym_PllExt] = ACTIONS(630), - [anon_sym_Sep] = ACTIONS(630), - [anon_sym_NUmProcs] = ACTIONS(630), - [anon_sym_] = ACTIONS(632), - [aux_sym_character_token1] = ACTIONS(632), - [sym_string] = ACTIONS(632), - [sym_multiLineString] = ACTIONS(632), - [sym_identifier] = ACTIONS(630), - [sym_identifierDeprecated] = ACTIONS(630), - [sym_system] = ACTIONS(632), - [sym_comment] = ACTIONS(630), - [sym_openParen] = ACTIONS(632), - [sym_openCurly] = ACTIONS(632), - [sym_openBracket] = ACTIONS(632), - [anon_sym_CARET] = ACTIONS(632), - [anon_sym_eta] = ACTIONS(632), - [anon_sym_2] = ACTIONS(630), - [anon_sym_pi] = ACTIONS(630), - [anon_sym_3] = ACTIONS(630), - [anon_sym_tau] = ACTIONS(632), - [anon_sym_4] = ACTIONS(630), - [anon_sym_infinity] = ACTIONS(632), - [anon_sym_5] = ACTIONS(632), - [anon_sym_e] = ACTIONS(630), - [anon_sym_NaN] = ACTIONS(630), - [anon_sym_NumProcs] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(632), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_COLON] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_identity] = ACTIONS(632), - [anon_sym_id] = ACTIONS(630), - [anon_sym_6] = ACTIONS(632), - [anon_sym_not] = ACTIONS(632), - [anon_sym_7] = ACTIONS(632), - [anon_sym_sign] = ACTIONS(632), - [anon_sym_8] = ACTIONS(632), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_9] = ACTIONS(630), - [anon_sym_absolutevalue] = ACTIONS(632), - [anon_sym_10] = ACTIONS(632), - [anon_sym_sqrt] = ACTIONS(632), - [anon_sym_11] = ACTIONS(632), - [anon_sym_sine] = ACTIONS(632), - [anon_sym_12] = ACTIONS(632), - [anon_sym_floor] = ACTIONS(632), - [anon_sym_13] = ACTIONS(632), - [anon_sym_ceiling] = ACTIONS(632), - [anon_sym_14] = ACTIONS(632), - [anon_sym_round] = ACTIONS(632), - [anon_sym_15] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_16] = ACTIONS(632), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_17] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_18] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(632), - [anon_sym_19] = ACTIONS(632), - [anon_sym_PERCENT] = ACTIONS(632), - [anon_sym_20] = ACTIONS(632), - [anon_sym_modulus] = ACTIONS(632), - [anon_sym_21] = ACTIONS(632), - [anon_sym_power] = ACTIONS(632), - [anon_sym_22] = ACTIONS(632), - [anon_sym_logarithm] = ACTIONS(632), - [anon_sym_23] = ACTIONS(632), - [anon_sym_minimum] = ACTIONS(632), - [anon_sym_24] = ACTIONS(632), - [anon_sym_maximum] = ACTIONS(632), - [anon_sym_25] = ACTIONS(632), - [anon_sym_atangent] = ACTIONS(632), - [anon_sym_26] = ACTIONS(632), - [anon_sym_length] = ACTIONS(632), - [anon_sym_27] = ACTIONS(632), - [anon_sym_shape] = ACTIONS(632), - [anon_sym_28] = ACTIONS(632), - [anon_sym_range] = ACTIONS(632), - [anon_sym_29] = ACTIONS(632), - [anon_sym_first] = ACTIONS(632), - [anon_sym_30] = ACTIONS(632), - [anon_sym_reverse] = ACTIONS(632), - [anon_sym_31] = ACTIONS(632), - [anon_sym_deshape] = ACTIONS(632), - [anon_sym_32] = ACTIONS(632), - [anon_sym_bits] = ACTIONS(632), - [anon_sym_33] = ACTIONS(632), - [anon_sym_transpose] = ACTIONS(632), - [anon_sym_34] = ACTIONS(632), - [anon_sym_rise] = ACTIONS(632), - [anon_sym_35] = ACTIONS(632), - [anon_sym_fall] = ACTIONS(632), - [anon_sym_36] = ACTIONS(632), - [anon_sym_where] = ACTIONS(632), - [anon_sym_37] = ACTIONS(632), - [anon_sym_classify] = ACTIONS(632), - [anon_sym_38] = ACTIONS(632), - [anon_sym_deduplicate] = ACTIONS(632), - [anon_sym_39] = ACTIONS(632), - [anon_sym_box] = ACTIONS(632), - [anon_sym_40] = ACTIONS(632), - [anon_sym_unbox] = ACTIONS(632), - [anon_sym_41] = ACTIONS(632), - [anon_sym_match] = ACTIONS(632), - [anon_sym_42] = ACTIONS(632), - [anon_sym_couple] = ACTIONS(632), - [anon_sym_43] = ACTIONS(632), - [anon_sym_join] = ACTIONS(632), - [anon_sym_44] = ACTIONS(632), - [anon_sym_select] = ACTIONS(632), - [anon_sym_45] = ACTIONS(632), - [anon_sym_pick] = ACTIONS(632), - [anon_sym_46] = ACTIONS(632), - [anon_sym_reshape] = ACTIONS(632), - [anon_sym_47] = ACTIONS(632), - [anon_sym_take] = ACTIONS(632), - [anon_sym_48] = ACTIONS(632), - [anon_sym_drop] = ACTIONS(632), - [anon_sym_49] = ACTIONS(632), - [anon_sym_rotate] = ACTIONS(632), - [anon_sym_50] = ACTIONS(632), - [anon_sym_windows] = ACTIONS(632), - [anon_sym_51] = ACTIONS(632), - [anon_sym_keep] = ACTIONS(632), - [anon_sym_52] = ACTIONS(632), - [anon_sym_find] = ACTIONS(632), - [anon_sym_53] = ACTIONS(632), - [anon_sym_member] = ACTIONS(632), - [anon_sym_54] = ACTIONS(632), - [anon_sym_indexof] = ACTIONS(632), - [anon_sym_55] = ACTIONS(632), - [anon_sym_assert] = ACTIONS(632), - [anon_sym_56] = ACTIONS(632), - [anon_sym_wait] = ACTIONS(632), - [anon_sym_parse] = ACTIONS(632), - [anon_sym_random] = ACTIONS(632), - [anon_sym_57] = ACTIONS(632), - [anon_sym_gen] = ACTIONS(632), - [anon_sym_deal] = ACTIONS(632), - [anon_sym_tag] = ACTIONS(632), - [anon_sym_now] = ACTIONS(632), - [anon_sym_type] = ACTIONS(632), - [anon_sym_58] = ACTIONS(632), - [anon_sym_dump] = ACTIONS(632), - [anon_sym_regex] = ACTIONS(632), - [anon_sym_utf] = ACTIONS(632), - [anon_sym_send] = ACTIONS(632), - [anon_sym_recv] = ACTIONS(632), - [anon_sym_tryrecv] = ACTIONS(632), - [anon_sym_complex] = ACTIONS(632), - [anon_sym_59] = ACTIONS(632), - [anon_sym_rerank] = ACTIONS(632), - [anon_sym_60] = ACTIONS(632), - [anon_sym_fix] = ACTIONS(632), - [anon_sym_61] = ACTIONS(632), - [anon_sym_reduce] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_scan] = ACTIONS(632), - [anon_sym_BSLASH] = ACTIONS(632), - [anon_sym_each] = ACTIONS(632), - [anon_sym_62] = ACTIONS(632), - [anon_sym_rows] = ACTIONS(632), - [anon_sym_63] = ACTIONS(632), - [anon_sym_repeat] = ACTIONS(632), - [anon_sym_64] = ACTIONS(632), - [anon_sym_dip] = ACTIONS(632), - [anon_sym_65] = ACTIONS(632), - [anon_sym_gap] = ACTIONS(632), - [anon_sym_66] = ACTIONS(632), - [anon_sym_invert] = ACTIONS(632), - [anon_sym_67] = ACTIONS(632), - [anon_sym_spawn] = ACTIONS(632), - [anon_sym_pack] = ACTIONS(632), - [anon_sym_68] = ACTIONS(632), - [anon_sym_rectify] = ACTIONS(632), - [anon_sym_69] = ACTIONS(632), - [anon_sym_this] = ACTIONS(632), - [anon_sym_70] = ACTIONS(632), - [anon_sym_recur] = ACTIONS(632), - [anon_sym_71] = ACTIONS(632), - [anon_sym_fold] = ACTIONS(632), - [anon_sym_72] = ACTIONS(632), - [anon_sym_table] = ACTIONS(632), - [anon_sym_73] = ACTIONS(632), - [anon_sym_cross] = ACTIONS(632), - [anon_sym_74] = ACTIONS(632), - [anon_sym_group] = ACTIONS(632), - [anon_sym_75] = ACTIONS(632), - [anon_sym_partition] = ACTIONS(632), - [anon_sym_76] = ACTIONS(632), - [anon_sym_both] = ACTIONS(632), - [anon_sym_77] = ACTIONS(632), - [anon_sym_bracket] = ACTIONS(632), - [anon_sym_78] = ACTIONS(632), - [anon_sym_fork] = ACTIONS(632), - [anon_sym_79] = ACTIONS(632), - [anon_sym_under] = ACTIONS(632), - [anon_sym_80] = ACTIONS(632), - [anon_sym_fill] = ACTIONS(632), - [anon_sym_81] = ACTIONS(632), - [anon_sym_try] = ACTIONS(630), - [anon_sym_82] = ACTIONS(632), - [anon_sym_do] = ACTIONS(630), - [anon_sym_83] = ACTIONS(632), - [anon_sym_all] = ACTIONS(632), - [anon_sym_84] = ACTIONS(632), - [anon_sym_setinv] = ACTIONS(632), - [anon_sym_setunder] = ACTIONS(632), - [anon_sym_85] = ACTIONS(632), - [anon_sym_86] = ACTIONS(632), - [anon_sym_87] = ACTIONS(632), - [anon_sym_88] = ACTIONS(632), - [anon_sym_89] = ACTIONS(632), - [anon_sym_90] = ACTIONS(632), - [anon_sym_91] = ACTIONS(632), - [anon_sym_92] = ACTIONS(632), - [anon_sym_93] = ACTIONS(632), - [anon_sym_94] = ACTIONS(632), - [anon_sym_95] = ACTIONS(632), - [anon_sym_96] = ACTIONS(632), - [sym__endOfLine] = ACTIONS(5), + [133] = { + [ts_builtin_sym_end] = ACTIONS(566), + [aux_sym_number_token1] = ACTIONS(564), + [sym_fraction] = ACTIONS(566), + [anon_sym_os] = ACTIONS(564), + [anon_sym_Family] = ACTIONS(564), + [anon_sym_Arch] = ACTIONS(564), + [anon_sym_ExeExt] = ACTIONS(564), + [anon_sym_PllExt] = ACTIONS(564), + [anon_sym_Sep] = ACTIONS(564), + [anon_sym_NUmProcs] = ACTIONS(564), + [anon_sym_] = ACTIONS(566), + [aux_sym_character_token1] = ACTIONS(566), + [sym_string] = ACTIONS(566), + [sym_multiLineString] = ACTIONS(566), + [sym_identifier] = ACTIONS(564), + [sym_identifierDeprecated] = ACTIONS(564), + [sym_system] = ACTIONS(566), + [sym_comment] = ACTIONS(564), + [sym_openParen] = ACTIONS(566), + [sym_openCurly] = ACTIONS(566), + [sym_openBracket] = ACTIONS(566), + [sym_underscore] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(566), + [anon_sym_eta] = ACTIONS(566), + [anon_sym_2] = ACTIONS(564), + [anon_sym_pi] = ACTIONS(564), + [anon_sym_3] = ACTIONS(564), + [anon_sym_tau] = ACTIONS(566), + [anon_sym_4] = ACTIONS(564), + [anon_sym_infinity] = ACTIONS(566), + [anon_sym_5] = ACTIONS(566), + [anon_sym_e] = ACTIONS(564), + [anon_sym_NaN] = ACTIONS(564), + [anon_sym_NumProcs] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_COLON] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_identity] = ACTIONS(566), + [anon_sym_id] = ACTIONS(564), + [anon_sym_6] = ACTIONS(566), + [anon_sym_not] = ACTIONS(566), + [anon_sym_7] = ACTIONS(566), + [anon_sym_sign] = ACTIONS(566), + [anon_sym_8] = ACTIONS(566), + [anon_sym_BQUOTE] = ACTIONS(566), + [anon_sym_9] = ACTIONS(564), + [anon_sym_absolutevalue] = ACTIONS(566), + [anon_sym_10] = ACTIONS(566), + [anon_sym_sqrt] = ACTIONS(566), + [anon_sym_11] = ACTIONS(566), + [anon_sym_sine] = ACTIONS(566), + [anon_sym_12] = ACTIONS(566), + [anon_sym_floor] = ACTIONS(566), + [anon_sym_13] = ACTIONS(566), + [anon_sym_ceiling] = ACTIONS(566), + [anon_sym_14] = ACTIONS(566), + [anon_sym_round] = ACTIONS(566), + [anon_sym_15] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_16] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_17] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_18] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_19] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_20] = ACTIONS(566), + [anon_sym_modulus] = ACTIONS(566), + [anon_sym_21] = ACTIONS(566), + [anon_sym_power] = ACTIONS(566), + [anon_sym_22] = ACTIONS(566), + [anon_sym_logarithm] = ACTIONS(566), + [anon_sym_23] = ACTIONS(566), + [anon_sym_minimum] = ACTIONS(566), + [anon_sym_24] = ACTIONS(566), + [anon_sym_maximum] = ACTIONS(566), + [anon_sym_25] = ACTIONS(566), + [anon_sym_atangent] = ACTIONS(566), + [anon_sym_26] = ACTIONS(566), + [anon_sym_length] = ACTIONS(566), + [anon_sym_27] = ACTIONS(566), + [anon_sym_shape] = ACTIONS(566), + [anon_sym_28] = ACTIONS(566), + [anon_sym_range] = ACTIONS(566), + [anon_sym_29] = ACTIONS(566), + [anon_sym_first] = ACTIONS(566), + [anon_sym_30] = ACTIONS(566), + [anon_sym_reverse] = ACTIONS(566), + [anon_sym_31] = ACTIONS(566), + [anon_sym_deshape] = ACTIONS(566), + [anon_sym_32] = ACTIONS(566), + [anon_sym_bits] = ACTIONS(566), + [anon_sym_33] = ACTIONS(566), + [anon_sym_transpose] = ACTIONS(566), + [anon_sym_34] = ACTIONS(566), + [anon_sym_rise] = ACTIONS(566), + [anon_sym_35] = ACTIONS(566), + [anon_sym_fall] = ACTIONS(566), + [anon_sym_36] = ACTIONS(566), + [anon_sym_where] = ACTIONS(566), + [anon_sym_37] = ACTIONS(566), + [anon_sym_classify] = ACTIONS(566), + [anon_sym_38] = ACTIONS(566), + [anon_sym_deduplicate] = ACTIONS(566), + [anon_sym_39] = ACTIONS(566), + [anon_sym_box] = ACTIONS(566), + [anon_sym_40] = ACTIONS(566), + [anon_sym_unbox] = ACTIONS(566), + [anon_sym_41] = ACTIONS(566), + [anon_sym_match] = ACTIONS(566), + [anon_sym_42] = ACTIONS(566), + [anon_sym_couple] = ACTIONS(566), + [anon_sym_43] = ACTIONS(566), + [anon_sym_join] = ACTIONS(566), + [anon_sym_44] = ACTIONS(566), + [anon_sym_select] = ACTIONS(566), + [anon_sym_45] = ACTIONS(566), + [anon_sym_pick] = ACTIONS(566), + [anon_sym_46] = ACTIONS(566), + [anon_sym_reshape] = ACTIONS(566), + [anon_sym_47] = ACTIONS(566), + [anon_sym_take] = ACTIONS(566), + [anon_sym_48] = ACTIONS(566), + [anon_sym_drop] = ACTIONS(566), + [anon_sym_49] = ACTIONS(566), + [anon_sym_rotate] = ACTIONS(566), + [anon_sym_50] = ACTIONS(566), + [anon_sym_windows] = ACTIONS(566), + [anon_sym_51] = ACTIONS(566), + [anon_sym_keep] = ACTIONS(566), + [anon_sym_52] = ACTIONS(566), + [anon_sym_find] = ACTIONS(566), + [anon_sym_53] = ACTIONS(566), + [anon_sym_member] = ACTIONS(566), + [anon_sym_54] = ACTIONS(566), + [anon_sym_indexof] = ACTIONS(566), + [anon_sym_55] = ACTIONS(566), + [anon_sym_assert] = ACTIONS(566), + [anon_sym_56] = ACTIONS(566), + [anon_sym_wait] = ACTIONS(566), + [anon_sym_parse] = ACTIONS(566), + [anon_sym_random] = ACTIONS(566), + [anon_sym_57] = ACTIONS(566), + [anon_sym_gen] = ACTIONS(566), + [anon_sym_deal] = ACTIONS(566), + [anon_sym_tag] = ACTIONS(566), + [anon_sym_now] = ACTIONS(566), + [anon_sym_type] = ACTIONS(566), + [anon_sym_58] = ACTIONS(566), + [anon_sym_dump] = ACTIONS(566), + [anon_sym_regex] = ACTIONS(566), + [anon_sym_utf] = ACTIONS(566), + [anon_sym_send] = ACTIONS(566), + [anon_sym_recv] = ACTIONS(566), + [anon_sym_tryrecv] = ACTIONS(566), + [anon_sym_complex] = ACTIONS(566), + [anon_sym_59] = ACTIONS(566), + [anon_sym_rerank] = ACTIONS(566), + [anon_sym_60] = ACTIONS(566), + [anon_sym_fix] = ACTIONS(566), + [anon_sym_61] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_reduce] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_scan] = ACTIONS(566), + [anon_sym_BSLASH] = ACTIONS(566), + [anon_sym_each] = ACTIONS(566), + [anon_sym_62] = ACTIONS(566), + [anon_sym_rows] = ACTIONS(566), + [anon_sym_63] = ACTIONS(566), + [anon_sym_repeat] = ACTIONS(566), + [anon_sym_64] = ACTIONS(566), + [anon_sym_dip] = ACTIONS(566), + [anon_sym_65] = ACTIONS(566), + [anon_sym_gap] = ACTIONS(566), + [anon_sym_66] = ACTIONS(566), + [anon_sym_invert] = ACTIONS(566), + [anon_sym_67] = ACTIONS(566), + [anon_sym_spawn] = ACTIONS(566), + [anon_sym_pack] = ACTIONS(566), + [anon_sym_68] = ACTIONS(566), + [anon_sym_rectify] = ACTIONS(566), + [anon_sym_69] = ACTIONS(566), + [anon_sym_this] = ACTIONS(566), + [anon_sym_70] = ACTIONS(566), + [anon_sym_recur] = ACTIONS(566), + [anon_sym_71] = ACTIONS(566), + [anon_sym_fold] = ACTIONS(566), + [anon_sym_72] = ACTIONS(566), + [anon_sym_table] = ACTIONS(566), + [anon_sym_73] = ACTIONS(566), + [anon_sym_cross] = ACTIONS(566), + [anon_sym_74] = ACTIONS(566), + [anon_sym_group] = ACTIONS(566), + [anon_sym_75] = ACTIONS(566), + [anon_sym_partition] = ACTIONS(566), + [anon_sym_76] = ACTIONS(566), + [anon_sym_both] = ACTIONS(566), + [anon_sym_77] = ACTIONS(566), + [anon_sym_bracket] = ACTIONS(566), + [anon_sym_78] = ACTIONS(566), + [anon_sym_fork] = ACTIONS(566), + [anon_sym_79] = ACTIONS(566), + [anon_sym_under] = ACTIONS(566), + [anon_sym_80] = ACTIONS(566), + [anon_sym_fill] = ACTIONS(566), + [anon_sym_81] = ACTIONS(566), + [anon_sym_try] = ACTIONS(564), + [anon_sym_82] = ACTIONS(566), + [anon_sym_do] = ACTIONS(564), + [anon_sym_83] = ACTIONS(566), + [anon_sym_all] = ACTIONS(566), + [anon_sym_84] = ACTIONS(566), + [anon_sym_setinv] = ACTIONS(566), + [anon_sym_setunder] = ACTIONS(566), + [anon_sym_85] = ACTIONS(566), + [anon_sym_86] = ACTIONS(566), + [anon_sym_87] = ACTIONS(566), + [anon_sym_88] = ACTIONS(566), + [anon_sym_89] = ACTIONS(566), + [anon_sym_90] = ACTIONS(566), + [anon_sym_91] = ACTIONS(566), + [anon_sym_92] = ACTIONS(566), + [sym__endOfLine] = ACTIONS(566), }, - [167] = { - [aux_sym_number_token1] = ACTIONS(634), - [sym_fraction] = ACTIONS(636), - [anon_sym_os] = ACTIONS(634), - [anon_sym_Family] = ACTIONS(634), - [anon_sym_Arch] = ACTIONS(634), - [anon_sym_ExeExt] = ACTIONS(634), - [anon_sym_PllExt] = ACTIONS(634), - [anon_sym_Sep] = ACTIONS(634), - [anon_sym_NUmProcs] = ACTIONS(634), - [anon_sym_] = ACTIONS(636), - [aux_sym_character_token1] = ACTIONS(636), - [sym_string] = ACTIONS(636), - [sym_multiLineString] = ACTIONS(636), - [sym_identifier] = ACTIONS(634), - [sym_identifierDeprecated] = ACTIONS(634), - [sym_system] = ACTIONS(636), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(636), - [sym_openCurly] = ACTIONS(636), - [sym_openBracket] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(636), - [anon_sym_eta] = ACTIONS(636), - [anon_sym_2] = ACTIONS(634), - [anon_sym_pi] = ACTIONS(634), - [anon_sym_3] = ACTIONS(634), - [anon_sym_tau] = ACTIONS(636), - [anon_sym_4] = ACTIONS(634), - [anon_sym_infinity] = ACTIONS(636), - [anon_sym_5] = ACTIONS(636), - [anon_sym_e] = ACTIONS(634), - [anon_sym_NaN] = ACTIONS(634), - [anon_sym_NumProcs] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_identity] = ACTIONS(636), - [anon_sym_id] = ACTIONS(634), - [anon_sym_6] = ACTIONS(636), - [anon_sym_not] = ACTIONS(636), - [anon_sym_7] = ACTIONS(636), - [anon_sym_sign] = ACTIONS(636), - [anon_sym_8] = ACTIONS(636), - [anon_sym_BQUOTE] = ACTIONS(636), - [anon_sym_9] = ACTIONS(634), - [anon_sym_absolutevalue] = ACTIONS(636), - [anon_sym_10] = ACTIONS(636), - [anon_sym_sqrt] = ACTIONS(636), - [anon_sym_11] = ACTIONS(636), - [anon_sym_sine] = ACTIONS(636), - [anon_sym_12] = ACTIONS(636), - [anon_sym_floor] = ACTIONS(636), - [anon_sym_13] = ACTIONS(636), - [anon_sym_ceiling] = ACTIONS(636), - [anon_sym_14] = ACTIONS(636), - [anon_sym_round] = ACTIONS(636), - [anon_sym_15] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_16] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_17] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_18] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_19] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(636), - [anon_sym_20] = ACTIONS(636), - [anon_sym_modulus] = ACTIONS(636), - [anon_sym_21] = ACTIONS(636), - [anon_sym_power] = ACTIONS(636), - [anon_sym_22] = ACTIONS(636), - [anon_sym_logarithm] = ACTIONS(636), - [anon_sym_23] = ACTIONS(636), - [anon_sym_minimum] = ACTIONS(636), - [anon_sym_24] = ACTIONS(636), - [anon_sym_maximum] = ACTIONS(636), - [anon_sym_25] = ACTIONS(636), - [anon_sym_atangent] = ACTIONS(636), - [anon_sym_26] = ACTIONS(636), - [anon_sym_length] = ACTIONS(636), - [anon_sym_27] = ACTIONS(636), - [anon_sym_shape] = ACTIONS(636), - [anon_sym_28] = ACTIONS(636), - [anon_sym_range] = ACTIONS(636), - [anon_sym_29] = ACTIONS(636), - [anon_sym_first] = ACTIONS(636), - [anon_sym_30] = ACTIONS(636), - [anon_sym_reverse] = ACTIONS(636), - [anon_sym_31] = ACTIONS(636), - [anon_sym_deshape] = ACTIONS(636), - [anon_sym_32] = ACTIONS(636), - [anon_sym_bits] = ACTIONS(636), - [anon_sym_33] = ACTIONS(636), - [anon_sym_transpose] = ACTIONS(636), - [anon_sym_34] = ACTIONS(636), - [anon_sym_rise] = ACTIONS(636), - [anon_sym_35] = ACTIONS(636), - [anon_sym_fall] = ACTIONS(636), - [anon_sym_36] = ACTIONS(636), - [anon_sym_where] = ACTIONS(636), - [anon_sym_37] = ACTIONS(636), - [anon_sym_classify] = ACTIONS(636), - [anon_sym_38] = ACTIONS(636), - [anon_sym_deduplicate] = ACTIONS(636), - [anon_sym_39] = ACTIONS(636), - [anon_sym_box] = ACTIONS(636), - [anon_sym_40] = ACTIONS(636), - [anon_sym_unbox] = ACTIONS(636), - [anon_sym_41] = ACTIONS(636), - [anon_sym_match] = ACTIONS(636), - [anon_sym_42] = ACTIONS(636), - [anon_sym_couple] = ACTIONS(636), - [anon_sym_43] = ACTIONS(636), - [anon_sym_join] = ACTIONS(636), - [anon_sym_44] = ACTIONS(636), - [anon_sym_select] = ACTIONS(636), - [anon_sym_45] = ACTIONS(636), - [anon_sym_pick] = ACTIONS(636), - [anon_sym_46] = ACTIONS(636), - [anon_sym_reshape] = ACTIONS(636), - [anon_sym_47] = ACTIONS(636), - [anon_sym_take] = ACTIONS(636), - [anon_sym_48] = ACTIONS(636), - [anon_sym_drop] = ACTIONS(636), - [anon_sym_49] = ACTIONS(636), - [anon_sym_rotate] = ACTIONS(636), - [anon_sym_50] = ACTIONS(636), - [anon_sym_windows] = ACTIONS(636), - [anon_sym_51] = ACTIONS(636), - [anon_sym_keep] = ACTIONS(636), - [anon_sym_52] = ACTIONS(636), - [anon_sym_find] = ACTIONS(636), - [anon_sym_53] = ACTIONS(636), - [anon_sym_member] = ACTIONS(636), - [anon_sym_54] = ACTIONS(636), - [anon_sym_indexof] = ACTIONS(636), - [anon_sym_55] = ACTIONS(636), - [anon_sym_assert] = ACTIONS(636), - [anon_sym_56] = ACTIONS(636), - [anon_sym_wait] = ACTIONS(636), - [anon_sym_parse] = ACTIONS(636), - [anon_sym_random] = ACTIONS(636), - [anon_sym_57] = ACTIONS(636), - [anon_sym_gen] = ACTIONS(636), - [anon_sym_deal] = ACTIONS(636), - [anon_sym_tag] = ACTIONS(636), - [anon_sym_now] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_58] = ACTIONS(636), - [anon_sym_dump] = ACTIONS(636), - [anon_sym_regex] = ACTIONS(636), - [anon_sym_utf] = ACTIONS(636), - [anon_sym_send] = ACTIONS(636), - [anon_sym_recv] = ACTIONS(636), - [anon_sym_tryrecv] = ACTIONS(636), - [anon_sym_complex] = ACTIONS(636), - [anon_sym_59] = ACTIONS(636), - [anon_sym_rerank] = ACTIONS(636), - [anon_sym_60] = ACTIONS(636), - [anon_sym_fix] = ACTIONS(636), - [anon_sym_61] = ACTIONS(636), - [anon_sym_reduce] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_scan] = ACTIONS(636), - [anon_sym_BSLASH] = ACTIONS(636), - [anon_sym_each] = ACTIONS(636), - [anon_sym_62] = ACTIONS(636), - [anon_sym_rows] = ACTIONS(636), - [anon_sym_63] = ACTIONS(636), - [anon_sym_repeat] = ACTIONS(636), - [anon_sym_64] = ACTIONS(636), - [anon_sym_dip] = ACTIONS(636), - [anon_sym_65] = ACTIONS(636), - [anon_sym_gap] = ACTIONS(636), - [anon_sym_66] = ACTIONS(636), - [anon_sym_invert] = ACTIONS(636), - [anon_sym_67] = ACTIONS(636), - [anon_sym_spawn] = ACTIONS(636), - [anon_sym_pack] = ACTIONS(636), - [anon_sym_68] = ACTIONS(636), - [anon_sym_rectify] = ACTIONS(636), - [anon_sym_69] = ACTIONS(636), - [anon_sym_this] = ACTIONS(636), - [anon_sym_70] = ACTIONS(636), - [anon_sym_recur] = ACTIONS(636), - [anon_sym_71] = ACTIONS(636), - [anon_sym_fold] = ACTIONS(636), - [anon_sym_72] = ACTIONS(636), - [anon_sym_table] = ACTIONS(636), - [anon_sym_73] = ACTIONS(636), - [anon_sym_cross] = ACTIONS(636), - [anon_sym_74] = ACTIONS(636), - [anon_sym_group] = ACTIONS(636), - [anon_sym_75] = ACTIONS(636), - [anon_sym_partition] = ACTIONS(636), - [anon_sym_76] = ACTIONS(636), - [anon_sym_both] = ACTIONS(636), - [anon_sym_77] = ACTIONS(636), - [anon_sym_bracket] = ACTIONS(636), - [anon_sym_78] = ACTIONS(636), - [anon_sym_fork] = ACTIONS(636), - [anon_sym_79] = ACTIONS(636), - [anon_sym_under] = ACTIONS(636), - [anon_sym_80] = ACTIONS(636), - [anon_sym_fill] = ACTIONS(636), - [anon_sym_81] = ACTIONS(636), - [anon_sym_try] = ACTIONS(634), - [anon_sym_82] = ACTIONS(636), - [anon_sym_do] = ACTIONS(634), - [anon_sym_83] = ACTIONS(636), - [anon_sym_all] = ACTIONS(636), - [anon_sym_84] = ACTIONS(636), - [anon_sym_setinv] = ACTIONS(636), - [anon_sym_setunder] = ACTIONS(636), - [anon_sym_85] = ACTIONS(636), - [anon_sym_86] = ACTIONS(636), - [anon_sym_87] = ACTIONS(636), - [anon_sym_88] = ACTIONS(636), - [anon_sym_89] = ACTIONS(636), - [anon_sym_90] = ACTIONS(636), - [anon_sym_91] = ACTIONS(636), - [anon_sym_92] = ACTIONS(636), - [anon_sym_93] = ACTIONS(636), - [anon_sym_94] = ACTIONS(636), - [anon_sym_95] = ACTIONS(636), - [anon_sym_96] = ACTIONS(636), - [sym__endOfLine] = ACTIONS(5), + [134] = { + [ts_builtin_sym_end] = ACTIONS(498), + [aux_sym_number_token1] = ACTIONS(496), + [sym_fraction] = ACTIONS(498), + [anon_sym_os] = ACTIONS(496), + [anon_sym_Family] = ACTIONS(496), + [anon_sym_Arch] = ACTIONS(496), + [anon_sym_ExeExt] = ACTIONS(496), + [anon_sym_PllExt] = ACTIONS(496), + [anon_sym_Sep] = ACTIONS(496), + [anon_sym_NUmProcs] = ACTIONS(496), + [anon_sym_] = ACTIONS(498), + [aux_sym_character_token1] = ACTIONS(498), + [sym_string] = ACTIONS(498), + [sym_multiLineString] = ACTIONS(498), + [sym_identifier] = ACTIONS(496), + [sym_identifierDeprecated] = ACTIONS(496), + [sym_system] = ACTIONS(498), + [sym_comment] = ACTIONS(496), + [sym_openParen] = ACTIONS(498), + [sym_openCurly] = ACTIONS(498), + [sym_openBracket] = ACTIONS(498), + [sym_underscore] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(498), + [anon_sym_eta] = ACTIONS(498), + [anon_sym_2] = ACTIONS(496), + [anon_sym_pi] = ACTIONS(496), + [anon_sym_3] = ACTIONS(496), + [anon_sym_tau] = ACTIONS(498), + [anon_sym_4] = ACTIONS(496), + [anon_sym_infinity] = ACTIONS(498), + [anon_sym_5] = ACTIONS(498), + [anon_sym_e] = ACTIONS(496), + [anon_sym_NaN] = ACTIONS(496), + [anon_sym_NumProcs] = ACTIONS(496), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_COLON] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_identity] = ACTIONS(498), + [anon_sym_id] = ACTIONS(496), + [anon_sym_6] = ACTIONS(498), + [anon_sym_not] = ACTIONS(498), + [anon_sym_7] = ACTIONS(498), + [anon_sym_sign] = ACTIONS(498), + [anon_sym_8] = ACTIONS(498), + [anon_sym_BQUOTE] = ACTIONS(498), + [anon_sym_9] = ACTIONS(496), + [anon_sym_absolutevalue] = ACTIONS(498), + [anon_sym_10] = ACTIONS(498), + [anon_sym_sqrt] = ACTIONS(498), + [anon_sym_11] = ACTIONS(498), + [anon_sym_sine] = ACTIONS(498), + [anon_sym_12] = ACTIONS(498), + [anon_sym_floor] = ACTIONS(498), + [anon_sym_13] = ACTIONS(498), + [anon_sym_ceiling] = ACTIONS(498), + [anon_sym_14] = ACTIONS(498), + [anon_sym_round] = ACTIONS(498), + [anon_sym_15] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_16] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_17] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_18] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_19] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_20] = ACTIONS(498), + [anon_sym_modulus] = ACTIONS(498), + [anon_sym_21] = ACTIONS(498), + [anon_sym_power] = ACTIONS(498), + [anon_sym_22] = ACTIONS(498), + [anon_sym_logarithm] = ACTIONS(498), + [anon_sym_23] = ACTIONS(498), + [anon_sym_minimum] = ACTIONS(498), + [anon_sym_24] = ACTIONS(498), + [anon_sym_maximum] = ACTIONS(498), + [anon_sym_25] = ACTIONS(498), + [anon_sym_atangent] = ACTIONS(498), + [anon_sym_26] = ACTIONS(498), + [anon_sym_length] = ACTIONS(498), + [anon_sym_27] = ACTIONS(498), + [anon_sym_shape] = ACTIONS(498), + [anon_sym_28] = ACTIONS(498), + [anon_sym_range] = ACTIONS(498), + [anon_sym_29] = ACTIONS(498), + [anon_sym_first] = ACTIONS(498), + [anon_sym_30] = ACTIONS(498), + [anon_sym_reverse] = ACTIONS(498), + [anon_sym_31] = ACTIONS(498), + [anon_sym_deshape] = ACTIONS(498), + [anon_sym_32] = ACTIONS(498), + [anon_sym_bits] = ACTIONS(498), + [anon_sym_33] = ACTIONS(498), + [anon_sym_transpose] = ACTIONS(498), + [anon_sym_34] = ACTIONS(498), + [anon_sym_rise] = ACTIONS(498), + [anon_sym_35] = ACTIONS(498), + [anon_sym_fall] = ACTIONS(498), + [anon_sym_36] = ACTIONS(498), + [anon_sym_where] = ACTIONS(498), + [anon_sym_37] = ACTIONS(498), + [anon_sym_classify] = ACTIONS(498), + [anon_sym_38] = ACTIONS(498), + [anon_sym_deduplicate] = ACTIONS(498), + [anon_sym_39] = ACTIONS(498), + [anon_sym_box] = ACTIONS(498), + [anon_sym_40] = ACTIONS(498), + [anon_sym_unbox] = ACTIONS(498), + [anon_sym_41] = ACTIONS(498), + [anon_sym_match] = ACTIONS(498), + [anon_sym_42] = ACTIONS(498), + [anon_sym_couple] = ACTIONS(498), + [anon_sym_43] = ACTIONS(498), + [anon_sym_join] = ACTIONS(498), + [anon_sym_44] = ACTIONS(498), + [anon_sym_select] = ACTIONS(498), + [anon_sym_45] = ACTIONS(498), + [anon_sym_pick] = ACTIONS(498), + [anon_sym_46] = ACTIONS(498), + [anon_sym_reshape] = ACTIONS(498), + [anon_sym_47] = ACTIONS(498), + [anon_sym_take] = ACTIONS(498), + [anon_sym_48] = ACTIONS(498), + [anon_sym_drop] = ACTIONS(498), + [anon_sym_49] = ACTIONS(498), + [anon_sym_rotate] = ACTIONS(498), + [anon_sym_50] = ACTIONS(498), + [anon_sym_windows] = ACTIONS(498), + [anon_sym_51] = ACTIONS(498), + [anon_sym_keep] = ACTIONS(498), + [anon_sym_52] = ACTIONS(498), + [anon_sym_find] = ACTIONS(498), + [anon_sym_53] = ACTIONS(498), + [anon_sym_member] = ACTIONS(498), + [anon_sym_54] = ACTIONS(498), + [anon_sym_indexof] = ACTIONS(498), + [anon_sym_55] = ACTIONS(498), + [anon_sym_assert] = ACTIONS(498), + [anon_sym_56] = ACTIONS(498), + [anon_sym_wait] = ACTIONS(498), + [anon_sym_parse] = ACTIONS(498), + [anon_sym_random] = ACTIONS(498), + [anon_sym_57] = ACTIONS(498), + [anon_sym_gen] = ACTIONS(498), + [anon_sym_deal] = ACTIONS(498), + [anon_sym_tag] = ACTIONS(498), + [anon_sym_now] = ACTIONS(498), + [anon_sym_type] = ACTIONS(498), + [anon_sym_58] = ACTIONS(498), + [anon_sym_dump] = ACTIONS(498), + [anon_sym_regex] = ACTIONS(498), + [anon_sym_utf] = ACTIONS(498), + [anon_sym_send] = ACTIONS(498), + [anon_sym_recv] = ACTIONS(498), + [anon_sym_tryrecv] = ACTIONS(498), + [anon_sym_complex] = ACTIONS(498), + [anon_sym_59] = ACTIONS(498), + [anon_sym_rerank] = ACTIONS(498), + [anon_sym_60] = ACTIONS(498), + [anon_sym_fix] = ACTIONS(498), + [anon_sym_61] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_reduce] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_scan] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(498), + [anon_sym_each] = ACTIONS(498), + [anon_sym_62] = ACTIONS(498), + [anon_sym_rows] = ACTIONS(498), + [anon_sym_63] = ACTIONS(498), + [anon_sym_repeat] = ACTIONS(498), + [anon_sym_64] = ACTIONS(498), + [anon_sym_dip] = ACTIONS(498), + [anon_sym_65] = ACTIONS(498), + [anon_sym_gap] = ACTIONS(498), + [anon_sym_66] = ACTIONS(498), + [anon_sym_invert] = ACTIONS(498), + [anon_sym_67] = ACTIONS(498), + [anon_sym_spawn] = ACTIONS(498), + [anon_sym_pack] = ACTIONS(498), + [anon_sym_68] = ACTIONS(498), + [anon_sym_rectify] = ACTIONS(498), + [anon_sym_69] = ACTIONS(498), + [anon_sym_this] = ACTIONS(498), + [anon_sym_70] = ACTIONS(498), + [anon_sym_recur] = ACTIONS(498), + [anon_sym_71] = ACTIONS(498), + [anon_sym_fold] = ACTIONS(498), + [anon_sym_72] = ACTIONS(498), + [anon_sym_table] = ACTIONS(498), + [anon_sym_73] = ACTIONS(498), + [anon_sym_cross] = ACTIONS(498), + [anon_sym_74] = ACTIONS(498), + [anon_sym_group] = ACTIONS(498), + [anon_sym_75] = ACTIONS(498), + [anon_sym_partition] = ACTIONS(498), + [anon_sym_76] = ACTIONS(498), + [anon_sym_both] = ACTIONS(498), + [anon_sym_77] = ACTIONS(498), + [anon_sym_bracket] = ACTIONS(498), + [anon_sym_78] = ACTIONS(498), + [anon_sym_fork] = ACTIONS(498), + [anon_sym_79] = ACTIONS(498), + [anon_sym_under] = ACTIONS(498), + [anon_sym_80] = ACTIONS(498), + [anon_sym_fill] = ACTIONS(498), + [anon_sym_81] = ACTIONS(498), + [anon_sym_try] = ACTIONS(496), + [anon_sym_82] = ACTIONS(498), + [anon_sym_do] = ACTIONS(496), + [anon_sym_83] = ACTIONS(498), + [anon_sym_all] = ACTIONS(498), + [anon_sym_84] = ACTIONS(498), + [anon_sym_setinv] = ACTIONS(498), + [anon_sym_setunder] = ACTIONS(498), + [anon_sym_85] = ACTIONS(498), + [anon_sym_86] = ACTIONS(498), + [anon_sym_87] = ACTIONS(498), + [anon_sym_88] = ACTIONS(498), + [anon_sym_89] = ACTIONS(498), + [anon_sym_90] = ACTIONS(498), + [anon_sym_91] = ACTIONS(498), + [anon_sym_92] = ACTIONS(498), + [sym__endOfLine] = ACTIONS(498), }, - [168] = { - [sym_inlineFunction] = STATE(199), - [sym_function] = STATE(199), - [anon_sym_PIPE] = ACTIONS(442), - [sym_identifier] = ACTIONS(638), - [sym_system] = ACTIONS(640), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(642), - [sym_closeParen] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(272), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), + [135] = { + [aux_sym_number_token1] = ACTIONS(618), + [sym_fraction] = ACTIONS(222), + [anon_sym_os] = ACTIONS(618), + [anon_sym_Family] = ACTIONS(618), + [anon_sym_Arch] = ACTIONS(618), + [anon_sym_ExeExt] = ACTIONS(618), + [anon_sym_PllExt] = ACTIONS(618), + [anon_sym_Sep] = ACTIONS(618), + [anon_sym_NUmProcs] = ACTIONS(618), + [anon_sym_] = ACTIONS(222), + [aux_sym_character_token1] = ACTIONS(222), + [sym_string] = ACTIONS(222), + [sym_multiLineString] = ACTIONS(222), + [sym_identifier] = ACTIONS(618), + [sym_identifierDeprecated] = ACTIONS(618), + [sym_system] = ACTIONS(222), + [sym_comment] = ACTIONS(618), + [sym_openParen] = ACTIONS(222), + [sym_openCurly] = ACTIONS(222), + [sym_closeCurly] = ACTIONS(222), + [sym_openBracket] = ACTIONS(222), + [sym_closeBracket] = ACTIONS(222), + [anon_sym_CARET] = ACTIONS(222), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(222), + [anon_sym_eta] = ACTIONS(222), + [anon_sym_2] = ACTIONS(618), + [anon_sym_pi] = ACTIONS(618), + [anon_sym_3] = ACTIONS(618), + [anon_sym_tau] = ACTIONS(222), + [anon_sym_4] = ACTIONS(618), + [anon_sym_infinity] = ACTIONS(222), + [anon_sym_5] = ACTIONS(222), + [anon_sym_e] = ACTIONS(618), + [anon_sym_NaN] = ACTIONS(618), + [anon_sym_NumProcs] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(222), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_identity] = ACTIONS(222), + [anon_sym_id] = ACTIONS(618), + [anon_sym_6] = ACTIONS(222), + [anon_sym_not] = ACTIONS(222), + [anon_sym_7] = ACTIONS(222), + [anon_sym_sign] = ACTIONS(222), + [anon_sym_8] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(222), + [anon_sym_9] = ACTIONS(618), + [anon_sym_absolutevalue] = ACTIONS(222), + [anon_sym_10] = ACTIONS(222), + [anon_sym_sqrt] = ACTIONS(222), + [anon_sym_11] = ACTIONS(222), + [anon_sym_sine] = ACTIONS(222), + [anon_sym_12] = ACTIONS(222), + [anon_sym_floor] = ACTIONS(222), + [anon_sym_13] = ACTIONS(222), + [anon_sym_ceiling] = ACTIONS(222), + [anon_sym_14] = ACTIONS(222), + [anon_sym_round] = ACTIONS(222), + [anon_sym_15] = ACTIONS(222), + [anon_sym_EQ] = ACTIONS(222), + [anon_sym_BANG_EQ] = ACTIONS(222), + [anon_sym_16] = ACTIONS(222), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_LT_EQ] = ACTIONS(222), + [anon_sym_17] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_GT_EQ] = ACTIONS(222), + [anon_sym_18] = ACTIONS(222), + [anon_sym_PLUS] = ACTIONS(222), + [anon_sym_DASH] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_19] = ACTIONS(222), + [anon_sym_PERCENT] = ACTIONS(222), + [anon_sym_20] = ACTIONS(222), + [anon_sym_modulus] = ACTIONS(222), + [anon_sym_21] = ACTIONS(222), + [anon_sym_power] = ACTIONS(222), + [anon_sym_22] = ACTIONS(222), + [anon_sym_logarithm] = ACTIONS(222), + [anon_sym_23] = ACTIONS(222), + [anon_sym_minimum] = ACTIONS(222), + [anon_sym_24] = ACTIONS(222), + [anon_sym_maximum] = ACTIONS(222), + [anon_sym_25] = ACTIONS(222), + [anon_sym_atangent] = ACTIONS(222), + [anon_sym_26] = ACTIONS(222), + [anon_sym_length] = ACTIONS(222), + [anon_sym_27] = ACTIONS(222), + [anon_sym_shape] = ACTIONS(222), + [anon_sym_28] = ACTIONS(222), + [anon_sym_range] = ACTIONS(222), + [anon_sym_29] = ACTIONS(222), + [anon_sym_first] = ACTIONS(222), + [anon_sym_30] = ACTIONS(222), + [anon_sym_reverse] = ACTIONS(222), + [anon_sym_31] = ACTIONS(222), + [anon_sym_deshape] = ACTIONS(222), + [anon_sym_32] = ACTIONS(222), + [anon_sym_bits] = ACTIONS(222), + [anon_sym_33] = ACTIONS(222), + [anon_sym_transpose] = ACTIONS(222), + [anon_sym_34] = ACTIONS(222), + [anon_sym_rise] = ACTIONS(222), + [anon_sym_35] = ACTIONS(222), + [anon_sym_fall] = ACTIONS(222), + [anon_sym_36] = ACTIONS(222), + [anon_sym_where] = ACTIONS(222), + [anon_sym_37] = ACTIONS(222), + [anon_sym_classify] = ACTIONS(222), + [anon_sym_38] = ACTIONS(222), + [anon_sym_deduplicate] = ACTIONS(222), + [anon_sym_39] = ACTIONS(222), + [anon_sym_box] = ACTIONS(222), + [anon_sym_40] = ACTIONS(222), + [anon_sym_unbox] = ACTIONS(222), + [anon_sym_41] = ACTIONS(222), + [anon_sym_match] = ACTIONS(222), + [anon_sym_42] = ACTIONS(222), + [anon_sym_couple] = ACTIONS(222), + [anon_sym_43] = ACTIONS(222), + [anon_sym_join] = ACTIONS(222), + [anon_sym_44] = ACTIONS(222), + [anon_sym_select] = ACTIONS(222), + [anon_sym_45] = ACTIONS(222), + [anon_sym_pick] = ACTIONS(222), + [anon_sym_46] = ACTIONS(222), + [anon_sym_reshape] = ACTIONS(222), + [anon_sym_47] = ACTIONS(222), + [anon_sym_take] = ACTIONS(222), + [anon_sym_48] = ACTIONS(222), + [anon_sym_drop] = ACTIONS(222), + [anon_sym_49] = ACTIONS(222), + [anon_sym_rotate] = ACTIONS(222), + [anon_sym_50] = ACTIONS(222), + [anon_sym_windows] = ACTIONS(222), + [anon_sym_51] = ACTIONS(222), + [anon_sym_keep] = ACTIONS(222), + [anon_sym_52] = ACTIONS(222), + [anon_sym_find] = ACTIONS(222), + [anon_sym_53] = ACTIONS(222), + [anon_sym_member] = ACTIONS(222), + [anon_sym_54] = ACTIONS(222), + [anon_sym_indexof] = ACTIONS(222), + [anon_sym_55] = ACTIONS(222), + [anon_sym_assert] = ACTIONS(222), + [anon_sym_56] = ACTIONS(222), + [anon_sym_wait] = ACTIONS(222), + [anon_sym_parse] = ACTIONS(222), + [anon_sym_random] = ACTIONS(222), + [anon_sym_57] = ACTIONS(222), + [anon_sym_gen] = ACTIONS(222), + [anon_sym_deal] = ACTIONS(222), + [anon_sym_tag] = ACTIONS(222), + [anon_sym_now] = ACTIONS(222), + [anon_sym_type] = ACTIONS(222), + [anon_sym_58] = ACTIONS(222), + [anon_sym_dump] = ACTIONS(222), + [anon_sym_regex] = ACTIONS(222), + [anon_sym_utf] = ACTIONS(222), + [anon_sym_send] = ACTIONS(222), + [anon_sym_recv] = ACTIONS(222), + [anon_sym_tryrecv] = ACTIONS(222), + [anon_sym_complex] = ACTIONS(222), + [anon_sym_59] = ACTIONS(222), + [anon_sym_rerank] = ACTIONS(222), + [anon_sym_60] = ACTIONS(222), + [anon_sym_fix] = ACTIONS(222), + [anon_sym_61] = ACTIONS(222), + [anon_sym_QMARK] = ACTIONS(222), + [anon_sym_reduce] = ACTIONS(222), + [anon_sym_SLASH] = ACTIONS(222), + [anon_sym_scan] = ACTIONS(222), + [anon_sym_BSLASH] = ACTIONS(222), + [anon_sym_each] = ACTIONS(222), + [anon_sym_62] = ACTIONS(222), + [anon_sym_rows] = ACTIONS(222), + [anon_sym_63] = ACTIONS(222), + [anon_sym_repeat] = ACTIONS(222), + [anon_sym_64] = ACTIONS(222), + [anon_sym_dip] = ACTIONS(222), + [anon_sym_65] = ACTIONS(222), + [anon_sym_gap] = ACTIONS(222), + [anon_sym_66] = ACTIONS(222), + [anon_sym_invert] = ACTIONS(222), + [anon_sym_67] = ACTIONS(222), + [anon_sym_spawn] = ACTIONS(222), + [anon_sym_pack] = ACTIONS(222), + [anon_sym_68] = ACTIONS(222), + [anon_sym_rectify] = ACTIONS(222), + [anon_sym_69] = ACTIONS(222), + [anon_sym_this] = ACTIONS(222), + [anon_sym_70] = ACTIONS(222), + [anon_sym_recur] = ACTIONS(222), + [anon_sym_71] = ACTIONS(222), + [anon_sym_fold] = ACTIONS(222), + [anon_sym_72] = ACTIONS(222), + [anon_sym_table] = ACTIONS(222), + [anon_sym_73] = ACTIONS(222), + [anon_sym_cross] = ACTIONS(222), + [anon_sym_74] = ACTIONS(222), + [anon_sym_group] = ACTIONS(222), + [anon_sym_75] = ACTIONS(222), + [anon_sym_partition] = ACTIONS(222), + [anon_sym_76] = ACTIONS(222), + [anon_sym_both] = ACTIONS(222), + [anon_sym_77] = ACTIONS(222), + [anon_sym_bracket] = ACTIONS(222), + [anon_sym_78] = ACTIONS(222), + [anon_sym_fork] = ACTIONS(222), + [anon_sym_79] = ACTIONS(222), + [anon_sym_under] = ACTIONS(222), + [anon_sym_80] = ACTIONS(222), + [anon_sym_fill] = ACTIONS(222), + [anon_sym_81] = ACTIONS(222), + [anon_sym_try] = ACTIONS(618), + [anon_sym_82] = ACTIONS(222), + [anon_sym_do] = ACTIONS(618), + [anon_sym_83] = ACTIONS(222), + [anon_sym_all] = ACTIONS(222), + [anon_sym_84] = ACTIONS(222), + [anon_sym_setinv] = ACTIONS(222), + [anon_sym_setunder] = ACTIONS(222), + [anon_sym_85] = ACTIONS(222), + [anon_sym_86] = ACTIONS(222), + [anon_sym_87] = ACTIONS(222), + [anon_sym_88] = ACTIONS(222), + [anon_sym_89] = ACTIONS(222), + [anon_sym_90] = ACTIONS(222), + [anon_sym_91] = ACTIONS(222), + [anon_sym_92] = ACTIONS(222), [sym__endOfLine] = ACTIONS(5), }, - [169] = { - [sym_inlineFunction] = STATE(170), - [sym_function] = STATE(170), - [anon_sym_PIPE] = ACTIONS(442), - [sym_identifier] = ACTIONS(644), - [sym_system] = ACTIONS(646), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(648), - [sym_closeParen] = ACTIONS(442), - [sym_underscore] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_identity] = ACTIONS(650), - [anon_sym_id] = ACTIONS(652), - [anon_sym_6] = ACTIONS(650), - [anon_sym_not] = ACTIONS(650), - [anon_sym_7] = ACTIONS(650), - [anon_sym_sign] = ACTIONS(650), - [anon_sym_8] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(650), - [anon_sym_9] = ACTIONS(650), - [anon_sym_absolutevalue] = ACTIONS(650), - [anon_sym_10] = ACTIONS(650), - [anon_sym_sqrt] = ACTIONS(650), - [anon_sym_11] = ACTIONS(650), - [anon_sym_sine] = ACTIONS(650), - [anon_sym_12] = ACTIONS(650), - [anon_sym_floor] = ACTIONS(650), - [anon_sym_13] = ACTIONS(650), - [anon_sym_ceiling] = ACTIONS(650), - [anon_sym_14] = ACTIONS(650), - [anon_sym_round] = ACTIONS(650), - [anon_sym_15] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_BANG_EQ] = ACTIONS(650), - [anon_sym_16] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(650), - [anon_sym_17] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_18] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_19] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_20] = ACTIONS(650), - [anon_sym_modulus] = ACTIONS(650), - [anon_sym_21] = ACTIONS(650), - [anon_sym_power] = ACTIONS(650), - [anon_sym_22] = ACTIONS(650), - [anon_sym_logarithm] = ACTIONS(650), - [anon_sym_23] = ACTIONS(650), - [anon_sym_minimum] = ACTIONS(650), - [anon_sym_24] = ACTIONS(650), - [anon_sym_maximum] = ACTIONS(650), - [anon_sym_25] = ACTIONS(650), - [anon_sym_atangent] = ACTIONS(650), - [anon_sym_26] = ACTIONS(650), - [anon_sym_length] = ACTIONS(650), - [anon_sym_27] = ACTIONS(650), - [anon_sym_shape] = ACTIONS(650), - [anon_sym_28] = ACTIONS(650), - [anon_sym_range] = ACTIONS(650), - [anon_sym_29] = ACTIONS(650), - [anon_sym_first] = ACTIONS(650), - [anon_sym_30] = ACTIONS(650), - [anon_sym_reverse] = ACTIONS(650), - [anon_sym_31] = ACTIONS(650), - [anon_sym_deshape] = ACTIONS(650), - [anon_sym_32] = ACTIONS(650), - [anon_sym_bits] = ACTIONS(650), - [anon_sym_33] = ACTIONS(650), - [anon_sym_transpose] = ACTIONS(650), - [anon_sym_34] = ACTIONS(650), - [anon_sym_rise] = ACTIONS(650), - [anon_sym_35] = ACTIONS(650), - [anon_sym_fall] = ACTIONS(650), - [anon_sym_36] = ACTIONS(650), - [anon_sym_where] = ACTIONS(650), - [anon_sym_37] = ACTIONS(650), - [anon_sym_classify] = ACTIONS(650), - [anon_sym_38] = ACTIONS(650), - [anon_sym_deduplicate] = ACTIONS(650), - [anon_sym_39] = ACTIONS(650), - [anon_sym_box] = ACTIONS(650), - [anon_sym_40] = ACTIONS(650), - [anon_sym_unbox] = ACTIONS(650), - [anon_sym_41] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_42] = ACTIONS(650), - [anon_sym_couple] = ACTIONS(650), - [anon_sym_43] = ACTIONS(650), - [anon_sym_join] = ACTIONS(650), - [anon_sym_44] = ACTIONS(650), - [anon_sym_select] = ACTIONS(650), - [anon_sym_45] = ACTIONS(650), - [anon_sym_pick] = ACTIONS(650), - [anon_sym_46] = ACTIONS(650), - [anon_sym_reshape] = ACTIONS(650), - [anon_sym_47] = ACTIONS(650), - [anon_sym_take] = ACTIONS(650), - [anon_sym_48] = ACTIONS(650), - [anon_sym_drop] = ACTIONS(650), - [anon_sym_49] = ACTIONS(650), - [anon_sym_rotate] = ACTIONS(650), - [anon_sym_50] = ACTIONS(650), - [anon_sym_windows] = ACTIONS(650), - [anon_sym_51] = ACTIONS(650), - [anon_sym_keep] = ACTIONS(650), - [anon_sym_52] = ACTIONS(650), - [anon_sym_find] = ACTIONS(650), - [anon_sym_53] = ACTIONS(650), - [anon_sym_member] = ACTIONS(650), - [anon_sym_54] = ACTIONS(650), - [anon_sym_indexof] = ACTIONS(650), - [anon_sym_55] = ACTIONS(650), - [anon_sym_assert] = ACTIONS(650), - [anon_sym_56] = ACTIONS(650), - [anon_sym_wait] = ACTIONS(650), - [anon_sym_parse] = ACTIONS(650), - [anon_sym_random] = ACTIONS(650), - [anon_sym_57] = ACTIONS(650), - [anon_sym_gen] = ACTIONS(650), - [anon_sym_deal] = ACTIONS(650), - [anon_sym_tag] = ACTIONS(650), - [anon_sym_now] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_58] = ACTIONS(650), - [anon_sym_dump] = ACTIONS(650), - [anon_sym_regex] = ACTIONS(650), - [anon_sym_utf] = ACTIONS(650), - [anon_sym_send] = ACTIONS(650), - [anon_sym_recv] = ACTIONS(650), - [anon_sym_tryrecv] = ACTIONS(650), - [anon_sym_complex] = ACTIONS(650), - [anon_sym_59] = ACTIONS(650), - [anon_sym_rerank] = ACTIONS(650), - [anon_sym_60] = ACTIONS(650), - [anon_sym_fix] = ACTIONS(650), - [anon_sym_61] = ACTIONS(650), - [sym__endOfLine] = ACTIONS(5), + [136] = { + [ts_builtin_sym_end] = ACTIONS(558), + [aux_sym_number_token1] = ACTIONS(556), + [sym_fraction] = ACTIONS(558), + [anon_sym_os] = ACTIONS(556), + [anon_sym_Family] = ACTIONS(556), + [anon_sym_Arch] = ACTIONS(556), + [anon_sym_ExeExt] = ACTIONS(556), + [anon_sym_PllExt] = ACTIONS(556), + [anon_sym_Sep] = ACTIONS(556), + [anon_sym_NUmProcs] = ACTIONS(556), + [anon_sym_] = ACTIONS(558), + [aux_sym_character_token1] = ACTIONS(558), + [sym_string] = ACTIONS(558), + [sym_multiLineString] = ACTIONS(558), + [sym_identifier] = ACTIONS(556), + [sym_identifierDeprecated] = ACTIONS(556), + [sym_system] = ACTIONS(558), + [sym_comment] = ACTIONS(556), + [sym_openParen] = ACTIONS(558), + [sym_openCurly] = ACTIONS(558), + [sym_openBracket] = ACTIONS(558), + [sym_underscore] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(558), + [anon_sym_eta] = ACTIONS(558), + [anon_sym_2] = ACTIONS(556), + [anon_sym_pi] = ACTIONS(556), + [anon_sym_3] = ACTIONS(556), + [anon_sym_tau] = ACTIONS(558), + [anon_sym_4] = ACTIONS(556), + [anon_sym_infinity] = ACTIONS(558), + [anon_sym_5] = ACTIONS(558), + [anon_sym_e] = ACTIONS(556), + [anon_sym_NaN] = ACTIONS(556), + [anon_sym_NumProcs] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_identity] = ACTIONS(558), + [anon_sym_id] = ACTIONS(556), + [anon_sym_6] = ACTIONS(558), + [anon_sym_not] = ACTIONS(558), + [anon_sym_7] = ACTIONS(558), + [anon_sym_sign] = ACTIONS(558), + [anon_sym_8] = ACTIONS(558), + [anon_sym_BQUOTE] = ACTIONS(558), + [anon_sym_9] = ACTIONS(556), + [anon_sym_absolutevalue] = ACTIONS(558), + [anon_sym_10] = ACTIONS(558), + [anon_sym_sqrt] = ACTIONS(558), + [anon_sym_11] = ACTIONS(558), + [anon_sym_sine] = ACTIONS(558), + [anon_sym_12] = ACTIONS(558), + [anon_sym_floor] = ACTIONS(558), + [anon_sym_13] = ACTIONS(558), + [anon_sym_ceiling] = ACTIONS(558), + [anon_sym_14] = ACTIONS(558), + [anon_sym_round] = ACTIONS(558), + [anon_sym_15] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_16] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_17] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_18] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_19] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_20] = ACTIONS(558), + [anon_sym_modulus] = ACTIONS(558), + [anon_sym_21] = ACTIONS(558), + [anon_sym_power] = ACTIONS(558), + [anon_sym_22] = ACTIONS(558), + [anon_sym_logarithm] = ACTIONS(558), + [anon_sym_23] = ACTIONS(558), + [anon_sym_minimum] = ACTIONS(558), + [anon_sym_24] = ACTIONS(558), + [anon_sym_maximum] = ACTIONS(558), + [anon_sym_25] = ACTIONS(558), + [anon_sym_atangent] = ACTIONS(558), + [anon_sym_26] = ACTIONS(558), + [anon_sym_length] = ACTIONS(558), + [anon_sym_27] = ACTIONS(558), + [anon_sym_shape] = ACTIONS(558), + [anon_sym_28] = ACTIONS(558), + [anon_sym_range] = ACTIONS(558), + [anon_sym_29] = ACTIONS(558), + [anon_sym_first] = ACTIONS(558), + [anon_sym_30] = ACTIONS(558), + [anon_sym_reverse] = ACTIONS(558), + [anon_sym_31] = ACTIONS(558), + [anon_sym_deshape] = ACTIONS(558), + [anon_sym_32] = ACTIONS(558), + [anon_sym_bits] = ACTIONS(558), + [anon_sym_33] = ACTIONS(558), + [anon_sym_transpose] = ACTIONS(558), + [anon_sym_34] = ACTIONS(558), + [anon_sym_rise] = ACTIONS(558), + [anon_sym_35] = ACTIONS(558), + [anon_sym_fall] = ACTIONS(558), + [anon_sym_36] = ACTIONS(558), + [anon_sym_where] = ACTIONS(558), + [anon_sym_37] = ACTIONS(558), + [anon_sym_classify] = ACTIONS(558), + [anon_sym_38] = ACTIONS(558), + [anon_sym_deduplicate] = ACTIONS(558), + [anon_sym_39] = ACTIONS(558), + [anon_sym_box] = ACTIONS(558), + [anon_sym_40] = ACTIONS(558), + [anon_sym_unbox] = ACTIONS(558), + [anon_sym_41] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_42] = ACTIONS(558), + [anon_sym_couple] = ACTIONS(558), + [anon_sym_43] = ACTIONS(558), + [anon_sym_join] = ACTIONS(558), + [anon_sym_44] = ACTIONS(558), + [anon_sym_select] = ACTIONS(558), + [anon_sym_45] = ACTIONS(558), + [anon_sym_pick] = ACTIONS(558), + [anon_sym_46] = ACTIONS(558), + [anon_sym_reshape] = ACTIONS(558), + [anon_sym_47] = ACTIONS(558), + [anon_sym_take] = ACTIONS(558), + [anon_sym_48] = ACTIONS(558), + [anon_sym_drop] = ACTIONS(558), + [anon_sym_49] = ACTIONS(558), + [anon_sym_rotate] = ACTIONS(558), + [anon_sym_50] = ACTIONS(558), + [anon_sym_windows] = ACTIONS(558), + [anon_sym_51] = ACTIONS(558), + [anon_sym_keep] = ACTIONS(558), + [anon_sym_52] = ACTIONS(558), + [anon_sym_find] = ACTIONS(558), + [anon_sym_53] = ACTIONS(558), + [anon_sym_member] = ACTIONS(558), + [anon_sym_54] = ACTIONS(558), + [anon_sym_indexof] = ACTIONS(558), + [anon_sym_55] = ACTIONS(558), + [anon_sym_assert] = ACTIONS(558), + [anon_sym_56] = ACTIONS(558), + [anon_sym_wait] = ACTIONS(558), + [anon_sym_parse] = ACTIONS(558), + [anon_sym_random] = ACTIONS(558), + [anon_sym_57] = ACTIONS(558), + [anon_sym_gen] = ACTIONS(558), + [anon_sym_deal] = ACTIONS(558), + [anon_sym_tag] = ACTIONS(558), + [anon_sym_now] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_58] = ACTIONS(558), + [anon_sym_dump] = ACTIONS(558), + [anon_sym_regex] = ACTIONS(558), + [anon_sym_utf] = ACTIONS(558), + [anon_sym_send] = ACTIONS(558), + [anon_sym_recv] = ACTIONS(558), + [anon_sym_tryrecv] = ACTIONS(558), + [anon_sym_complex] = ACTIONS(558), + [anon_sym_59] = ACTIONS(558), + [anon_sym_rerank] = ACTIONS(558), + [anon_sym_60] = ACTIONS(558), + [anon_sym_fix] = ACTIONS(558), + [anon_sym_61] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_reduce] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_scan] = ACTIONS(558), + [anon_sym_BSLASH] = ACTIONS(558), + [anon_sym_each] = ACTIONS(558), + [anon_sym_62] = ACTIONS(558), + [anon_sym_rows] = ACTIONS(558), + [anon_sym_63] = ACTIONS(558), + [anon_sym_repeat] = ACTIONS(558), + [anon_sym_64] = ACTIONS(558), + [anon_sym_dip] = ACTIONS(558), + [anon_sym_65] = ACTIONS(558), + [anon_sym_gap] = ACTIONS(558), + [anon_sym_66] = ACTIONS(558), + [anon_sym_invert] = ACTIONS(558), + [anon_sym_67] = ACTIONS(558), + [anon_sym_spawn] = ACTIONS(558), + [anon_sym_pack] = ACTIONS(558), + [anon_sym_68] = ACTIONS(558), + [anon_sym_rectify] = ACTIONS(558), + [anon_sym_69] = ACTIONS(558), + [anon_sym_this] = ACTIONS(558), + [anon_sym_70] = ACTIONS(558), + [anon_sym_recur] = ACTIONS(558), + [anon_sym_71] = ACTIONS(558), + [anon_sym_fold] = ACTIONS(558), + [anon_sym_72] = ACTIONS(558), + [anon_sym_table] = ACTIONS(558), + [anon_sym_73] = ACTIONS(558), + [anon_sym_cross] = ACTIONS(558), + [anon_sym_74] = ACTIONS(558), + [anon_sym_group] = ACTIONS(558), + [anon_sym_75] = ACTIONS(558), + [anon_sym_partition] = ACTIONS(558), + [anon_sym_76] = ACTIONS(558), + [anon_sym_both] = ACTIONS(558), + [anon_sym_77] = ACTIONS(558), + [anon_sym_bracket] = ACTIONS(558), + [anon_sym_78] = ACTIONS(558), + [anon_sym_fork] = ACTIONS(558), + [anon_sym_79] = ACTIONS(558), + [anon_sym_under] = ACTIONS(558), + [anon_sym_80] = ACTIONS(558), + [anon_sym_fill] = ACTIONS(558), + [anon_sym_81] = ACTIONS(558), + [anon_sym_try] = ACTIONS(556), + [anon_sym_82] = ACTIONS(558), + [anon_sym_do] = ACTIONS(556), + [anon_sym_83] = ACTIONS(558), + [anon_sym_all] = ACTIONS(558), + [anon_sym_84] = ACTIONS(558), + [anon_sym_setinv] = ACTIONS(558), + [anon_sym_setunder] = ACTIONS(558), + [anon_sym_85] = ACTIONS(558), + [anon_sym_86] = ACTIONS(558), + [anon_sym_87] = ACTIONS(558), + [anon_sym_88] = ACTIONS(558), + [anon_sym_89] = ACTIONS(558), + [anon_sym_90] = ACTIONS(558), + [anon_sym_91] = ACTIONS(558), + [anon_sym_92] = ACTIONS(558), + [sym__endOfLine] = ACTIONS(558), }, - [170] = { - [sym_inlineFunction] = STATE(184), - [sym_function] = STATE(184), - [anon_sym_PIPE] = ACTIONS(432), - [sym_identifier] = ACTIONS(654), - [sym_system] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(642), - [sym_closeParen] = ACTIONS(432), - [sym_underscore] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_identity] = ACTIONS(272), - [anon_sym_id] = ACTIONS(274), - [anon_sym_6] = ACTIONS(272), - [anon_sym_not] = ACTIONS(272), - [anon_sym_7] = ACTIONS(272), - [anon_sym_sign] = ACTIONS(272), - [anon_sym_8] = ACTIONS(272), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_9] = ACTIONS(272), - [anon_sym_absolutevalue] = ACTIONS(272), - [anon_sym_10] = ACTIONS(272), - [anon_sym_sqrt] = ACTIONS(272), - [anon_sym_11] = ACTIONS(272), - [anon_sym_sine] = ACTIONS(272), - [anon_sym_12] = ACTIONS(272), - [anon_sym_floor] = ACTIONS(272), - [anon_sym_13] = ACTIONS(272), - [anon_sym_ceiling] = ACTIONS(272), - [anon_sym_14] = ACTIONS(272), - [anon_sym_round] = ACTIONS(272), - [anon_sym_15] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_16] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_17] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_18] = ACTIONS(272), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(272), - [anon_sym_19] = ACTIONS(272), - [anon_sym_PERCENT] = ACTIONS(272), - [anon_sym_20] = ACTIONS(272), - [anon_sym_modulus] = ACTIONS(272), - [anon_sym_21] = ACTIONS(272), - [anon_sym_power] = ACTIONS(272), - [anon_sym_22] = ACTIONS(272), - [anon_sym_logarithm] = ACTIONS(272), - [anon_sym_23] = ACTIONS(272), - [anon_sym_minimum] = ACTIONS(272), - [anon_sym_24] = ACTIONS(272), - [anon_sym_maximum] = ACTIONS(272), - [anon_sym_25] = ACTIONS(272), - [anon_sym_atangent] = ACTIONS(272), - [anon_sym_26] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_27] = ACTIONS(272), - [anon_sym_shape] = ACTIONS(272), - [anon_sym_28] = ACTIONS(272), - [anon_sym_range] = ACTIONS(272), - [anon_sym_29] = ACTIONS(272), - [anon_sym_first] = ACTIONS(272), - [anon_sym_30] = ACTIONS(272), - [anon_sym_reverse] = ACTIONS(272), - [anon_sym_31] = ACTIONS(272), - [anon_sym_deshape] = ACTIONS(272), - [anon_sym_32] = ACTIONS(272), - [anon_sym_bits] = ACTIONS(272), - [anon_sym_33] = ACTIONS(272), - [anon_sym_transpose] = ACTIONS(272), - [anon_sym_34] = ACTIONS(272), - [anon_sym_rise] = ACTIONS(272), - [anon_sym_35] = ACTIONS(272), - [anon_sym_fall] = ACTIONS(272), - [anon_sym_36] = ACTIONS(272), - [anon_sym_where] = ACTIONS(272), - [anon_sym_37] = ACTIONS(272), - [anon_sym_classify] = ACTIONS(272), - [anon_sym_38] = ACTIONS(272), - [anon_sym_deduplicate] = ACTIONS(272), - [anon_sym_39] = ACTIONS(272), - [anon_sym_box] = ACTIONS(272), - [anon_sym_40] = ACTIONS(272), - [anon_sym_unbox] = ACTIONS(272), - [anon_sym_41] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_42] = ACTIONS(272), - [anon_sym_couple] = ACTIONS(272), - [anon_sym_43] = ACTIONS(272), - [anon_sym_join] = ACTIONS(272), - [anon_sym_44] = ACTIONS(272), - [anon_sym_select] = ACTIONS(272), - [anon_sym_45] = ACTIONS(272), - [anon_sym_pick] = ACTIONS(272), - [anon_sym_46] = ACTIONS(272), - [anon_sym_reshape] = ACTIONS(272), - [anon_sym_47] = ACTIONS(272), - [anon_sym_take] = ACTIONS(272), - [anon_sym_48] = ACTIONS(272), - [anon_sym_drop] = ACTIONS(272), - [anon_sym_49] = ACTIONS(272), - [anon_sym_rotate] = ACTIONS(272), - [anon_sym_50] = ACTIONS(272), - [anon_sym_windows] = ACTIONS(272), - [anon_sym_51] = ACTIONS(272), - [anon_sym_keep] = ACTIONS(272), - [anon_sym_52] = ACTIONS(272), - [anon_sym_find] = ACTIONS(272), - [anon_sym_53] = ACTIONS(272), - [anon_sym_member] = ACTIONS(272), - [anon_sym_54] = ACTIONS(272), - [anon_sym_indexof] = ACTIONS(272), - [anon_sym_55] = ACTIONS(272), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_56] = ACTIONS(272), - [anon_sym_wait] = ACTIONS(272), - [anon_sym_parse] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_57] = ACTIONS(272), - [anon_sym_gen] = ACTIONS(272), - [anon_sym_deal] = ACTIONS(272), - [anon_sym_tag] = ACTIONS(272), - [anon_sym_now] = ACTIONS(272), - [anon_sym_type] = ACTIONS(272), - [anon_sym_58] = ACTIONS(272), - [anon_sym_dump] = ACTIONS(272), - [anon_sym_regex] = ACTIONS(272), - [anon_sym_utf] = ACTIONS(272), - [anon_sym_send] = ACTIONS(272), - [anon_sym_recv] = ACTIONS(272), - [anon_sym_tryrecv] = ACTIONS(272), - [anon_sym_complex] = ACTIONS(272), - [anon_sym_59] = ACTIONS(272), - [anon_sym_rerank] = ACTIONS(272), - [anon_sym_60] = ACTIONS(272), - [anon_sym_fix] = ACTIONS(272), - [anon_sym_61] = ACTIONS(272), - [sym__endOfLine] = ACTIONS(5), + [137] = { + [ts_builtin_sym_end] = ACTIONS(490), + [aux_sym_number_token1] = ACTIONS(488), + [sym_fraction] = ACTIONS(490), + [anon_sym_os] = ACTIONS(488), + [anon_sym_Family] = ACTIONS(488), + [anon_sym_Arch] = ACTIONS(488), + [anon_sym_ExeExt] = ACTIONS(488), + [anon_sym_PllExt] = ACTIONS(488), + [anon_sym_Sep] = ACTIONS(488), + [anon_sym_NUmProcs] = ACTIONS(488), + [anon_sym_] = ACTIONS(490), + [aux_sym_character_token1] = ACTIONS(490), + [sym_string] = ACTIONS(490), + [sym_multiLineString] = ACTIONS(490), + [sym_identifier] = ACTIONS(488), + [sym_identifierDeprecated] = ACTIONS(488), + [sym_system] = ACTIONS(490), + [sym_comment] = ACTIONS(488), + [sym_openParen] = ACTIONS(490), + [sym_openCurly] = ACTIONS(490), + [sym_openBracket] = ACTIONS(490), + [sym_underscore] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(488), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(490), + [anon_sym_eta] = ACTIONS(490), + [anon_sym_2] = ACTIONS(488), + [anon_sym_pi] = ACTIONS(488), + [anon_sym_3] = ACTIONS(488), + [anon_sym_tau] = ACTIONS(490), + [anon_sym_4] = ACTIONS(488), + [anon_sym_infinity] = ACTIONS(490), + [anon_sym_5] = ACTIONS(490), + [anon_sym_e] = ACTIONS(488), + [anon_sym_NaN] = ACTIONS(488), + [anon_sym_NumProcs] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_COLON] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_identity] = ACTIONS(490), + [anon_sym_id] = ACTIONS(488), + [anon_sym_6] = ACTIONS(490), + [anon_sym_not] = ACTIONS(490), + [anon_sym_7] = ACTIONS(490), + [anon_sym_sign] = ACTIONS(490), + [anon_sym_8] = ACTIONS(490), + [anon_sym_BQUOTE] = ACTIONS(490), + [anon_sym_9] = ACTIONS(488), + [anon_sym_absolutevalue] = ACTIONS(490), + [anon_sym_10] = ACTIONS(490), + [anon_sym_sqrt] = ACTIONS(490), + [anon_sym_11] = ACTIONS(490), + [anon_sym_sine] = ACTIONS(490), + [anon_sym_12] = ACTIONS(490), + [anon_sym_floor] = ACTIONS(490), + [anon_sym_13] = ACTIONS(490), + [anon_sym_ceiling] = ACTIONS(490), + [anon_sym_14] = ACTIONS(490), + [anon_sym_round] = ACTIONS(490), + [anon_sym_15] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_16] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_17] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_18] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_19] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_20] = ACTIONS(490), + [anon_sym_modulus] = ACTIONS(490), + [anon_sym_21] = ACTIONS(490), + [anon_sym_power] = ACTIONS(490), + [anon_sym_22] = ACTIONS(490), + [anon_sym_logarithm] = ACTIONS(490), + [anon_sym_23] = ACTIONS(490), + [anon_sym_minimum] = ACTIONS(490), + [anon_sym_24] = ACTIONS(490), + [anon_sym_maximum] = ACTIONS(490), + [anon_sym_25] = ACTIONS(490), + [anon_sym_atangent] = ACTIONS(490), + [anon_sym_26] = ACTIONS(490), + [anon_sym_length] = ACTIONS(490), + [anon_sym_27] = ACTIONS(490), + [anon_sym_shape] = ACTIONS(490), + [anon_sym_28] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_29] = ACTIONS(490), + [anon_sym_first] = ACTIONS(490), + [anon_sym_30] = ACTIONS(490), + [anon_sym_reverse] = ACTIONS(490), + [anon_sym_31] = ACTIONS(490), + [anon_sym_deshape] = ACTIONS(490), + [anon_sym_32] = ACTIONS(490), + [anon_sym_bits] = ACTIONS(490), + [anon_sym_33] = ACTIONS(490), + [anon_sym_transpose] = ACTIONS(490), + [anon_sym_34] = ACTIONS(490), + [anon_sym_rise] = ACTIONS(490), + [anon_sym_35] = ACTIONS(490), + [anon_sym_fall] = ACTIONS(490), + [anon_sym_36] = ACTIONS(490), + [anon_sym_where] = ACTIONS(490), + [anon_sym_37] = ACTIONS(490), + [anon_sym_classify] = ACTIONS(490), + [anon_sym_38] = ACTIONS(490), + [anon_sym_deduplicate] = ACTIONS(490), + [anon_sym_39] = ACTIONS(490), + [anon_sym_box] = ACTIONS(490), + [anon_sym_40] = ACTIONS(490), + [anon_sym_unbox] = ACTIONS(490), + [anon_sym_41] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_42] = ACTIONS(490), + [anon_sym_couple] = ACTIONS(490), + [anon_sym_43] = ACTIONS(490), + [anon_sym_join] = ACTIONS(490), + [anon_sym_44] = ACTIONS(490), + [anon_sym_select] = ACTIONS(490), + [anon_sym_45] = ACTIONS(490), + [anon_sym_pick] = ACTIONS(490), + [anon_sym_46] = ACTIONS(490), + [anon_sym_reshape] = ACTIONS(490), + [anon_sym_47] = ACTIONS(490), + [anon_sym_take] = ACTIONS(490), + [anon_sym_48] = ACTIONS(490), + [anon_sym_drop] = ACTIONS(490), + [anon_sym_49] = ACTIONS(490), + [anon_sym_rotate] = ACTIONS(490), + [anon_sym_50] = ACTIONS(490), + [anon_sym_windows] = ACTIONS(490), + [anon_sym_51] = ACTIONS(490), + [anon_sym_keep] = ACTIONS(490), + [anon_sym_52] = ACTIONS(490), + [anon_sym_find] = ACTIONS(490), + [anon_sym_53] = ACTIONS(490), + [anon_sym_member] = ACTIONS(490), + [anon_sym_54] = ACTIONS(490), + [anon_sym_indexof] = ACTIONS(490), + [anon_sym_55] = ACTIONS(490), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_56] = ACTIONS(490), + [anon_sym_wait] = ACTIONS(490), + [anon_sym_parse] = ACTIONS(490), + [anon_sym_random] = ACTIONS(490), + [anon_sym_57] = ACTIONS(490), + [anon_sym_gen] = ACTIONS(490), + [anon_sym_deal] = ACTIONS(490), + [anon_sym_tag] = ACTIONS(490), + [anon_sym_now] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_58] = ACTIONS(490), + [anon_sym_dump] = ACTIONS(490), + [anon_sym_regex] = ACTIONS(490), + [anon_sym_utf] = ACTIONS(490), + [anon_sym_send] = ACTIONS(490), + [anon_sym_recv] = ACTIONS(490), + [anon_sym_tryrecv] = ACTIONS(490), + [anon_sym_complex] = ACTIONS(490), + [anon_sym_59] = ACTIONS(490), + [anon_sym_rerank] = ACTIONS(490), + [anon_sym_60] = ACTIONS(490), + [anon_sym_fix] = ACTIONS(490), + [anon_sym_61] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_reduce] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_scan] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(490), + [anon_sym_each] = ACTIONS(490), + [anon_sym_62] = ACTIONS(490), + [anon_sym_rows] = ACTIONS(490), + [anon_sym_63] = ACTIONS(490), + [anon_sym_repeat] = ACTIONS(490), + [anon_sym_64] = ACTIONS(490), + [anon_sym_dip] = ACTIONS(490), + [anon_sym_65] = ACTIONS(490), + [anon_sym_gap] = ACTIONS(490), + [anon_sym_66] = ACTIONS(490), + [anon_sym_invert] = ACTIONS(490), + [anon_sym_67] = ACTIONS(490), + [anon_sym_spawn] = ACTIONS(490), + [anon_sym_pack] = ACTIONS(490), + [anon_sym_68] = ACTIONS(490), + [anon_sym_rectify] = ACTIONS(490), + [anon_sym_69] = ACTIONS(490), + [anon_sym_this] = ACTIONS(490), + [anon_sym_70] = ACTIONS(490), + [anon_sym_recur] = ACTIONS(490), + [anon_sym_71] = ACTIONS(490), + [anon_sym_fold] = ACTIONS(490), + [anon_sym_72] = ACTIONS(490), + [anon_sym_table] = ACTIONS(490), + [anon_sym_73] = ACTIONS(490), + [anon_sym_cross] = ACTIONS(490), + [anon_sym_74] = ACTIONS(490), + [anon_sym_group] = ACTIONS(490), + [anon_sym_75] = ACTIONS(490), + [anon_sym_partition] = ACTIONS(490), + [anon_sym_76] = ACTIONS(490), + [anon_sym_both] = ACTIONS(490), + [anon_sym_77] = ACTIONS(490), + [anon_sym_bracket] = ACTIONS(490), + [anon_sym_78] = ACTIONS(490), + [anon_sym_fork] = ACTIONS(490), + [anon_sym_79] = ACTIONS(490), + [anon_sym_under] = ACTIONS(490), + [anon_sym_80] = ACTIONS(490), + [anon_sym_fill] = ACTIONS(490), + [anon_sym_81] = ACTIONS(490), + [anon_sym_try] = ACTIONS(488), + [anon_sym_82] = ACTIONS(490), + [anon_sym_do] = ACTIONS(488), + [anon_sym_83] = ACTIONS(490), + [anon_sym_all] = ACTIONS(490), + [anon_sym_84] = ACTIONS(490), + [anon_sym_setinv] = ACTIONS(490), + [anon_sym_setunder] = ACTIONS(490), + [anon_sym_85] = ACTIONS(490), + [anon_sym_86] = ACTIONS(490), + [anon_sym_87] = ACTIONS(490), + [anon_sym_88] = ACTIONS(490), + [anon_sym_89] = ACTIONS(490), + [anon_sym_90] = ACTIONS(490), + [anon_sym_91] = ACTIONS(490), + [anon_sym_92] = ACTIONS(490), + [sym__endOfLine] = ACTIONS(490), }, - [171] = { - [anon_sym_PIPE] = ACTIONS(506), - [sym_identifier] = ACTIONS(504), - [sym_system] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(506), - [sym_closeParen] = ACTIONS(506), - [sym_underscore] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_identity] = ACTIONS(506), - [anon_sym_id] = ACTIONS(504), - [anon_sym_6] = ACTIONS(506), - [anon_sym_not] = ACTIONS(506), - [anon_sym_7] = ACTIONS(506), - [anon_sym_sign] = ACTIONS(506), - [anon_sym_8] = ACTIONS(506), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_9] = ACTIONS(506), - [anon_sym_absolutevalue] = ACTIONS(506), - [anon_sym_10] = ACTIONS(506), - [anon_sym_sqrt] = ACTIONS(506), - [anon_sym_11] = ACTIONS(506), - [anon_sym_sine] = ACTIONS(506), - [anon_sym_12] = ACTIONS(506), - [anon_sym_floor] = ACTIONS(506), - [anon_sym_13] = ACTIONS(506), - [anon_sym_ceiling] = ACTIONS(506), - [anon_sym_14] = ACTIONS(506), - [anon_sym_round] = ACTIONS(506), - [anon_sym_15] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_16] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_17] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_18] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_19] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_20] = ACTIONS(506), - [anon_sym_modulus] = ACTIONS(506), - [anon_sym_21] = ACTIONS(506), - [anon_sym_power] = ACTIONS(506), - [anon_sym_22] = ACTIONS(506), - [anon_sym_logarithm] = ACTIONS(506), - [anon_sym_23] = ACTIONS(506), - [anon_sym_minimum] = ACTIONS(506), - [anon_sym_24] = ACTIONS(506), - [anon_sym_maximum] = ACTIONS(506), - [anon_sym_25] = ACTIONS(506), - [anon_sym_atangent] = ACTIONS(506), - [anon_sym_26] = ACTIONS(506), - [anon_sym_length] = ACTIONS(506), - [anon_sym_27] = ACTIONS(506), - [anon_sym_shape] = ACTIONS(506), - [anon_sym_28] = ACTIONS(506), - [anon_sym_range] = ACTIONS(506), - [anon_sym_29] = ACTIONS(506), - [anon_sym_first] = ACTIONS(506), - [anon_sym_30] = ACTIONS(506), - [anon_sym_reverse] = ACTIONS(506), - [anon_sym_31] = ACTIONS(506), - [anon_sym_deshape] = ACTIONS(506), - [anon_sym_32] = ACTIONS(506), - [anon_sym_bits] = ACTIONS(506), - [anon_sym_33] = ACTIONS(506), - [anon_sym_transpose] = ACTIONS(506), - [anon_sym_34] = ACTIONS(506), - [anon_sym_rise] = ACTIONS(506), - [anon_sym_35] = ACTIONS(506), - [anon_sym_fall] = ACTIONS(506), - [anon_sym_36] = ACTIONS(506), - [anon_sym_where] = ACTIONS(506), - [anon_sym_37] = ACTIONS(506), - [anon_sym_classify] = ACTIONS(506), - [anon_sym_38] = ACTIONS(506), - [anon_sym_deduplicate] = ACTIONS(506), - [anon_sym_39] = ACTIONS(506), - [anon_sym_box] = ACTIONS(506), - [anon_sym_40] = ACTIONS(506), - [anon_sym_unbox] = ACTIONS(506), - [anon_sym_41] = ACTIONS(506), - [anon_sym_match] = ACTIONS(506), - [anon_sym_42] = ACTIONS(506), - [anon_sym_couple] = ACTIONS(506), - [anon_sym_43] = ACTIONS(506), - [anon_sym_join] = ACTIONS(506), - [anon_sym_44] = ACTIONS(506), - [anon_sym_select] = ACTIONS(506), - [anon_sym_45] = ACTIONS(506), - [anon_sym_pick] = ACTIONS(506), - [anon_sym_46] = ACTIONS(506), - [anon_sym_reshape] = ACTIONS(506), - [anon_sym_47] = ACTIONS(506), - [anon_sym_take] = ACTIONS(506), - [anon_sym_48] = ACTIONS(506), - [anon_sym_drop] = ACTIONS(506), - [anon_sym_49] = ACTIONS(506), - [anon_sym_rotate] = ACTIONS(506), - [anon_sym_50] = ACTIONS(506), - [anon_sym_windows] = ACTIONS(506), - [anon_sym_51] = ACTIONS(506), - [anon_sym_keep] = ACTIONS(506), - [anon_sym_52] = ACTIONS(506), - [anon_sym_find] = ACTIONS(506), - [anon_sym_53] = ACTIONS(506), - [anon_sym_member] = ACTIONS(506), - [anon_sym_54] = ACTIONS(506), - [anon_sym_indexof] = ACTIONS(506), - [anon_sym_55] = ACTIONS(506), - [anon_sym_assert] = ACTIONS(506), - [anon_sym_56] = ACTIONS(506), - [anon_sym_wait] = ACTIONS(506), - [anon_sym_parse] = ACTIONS(506), - [anon_sym_random] = ACTIONS(506), - [anon_sym_57] = ACTIONS(506), - [anon_sym_gen] = ACTIONS(506), - [anon_sym_deal] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_now] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_58] = ACTIONS(506), - [anon_sym_dump] = ACTIONS(506), - [anon_sym_regex] = ACTIONS(506), - [anon_sym_utf] = ACTIONS(506), - [anon_sym_send] = ACTIONS(506), - [anon_sym_recv] = ACTIONS(506), - [anon_sym_tryrecv] = ACTIONS(506), - [anon_sym_complex] = ACTIONS(506), - [anon_sym_59] = ACTIONS(506), - [anon_sym_rerank] = ACTIONS(506), - [anon_sym_60] = ACTIONS(506), - [anon_sym_fix] = ACTIONS(506), - [anon_sym_61] = ACTIONS(506), + [138] = { + [ts_builtin_sym_end] = ACTIONS(570), + [aux_sym_number_token1] = ACTIONS(568), + [sym_fraction] = ACTIONS(570), + [anon_sym_os] = ACTIONS(568), + [anon_sym_Family] = ACTIONS(568), + [anon_sym_Arch] = ACTIONS(568), + [anon_sym_ExeExt] = ACTIONS(568), + [anon_sym_PllExt] = ACTIONS(568), + [anon_sym_Sep] = ACTIONS(568), + [anon_sym_NUmProcs] = ACTIONS(568), + [anon_sym_] = ACTIONS(570), + [aux_sym_character_token1] = ACTIONS(570), + [sym_string] = ACTIONS(570), + [sym_multiLineString] = ACTIONS(570), + [sym_identifier] = ACTIONS(568), + [sym_identifierDeprecated] = ACTIONS(568), + [sym_system] = ACTIONS(570), + [sym_comment] = ACTIONS(568), + [sym_openParen] = ACTIONS(570), + [sym_openCurly] = ACTIONS(570), + [sym_openBracket] = ACTIONS(570), + [sym_underscore] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_eta] = ACTIONS(570), + [anon_sym_2] = ACTIONS(568), + [anon_sym_pi] = ACTIONS(568), + [anon_sym_3] = ACTIONS(568), + [anon_sym_tau] = ACTIONS(570), + [anon_sym_4] = ACTIONS(568), + [anon_sym_infinity] = ACTIONS(570), + [anon_sym_5] = ACTIONS(570), + [anon_sym_e] = ACTIONS(568), + [anon_sym_NaN] = ACTIONS(568), + [anon_sym_NumProcs] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_COLON] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_identity] = ACTIONS(570), + [anon_sym_id] = ACTIONS(568), + [anon_sym_6] = ACTIONS(570), + [anon_sym_not] = ACTIONS(570), + [anon_sym_7] = ACTIONS(570), + [anon_sym_sign] = ACTIONS(570), + [anon_sym_8] = ACTIONS(570), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_9] = ACTIONS(568), + [anon_sym_absolutevalue] = ACTIONS(570), + [anon_sym_10] = ACTIONS(570), + [anon_sym_sqrt] = ACTIONS(570), + [anon_sym_11] = ACTIONS(570), + [anon_sym_sine] = ACTIONS(570), + [anon_sym_12] = ACTIONS(570), + [anon_sym_floor] = ACTIONS(570), + [anon_sym_13] = ACTIONS(570), + [anon_sym_ceiling] = ACTIONS(570), + [anon_sym_14] = ACTIONS(570), + [anon_sym_round] = ACTIONS(570), + [anon_sym_15] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_16] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_17] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_18] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_19] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_20] = ACTIONS(570), + [anon_sym_modulus] = ACTIONS(570), + [anon_sym_21] = ACTIONS(570), + [anon_sym_power] = ACTIONS(570), + [anon_sym_22] = ACTIONS(570), + [anon_sym_logarithm] = ACTIONS(570), + [anon_sym_23] = ACTIONS(570), + [anon_sym_minimum] = ACTIONS(570), + [anon_sym_24] = ACTIONS(570), + [anon_sym_maximum] = ACTIONS(570), + [anon_sym_25] = ACTIONS(570), + [anon_sym_atangent] = ACTIONS(570), + [anon_sym_26] = ACTIONS(570), + [anon_sym_length] = ACTIONS(570), + [anon_sym_27] = ACTIONS(570), + [anon_sym_shape] = ACTIONS(570), + [anon_sym_28] = ACTIONS(570), + [anon_sym_range] = ACTIONS(570), + [anon_sym_29] = ACTIONS(570), + [anon_sym_first] = ACTIONS(570), + [anon_sym_30] = ACTIONS(570), + [anon_sym_reverse] = ACTIONS(570), + [anon_sym_31] = ACTIONS(570), + [anon_sym_deshape] = ACTIONS(570), + [anon_sym_32] = ACTIONS(570), + [anon_sym_bits] = ACTIONS(570), + [anon_sym_33] = ACTIONS(570), + [anon_sym_transpose] = ACTIONS(570), + [anon_sym_34] = ACTIONS(570), + [anon_sym_rise] = ACTIONS(570), + [anon_sym_35] = ACTIONS(570), + [anon_sym_fall] = ACTIONS(570), + [anon_sym_36] = ACTIONS(570), + [anon_sym_where] = ACTIONS(570), + [anon_sym_37] = ACTIONS(570), + [anon_sym_classify] = ACTIONS(570), + [anon_sym_38] = ACTIONS(570), + [anon_sym_deduplicate] = ACTIONS(570), + [anon_sym_39] = ACTIONS(570), + [anon_sym_box] = ACTIONS(570), + [anon_sym_40] = ACTIONS(570), + [anon_sym_unbox] = ACTIONS(570), + [anon_sym_41] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_42] = ACTIONS(570), + [anon_sym_couple] = ACTIONS(570), + [anon_sym_43] = ACTIONS(570), + [anon_sym_join] = ACTIONS(570), + [anon_sym_44] = ACTIONS(570), + [anon_sym_select] = ACTIONS(570), + [anon_sym_45] = ACTIONS(570), + [anon_sym_pick] = ACTIONS(570), + [anon_sym_46] = ACTIONS(570), + [anon_sym_reshape] = ACTIONS(570), + [anon_sym_47] = ACTIONS(570), + [anon_sym_take] = ACTIONS(570), + [anon_sym_48] = ACTIONS(570), + [anon_sym_drop] = ACTIONS(570), + [anon_sym_49] = ACTIONS(570), + [anon_sym_rotate] = ACTIONS(570), + [anon_sym_50] = ACTIONS(570), + [anon_sym_windows] = ACTIONS(570), + [anon_sym_51] = ACTIONS(570), + [anon_sym_keep] = ACTIONS(570), + [anon_sym_52] = ACTIONS(570), + [anon_sym_find] = ACTIONS(570), + [anon_sym_53] = ACTIONS(570), + [anon_sym_member] = ACTIONS(570), + [anon_sym_54] = ACTIONS(570), + [anon_sym_indexof] = ACTIONS(570), + [anon_sym_55] = ACTIONS(570), + [anon_sym_assert] = ACTIONS(570), + [anon_sym_56] = ACTIONS(570), + [anon_sym_wait] = ACTIONS(570), + [anon_sym_parse] = ACTIONS(570), + [anon_sym_random] = ACTIONS(570), + [anon_sym_57] = ACTIONS(570), + [anon_sym_gen] = ACTIONS(570), + [anon_sym_deal] = ACTIONS(570), + [anon_sym_tag] = ACTIONS(570), + [anon_sym_now] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_58] = ACTIONS(570), + [anon_sym_dump] = ACTIONS(570), + [anon_sym_regex] = ACTIONS(570), + [anon_sym_utf] = ACTIONS(570), + [anon_sym_send] = ACTIONS(570), + [anon_sym_recv] = ACTIONS(570), + [anon_sym_tryrecv] = ACTIONS(570), + [anon_sym_complex] = ACTIONS(570), + [anon_sym_59] = ACTIONS(570), + [anon_sym_rerank] = ACTIONS(570), + [anon_sym_60] = ACTIONS(570), + [anon_sym_fix] = ACTIONS(570), + [anon_sym_61] = ACTIONS(570), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_reduce] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_scan] = ACTIONS(570), + [anon_sym_BSLASH] = ACTIONS(570), + [anon_sym_each] = ACTIONS(570), + [anon_sym_62] = ACTIONS(570), + [anon_sym_rows] = ACTIONS(570), + [anon_sym_63] = ACTIONS(570), + [anon_sym_repeat] = ACTIONS(570), + [anon_sym_64] = ACTIONS(570), + [anon_sym_dip] = ACTIONS(570), + [anon_sym_65] = ACTIONS(570), + [anon_sym_gap] = ACTIONS(570), + [anon_sym_66] = ACTIONS(570), + [anon_sym_invert] = ACTIONS(570), + [anon_sym_67] = ACTIONS(570), + [anon_sym_spawn] = ACTIONS(570), + [anon_sym_pack] = ACTIONS(570), + [anon_sym_68] = ACTIONS(570), + [anon_sym_rectify] = ACTIONS(570), + [anon_sym_69] = ACTIONS(570), + [anon_sym_this] = ACTIONS(570), + [anon_sym_70] = ACTIONS(570), + [anon_sym_recur] = ACTIONS(570), + [anon_sym_71] = ACTIONS(570), + [anon_sym_fold] = ACTIONS(570), + [anon_sym_72] = ACTIONS(570), + [anon_sym_table] = ACTIONS(570), + [anon_sym_73] = ACTIONS(570), + [anon_sym_cross] = ACTIONS(570), + [anon_sym_74] = ACTIONS(570), + [anon_sym_group] = ACTIONS(570), + [anon_sym_75] = ACTIONS(570), + [anon_sym_partition] = ACTIONS(570), + [anon_sym_76] = ACTIONS(570), + [anon_sym_both] = ACTIONS(570), + [anon_sym_77] = ACTIONS(570), + [anon_sym_bracket] = ACTIONS(570), + [anon_sym_78] = ACTIONS(570), + [anon_sym_fork] = ACTIONS(570), + [anon_sym_79] = ACTIONS(570), + [anon_sym_under] = ACTIONS(570), + [anon_sym_80] = ACTIONS(570), + [anon_sym_fill] = ACTIONS(570), + [anon_sym_81] = ACTIONS(570), + [anon_sym_try] = ACTIONS(568), + [anon_sym_82] = ACTIONS(570), + [anon_sym_do] = ACTIONS(568), + [anon_sym_83] = ACTIONS(570), + [anon_sym_all] = ACTIONS(570), + [anon_sym_84] = ACTIONS(570), + [anon_sym_setinv] = ACTIONS(570), + [anon_sym_setunder] = ACTIONS(570), + [anon_sym_85] = ACTIONS(570), + [anon_sym_86] = ACTIONS(570), + [anon_sym_87] = ACTIONS(570), + [anon_sym_88] = ACTIONS(570), + [anon_sym_89] = ACTIONS(570), + [anon_sym_90] = ACTIONS(570), + [anon_sym_91] = ACTIONS(570), + [anon_sym_92] = ACTIONS(570), + [sym__endOfLine] = ACTIONS(570), + }, + [139] = { + [ts_builtin_sym_end] = ACTIONS(542), + [aux_sym_number_token1] = ACTIONS(540), + [sym_fraction] = ACTIONS(542), + [anon_sym_os] = ACTIONS(540), + [anon_sym_Family] = ACTIONS(540), + [anon_sym_Arch] = ACTIONS(540), + [anon_sym_ExeExt] = ACTIONS(540), + [anon_sym_PllExt] = ACTIONS(540), + [anon_sym_Sep] = ACTIONS(540), + [anon_sym_NUmProcs] = ACTIONS(540), + [anon_sym_] = ACTIONS(542), + [aux_sym_character_token1] = ACTIONS(542), + [sym_string] = ACTIONS(542), + [sym_multiLineString] = ACTIONS(542), + [sym_identifier] = ACTIONS(540), + [sym_identifierDeprecated] = ACTIONS(540), + [sym_system] = ACTIONS(542), + [sym_comment] = ACTIONS(540), + [sym_openParen] = ACTIONS(542), + [sym_openCurly] = ACTIONS(542), + [sym_openBracket] = ACTIONS(542), + [sym_underscore] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(542), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(542), + [anon_sym_eta] = ACTIONS(542), + [anon_sym_2] = ACTIONS(540), + [anon_sym_pi] = ACTIONS(540), + [anon_sym_3] = ACTIONS(540), + [anon_sym_tau] = ACTIONS(542), + [anon_sym_4] = ACTIONS(540), + [anon_sym_infinity] = ACTIONS(542), + [anon_sym_5] = ACTIONS(542), + [anon_sym_e] = ACTIONS(540), + [anon_sym_NaN] = ACTIONS(540), + [anon_sym_NumProcs] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_identity] = ACTIONS(542), + [anon_sym_id] = ACTIONS(540), + [anon_sym_6] = ACTIONS(542), + [anon_sym_not] = ACTIONS(542), + [anon_sym_7] = ACTIONS(542), + [anon_sym_sign] = ACTIONS(542), + [anon_sym_8] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_9] = ACTIONS(540), + [anon_sym_absolutevalue] = ACTIONS(542), + [anon_sym_10] = ACTIONS(542), + [anon_sym_sqrt] = ACTIONS(542), + [anon_sym_11] = ACTIONS(542), + [anon_sym_sine] = ACTIONS(542), + [anon_sym_12] = ACTIONS(542), + [anon_sym_floor] = ACTIONS(542), + [anon_sym_13] = ACTIONS(542), + [anon_sym_ceiling] = ACTIONS(542), + [anon_sym_14] = ACTIONS(542), + [anon_sym_round] = ACTIONS(542), + [anon_sym_15] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_16] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(542), + [anon_sym_17] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(542), + [anon_sym_18] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_19] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_20] = ACTIONS(542), + [anon_sym_modulus] = ACTIONS(542), + [anon_sym_21] = ACTIONS(542), + [anon_sym_power] = ACTIONS(542), + [anon_sym_22] = ACTIONS(542), + [anon_sym_logarithm] = ACTIONS(542), + [anon_sym_23] = ACTIONS(542), + [anon_sym_minimum] = ACTIONS(542), + [anon_sym_24] = ACTIONS(542), + [anon_sym_maximum] = ACTIONS(542), + [anon_sym_25] = ACTIONS(542), + [anon_sym_atangent] = ACTIONS(542), + [anon_sym_26] = ACTIONS(542), + [anon_sym_length] = ACTIONS(542), + [anon_sym_27] = ACTIONS(542), + [anon_sym_shape] = ACTIONS(542), + [anon_sym_28] = ACTIONS(542), + [anon_sym_range] = ACTIONS(542), + [anon_sym_29] = ACTIONS(542), + [anon_sym_first] = ACTIONS(542), + [anon_sym_30] = ACTIONS(542), + [anon_sym_reverse] = ACTIONS(542), + [anon_sym_31] = ACTIONS(542), + [anon_sym_deshape] = ACTIONS(542), + [anon_sym_32] = ACTIONS(542), + [anon_sym_bits] = ACTIONS(542), + [anon_sym_33] = ACTIONS(542), + [anon_sym_transpose] = ACTIONS(542), + [anon_sym_34] = ACTIONS(542), + [anon_sym_rise] = ACTIONS(542), + [anon_sym_35] = ACTIONS(542), + [anon_sym_fall] = ACTIONS(542), + [anon_sym_36] = ACTIONS(542), + [anon_sym_where] = ACTIONS(542), + [anon_sym_37] = ACTIONS(542), + [anon_sym_classify] = ACTIONS(542), + [anon_sym_38] = ACTIONS(542), + [anon_sym_deduplicate] = ACTIONS(542), + [anon_sym_39] = ACTIONS(542), + [anon_sym_box] = ACTIONS(542), + [anon_sym_40] = ACTIONS(542), + [anon_sym_unbox] = ACTIONS(542), + [anon_sym_41] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_42] = ACTIONS(542), + [anon_sym_couple] = ACTIONS(542), + [anon_sym_43] = ACTIONS(542), + [anon_sym_join] = ACTIONS(542), + [anon_sym_44] = ACTIONS(542), + [anon_sym_select] = ACTIONS(542), + [anon_sym_45] = ACTIONS(542), + [anon_sym_pick] = ACTIONS(542), + [anon_sym_46] = ACTIONS(542), + [anon_sym_reshape] = ACTIONS(542), + [anon_sym_47] = ACTIONS(542), + [anon_sym_take] = ACTIONS(542), + [anon_sym_48] = ACTIONS(542), + [anon_sym_drop] = ACTIONS(542), + [anon_sym_49] = ACTIONS(542), + [anon_sym_rotate] = ACTIONS(542), + [anon_sym_50] = ACTIONS(542), + [anon_sym_windows] = ACTIONS(542), + [anon_sym_51] = ACTIONS(542), + [anon_sym_keep] = ACTIONS(542), + [anon_sym_52] = ACTIONS(542), + [anon_sym_find] = ACTIONS(542), + [anon_sym_53] = ACTIONS(542), + [anon_sym_member] = ACTIONS(542), + [anon_sym_54] = ACTIONS(542), + [anon_sym_indexof] = ACTIONS(542), + [anon_sym_55] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_56] = ACTIONS(542), + [anon_sym_wait] = ACTIONS(542), + [anon_sym_parse] = ACTIONS(542), + [anon_sym_random] = ACTIONS(542), + [anon_sym_57] = ACTIONS(542), + [anon_sym_gen] = ACTIONS(542), + [anon_sym_deal] = ACTIONS(542), + [anon_sym_tag] = ACTIONS(542), + [anon_sym_now] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_58] = ACTIONS(542), + [anon_sym_dump] = ACTIONS(542), + [anon_sym_regex] = ACTIONS(542), + [anon_sym_utf] = ACTIONS(542), + [anon_sym_send] = ACTIONS(542), + [anon_sym_recv] = ACTIONS(542), + [anon_sym_tryrecv] = ACTIONS(542), + [anon_sym_complex] = ACTIONS(542), + [anon_sym_59] = ACTIONS(542), + [anon_sym_rerank] = ACTIONS(542), + [anon_sym_60] = ACTIONS(542), + [anon_sym_fix] = ACTIONS(542), + [anon_sym_61] = ACTIONS(542), + [anon_sym_QMARK] = ACTIONS(542), + [anon_sym_reduce] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_scan] = ACTIONS(542), + [anon_sym_BSLASH] = ACTIONS(542), + [anon_sym_each] = ACTIONS(542), + [anon_sym_62] = ACTIONS(542), + [anon_sym_rows] = ACTIONS(542), + [anon_sym_63] = ACTIONS(542), + [anon_sym_repeat] = ACTIONS(542), + [anon_sym_64] = ACTIONS(542), + [anon_sym_dip] = ACTIONS(542), + [anon_sym_65] = ACTIONS(542), + [anon_sym_gap] = ACTIONS(542), + [anon_sym_66] = ACTIONS(542), + [anon_sym_invert] = ACTIONS(542), + [anon_sym_67] = ACTIONS(542), + [anon_sym_spawn] = ACTIONS(542), + [anon_sym_pack] = ACTIONS(542), + [anon_sym_68] = ACTIONS(542), + [anon_sym_rectify] = ACTIONS(542), + [anon_sym_69] = ACTIONS(542), + [anon_sym_this] = ACTIONS(542), + [anon_sym_70] = ACTIONS(542), + [anon_sym_recur] = ACTIONS(542), + [anon_sym_71] = ACTIONS(542), + [anon_sym_fold] = ACTIONS(542), + [anon_sym_72] = ACTIONS(542), + [anon_sym_table] = ACTIONS(542), + [anon_sym_73] = ACTIONS(542), + [anon_sym_cross] = ACTIONS(542), + [anon_sym_74] = ACTIONS(542), + [anon_sym_group] = ACTIONS(542), + [anon_sym_75] = ACTIONS(542), + [anon_sym_partition] = ACTIONS(542), + [anon_sym_76] = ACTIONS(542), + [anon_sym_both] = ACTIONS(542), + [anon_sym_77] = ACTIONS(542), + [anon_sym_bracket] = ACTIONS(542), + [anon_sym_78] = ACTIONS(542), + [anon_sym_fork] = ACTIONS(542), + [anon_sym_79] = ACTIONS(542), + [anon_sym_under] = ACTIONS(542), + [anon_sym_80] = ACTIONS(542), + [anon_sym_fill] = ACTIONS(542), + [anon_sym_81] = ACTIONS(542), + [anon_sym_try] = ACTIONS(540), + [anon_sym_82] = ACTIONS(542), + [anon_sym_do] = ACTIONS(540), + [anon_sym_83] = ACTIONS(542), + [anon_sym_all] = ACTIONS(542), + [anon_sym_84] = ACTIONS(542), + [anon_sym_setinv] = ACTIONS(542), + [anon_sym_setunder] = ACTIONS(542), + [anon_sym_85] = ACTIONS(542), + [anon_sym_86] = ACTIONS(542), + [anon_sym_87] = ACTIONS(542), + [anon_sym_88] = ACTIONS(542), + [anon_sym_89] = ACTIONS(542), + [anon_sym_90] = ACTIONS(542), + [anon_sym_91] = ACTIONS(542), + [anon_sym_92] = ACTIONS(542), + [sym__endOfLine] = ACTIONS(542), + }, + [140] = { + [ts_builtin_sym_end] = ACTIONS(546), + [aux_sym_number_token1] = ACTIONS(544), + [sym_fraction] = ACTIONS(546), + [anon_sym_os] = ACTIONS(544), + [anon_sym_Family] = ACTIONS(544), + [anon_sym_Arch] = ACTIONS(544), + [anon_sym_ExeExt] = ACTIONS(544), + [anon_sym_PllExt] = ACTIONS(544), + [anon_sym_Sep] = ACTIONS(544), + [anon_sym_NUmProcs] = ACTIONS(544), + [anon_sym_] = ACTIONS(546), + [aux_sym_character_token1] = ACTIONS(546), + [sym_string] = ACTIONS(546), + [sym_multiLineString] = ACTIONS(546), + [sym_identifier] = ACTIONS(544), + [sym_identifierDeprecated] = ACTIONS(544), + [sym_system] = ACTIONS(546), + [sym_comment] = ACTIONS(544), + [sym_openParen] = ACTIONS(546), + [sym_openCurly] = ACTIONS(546), + [sym_openBracket] = ACTIONS(546), + [sym_underscore] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(544), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(546), + [anon_sym_eta] = ACTIONS(546), + [anon_sym_2] = ACTIONS(544), + [anon_sym_pi] = ACTIONS(544), + [anon_sym_3] = ACTIONS(544), + [anon_sym_tau] = ACTIONS(546), + [anon_sym_4] = ACTIONS(544), + [anon_sym_infinity] = ACTIONS(546), + [anon_sym_5] = ACTIONS(546), + [anon_sym_e] = ACTIONS(544), + [anon_sym_NaN] = ACTIONS(544), + [anon_sym_NumProcs] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_identity] = ACTIONS(546), + [anon_sym_id] = ACTIONS(544), + [anon_sym_6] = ACTIONS(546), + [anon_sym_not] = ACTIONS(546), + [anon_sym_7] = ACTIONS(546), + [anon_sym_sign] = ACTIONS(546), + [anon_sym_8] = ACTIONS(546), + [anon_sym_BQUOTE] = ACTIONS(546), + [anon_sym_9] = ACTIONS(544), + [anon_sym_absolutevalue] = ACTIONS(546), + [anon_sym_10] = ACTIONS(546), + [anon_sym_sqrt] = ACTIONS(546), + [anon_sym_11] = ACTIONS(546), + [anon_sym_sine] = ACTIONS(546), + [anon_sym_12] = ACTIONS(546), + [anon_sym_floor] = ACTIONS(546), + [anon_sym_13] = ACTIONS(546), + [anon_sym_ceiling] = ACTIONS(546), + [anon_sym_14] = ACTIONS(546), + [anon_sym_round] = ACTIONS(546), + [anon_sym_15] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_16] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_17] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_18] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_19] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_20] = ACTIONS(546), + [anon_sym_modulus] = ACTIONS(546), + [anon_sym_21] = ACTIONS(546), + [anon_sym_power] = ACTIONS(546), + [anon_sym_22] = ACTIONS(546), + [anon_sym_logarithm] = ACTIONS(546), + [anon_sym_23] = ACTIONS(546), + [anon_sym_minimum] = ACTIONS(546), + [anon_sym_24] = ACTIONS(546), + [anon_sym_maximum] = ACTIONS(546), + [anon_sym_25] = ACTIONS(546), + [anon_sym_atangent] = ACTIONS(546), + [anon_sym_26] = ACTIONS(546), + [anon_sym_length] = ACTIONS(546), + [anon_sym_27] = ACTIONS(546), + [anon_sym_shape] = ACTIONS(546), + [anon_sym_28] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_29] = ACTIONS(546), + [anon_sym_first] = ACTIONS(546), + [anon_sym_30] = ACTIONS(546), + [anon_sym_reverse] = ACTIONS(546), + [anon_sym_31] = ACTIONS(546), + [anon_sym_deshape] = ACTIONS(546), + [anon_sym_32] = ACTIONS(546), + [anon_sym_bits] = ACTIONS(546), + [anon_sym_33] = ACTIONS(546), + [anon_sym_transpose] = ACTIONS(546), + [anon_sym_34] = ACTIONS(546), + [anon_sym_rise] = ACTIONS(546), + [anon_sym_35] = ACTIONS(546), + [anon_sym_fall] = ACTIONS(546), + [anon_sym_36] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_37] = ACTIONS(546), + [anon_sym_classify] = ACTIONS(546), + [anon_sym_38] = ACTIONS(546), + [anon_sym_deduplicate] = ACTIONS(546), + [anon_sym_39] = ACTIONS(546), + [anon_sym_box] = ACTIONS(546), + [anon_sym_40] = ACTIONS(546), + [anon_sym_unbox] = ACTIONS(546), + [anon_sym_41] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_42] = ACTIONS(546), + [anon_sym_couple] = ACTIONS(546), + [anon_sym_43] = ACTIONS(546), + [anon_sym_join] = ACTIONS(546), + [anon_sym_44] = ACTIONS(546), + [anon_sym_select] = ACTIONS(546), + [anon_sym_45] = ACTIONS(546), + [anon_sym_pick] = ACTIONS(546), + [anon_sym_46] = ACTIONS(546), + [anon_sym_reshape] = ACTIONS(546), + [anon_sym_47] = ACTIONS(546), + [anon_sym_take] = ACTIONS(546), + [anon_sym_48] = ACTIONS(546), + [anon_sym_drop] = ACTIONS(546), + [anon_sym_49] = ACTIONS(546), + [anon_sym_rotate] = ACTIONS(546), + [anon_sym_50] = ACTIONS(546), + [anon_sym_windows] = ACTIONS(546), + [anon_sym_51] = ACTIONS(546), + [anon_sym_keep] = ACTIONS(546), + [anon_sym_52] = ACTIONS(546), + [anon_sym_find] = ACTIONS(546), + [anon_sym_53] = ACTIONS(546), + [anon_sym_member] = ACTIONS(546), + [anon_sym_54] = ACTIONS(546), + [anon_sym_indexof] = ACTIONS(546), + [anon_sym_55] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_56] = ACTIONS(546), + [anon_sym_wait] = ACTIONS(546), + [anon_sym_parse] = ACTIONS(546), + [anon_sym_random] = ACTIONS(546), + [anon_sym_57] = ACTIONS(546), + [anon_sym_gen] = ACTIONS(546), + [anon_sym_deal] = ACTIONS(546), + [anon_sym_tag] = ACTIONS(546), + [anon_sym_now] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_58] = ACTIONS(546), + [anon_sym_dump] = ACTIONS(546), + [anon_sym_regex] = ACTIONS(546), + [anon_sym_utf] = ACTIONS(546), + [anon_sym_send] = ACTIONS(546), + [anon_sym_recv] = ACTIONS(546), + [anon_sym_tryrecv] = ACTIONS(546), + [anon_sym_complex] = ACTIONS(546), + [anon_sym_59] = ACTIONS(546), + [anon_sym_rerank] = ACTIONS(546), + [anon_sym_60] = ACTIONS(546), + [anon_sym_fix] = ACTIONS(546), + [anon_sym_61] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_scan] = ACTIONS(546), + [anon_sym_BSLASH] = ACTIONS(546), + [anon_sym_each] = ACTIONS(546), + [anon_sym_62] = ACTIONS(546), + [anon_sym_rows] = ACTIONS(546), + [anon_sym_63] = ACTIONS(546), + [anon_sym_repeat] = ACTIONS(546), + [anon_sym_64] = ACTIONS(546), + [anon_sym_dip] = ACTIONS(546), + [anon_sym_65] = ACTIONS(546), + [anon_sym_gap] = ACTIONS(546), + [anon_sym_66] = ACTIONS(546), + [anon_sym_invert] = ACTIONS(546), + [anon_sym_67] = ACTIONS(546), + [anon_sym_spawn] = ACTIONS(546), + [anon_sym_pack] = ACTIONS(546), + [anon_sym_68] = ACTIONS(546), + [anon_sym_rectify] = ACTIONS(546), + [anon_sym_69] = ACTIONS(546), + [anon_sym_this] = ACTIONS(546), + [anon_sym_70] = ACTIONS(546), + [anon_sym_recur] = ACTIONS(546), + [anon_sym_71] = ACTIONS(546), + [anon_sym_fold] = ACTIONS(546), + [anon_sym_72] = ACTIONS(546), + [anon_sym_table] = ACTIONS(546), + [anon_sym_73] = ACTIONS(546), + [anon_sym_cross] = ACTIONS(546), + [anon_sym_74] = ACTIONS(546), + [anon_sym_group] = ACTIONS(546), + [anon_sym_75] = ACTIONS(546), + [anon_sym_partition] = ACTIONS(546), + [anon_sym_76] = ACTIONS(546), + [anon_sym_both] = ACTIONS(546), + [anon_sym_77] = ACTIONS(546), + [anon_sym_bracket] = ACTIONS(546), + [anon_sym_78] = ACTIONS(546), + [anon_sym_fork] = ACTIONS(546), + [anon_sym_79] = ACTIONS(546), + [anon_sym_under] = ACTIONS(546), + [anon_sym_80] = ACTIONS(546), + [anon_sym_fill] = ACTIONS(546), + [anon_sym_81] = ACTIONS(546), + [anon_sym_try] = ACTIONS(544), + [anon_sym_82] = ACTIONS(546), + [anon_sym_do] = ACTIONS(544), + [anon_sym_83] = ACTIONS(546), + [anon_sym_all] = ACTIONS(546), + [anon_sym_84] = ACTIONS(546), + [anon_sym_setinv] = ACTIONS(546), + [anon_sym_setunder] = ACTIONS(546), + [anon_sym_85] = ACTIONS(546), + [anon_sym_86] = ACTIONS(546), + [anon_sym_87] = ACTIONS(546), + [anon_sym_88] = ACTIONS(546), + [anon_sym_89] = ACTIONS(546), + [anon_sym_90] = ACTIONS(546), + [anon_sym_91] = ACTIONS(546), + [anon_sym_92] = ACTIONS(546), + [sym__endOfLine] = ACTIONS(546), + }, + [141] = { + [ts_builtin_sym_end] = ACTIONS(550), + [aux_sym_number_token1] = ACTIONS(548), + [sym_fraction] = ACTIONS(550), + [anon_sym_os] = ACTIONS(548), + [anon_sym_Family] = ACTIONS(548), + [anon_sym_Arch] = ACTIONS(548), + [anon_sym_ExeExt] = ACTIONS(548), + [anon_sym_PllExt] = ACTIONS(548), + [anon_sym_Sep] = ACTIONS(548), + [anon_sym_NUmProcs] = ACTIONS(548), + [anon_sym_] = ACTIONS(550), + [aux_sym_character_token1] = ACTIONS(550), + [sym_string] = ACTIONS(550), + [sym_multiLineString] = ACTIONS(550), + [sym_identifier] = ACTIONS(548), + [sym_identifierDeprecated] = ACTIONS(548), + [sym_system] = ACTIONS(550), + [sym_comment] = ACTIONS(548), + [sym_openParen] = ACTIONS(550), + [sym_openCurly] = ACTIONS(550), + [sym_openBracket] = ACTIONS(550), + [sym_underscore] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(550), + [anon_sym_eta] = ACTIONS(550), + [anon_sym_2] = ACTIONS(548), + [anon_sym_pi] = ACTIONS(548), + [anon_sym_3] = ACTIONS(548), + [anon_sym_tau] = ACTIONS(550), + [anon_sym_4] = ACTIONS(548), + [anon_sym_infinity] = ACTIONS(550), + [anon_sym_5] = ACTIONS(550), + [anon_sym_e] = ACTIONS(548), + [anon_sym_NaN] = ACTIONS(548), + [anon_sym_NumProcs] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_identity] = ACTIONS(550), + [anon_sym_id] = ACTIONS(548), + [anon_sym_6] = ACTIONS(550), + [anon_sym_not] = ACTIONS(550), + [anon_sym_7] = ACTIONS(550), + [anon_sym_sign] = ACTIONS(550), + [anon_sym_8] = ACTIONS(550), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_9] = ACTIONS(548), + [anon_sym_absolutevalue] = ACTIONS(550), + [anon_sym_10] = ACTIONS(550), + [anon_sym_sqrt] = ACTIONS(550), + [anon_sym_11] = ACTIONS(550), + [anon_sym_sine] = ACTIONS(550), + [anon_sym_12] = ACTIONS(550), + [anon_sym_floor] = ACTIONS(550), + [anon_sym_13] = ACTIONS(550), + [anon_sym_ceiling] = ACTIONS(550), + [anon_sym_14] = ACTIONS(550), + [anon_sym_round] = ACTIONS(550), + [anon_sym_15] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_16] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_17] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_18] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_19] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_20] = ACTIONS(550), + [anon_sym_modulus] = ACTIONS(550), + [anon_sym_21] = ACTIONS(550), + [anon_sym_power] = ACTIONS(550), + [anon_sym_22] = ACTIONS(550), + [anon_sym_logarithm] = ACTIONS(550), + [anon_sym_23] = ACTIONS(550), + [anon_sym_minimum] = ACTIONS(550), + [anon_sym_24] = ACTIONS(550), + [anon_sym_maximum] = ACTIONS(550), + [anon_sym_25] = ACTIONS(550), + [anon_sym_atangent] = ACTIONS(550), + [anon_sym_26] = ACTIONS(550), + [anon_sym_length] = ACTIONS(550), + [anon_sym_27] = ACTIONS(550), + [anon_sym_shape] = ACTIONS(550), + [anon_sym_28] = ACTIONS(550), + [anon_sym_range] = ACTIONS(550), + [anon_sym_29] = ACTIONS(550), + [anon_sym_first] = ACTIONS(550), + [anon_sym_30] = ACTIONS(550), + [anon_sym_reverse] = ACTIONS(550), + [anon_sym_31] = ACTIONS(550), + [anon_sym_deshape] = ACTIONS(550), + [anon_sym_32] = ACTIONS(550), + [anon_sym_bits] = ACTIONS(550), + [anon_sym_33] = ACTIONS(550), + [anon_sym_transpose] = ACTIONS(550), + [anon_sym_34] = ACTIONS(550), + [anon_sym_rise] = ACTIONS(550), + [anon_sym_35] = ACTIONS(550), + [anon_sym_fall] = ACTIONS(550), + [anon_sym_36] = ACTIONS(550), + [anon_sym_where] = ACTIONS(550), + [anon_sym_37] = ACTIONS(550), + [anon_sym_classify] = ACTIONS(550), + [anon_sym_38] = ACTIONS(550), + [anon_sym_deduplicate] = ACTIONS(550), + [anon_sym_39] = ACTIONS(550), + [anon_sym_box] = ACTIONS(550), + [anon_sym_40] = ACTIONS(550), + [anon_sym_unbox] = ACTIONS(550), + [anon_sym_41] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_42] = ACTIONS(550), + [anon_sym_couple] = ACTIONS(550), + [anon_sym_43] = ACTIONS(550), + [anon_sym_join] = ACTIONS(550), + [anon_sym_44] = ACTIONS(550), + [anon_sym_select] = ACTIONS(550), + [anon_sym_45] = ACTIONS(550), + [anon_sym_pick] = ACTIONS(550), + [anon_sym_46] = ACTIONS(550), + [anon_sym_reshape] = ACTIONS(550), + [anon_sym_47] = ACTIONS(550), + [anon_sym_take] = ACTIONS(550), + [anon_sym_48] = ACTIONS(550), + [anon_sym_drop] = ACTIONS(550), + [anon_sym_49] = ACTIONS(550), + [anon_sym_rotate] = ACTIONS(550), + [anon_sym_50] = ACTIONS(550), + [anon_sym_windows] = ACTIONS(550), + [anon_sym_51] = ACTIONS(550), + [anon_sym_keep] = ACTIONS(550), + [anon_sym_52] = ACTIONS(550), + [anon_sym_find] = ACTIONS(550), + [anon_sym_53] = ACTIONS(550), + [anon_sym_member] = ACTIONS(550), + [anon_sym_54] = ACTIONS(550), + [anon_sym_indexof] = ACTIONS(550), + [anon_sym_55] = ACTIONS(550), + [anon_sym_assert] = ACTIONS(550), + [anon_sym_56] = ACTIONS(550), + [anon_sym_wait] = ACTIONS(550), + [anon_sym_parse] = ACTIONS(550), + [anon_sym_random] = ACTIONS(550), + [anon_sym_57] = ACTIONS(550), + [anon_sym_gen] = ACTIONS(550), + [anon_sym_deal] = ACTIONS(550), + [anon_sym_tag] = ACTIONS(550), + [anon_sym_now] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_58] = ACTIONS(550), + [anon_sym_dump] = ACTIONS(550), + [anon_sym_regex] = ACTIONS(550), + [anon_sym_utf] = ACTIONS(550), + [anon_sym_send] = ACTIONS(550), + [anon_sym_recv] = ACTIONS(550), + [anon_sym_tryrecv] = ACTIONS(550), + [anon_sym_complex] = ACTIONS(550), + [anon_sym_59] = ACTIONS(550), + [anon_sym_rerank] = ACTIONS(550), + [anon_sym_60] = ACTIONS(550), + [anon_sym_fix] = ACTIONS(550), + [anon_sym_61] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_reduce] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_scan] = ACTIONS(550), + [anon_sym_BSLASH] = ACTIONS(550), + [anon_sym_each] = ACTIONS(550), + [anon_sym_62] = ACTIONS(550), + [anon_sym_rows] = ACTIONS(550), + [anon_sym_63] = ACTIONS(550), + [anon_sym_repeat] = ACTIONS(550), + [anon_sym_64] = ACTIONS(550), + [anon_sym_dip] = ACTIONS(550), + [anon_sym_65] = ACTIONS(550), + [anon_sym_gap] = ACTIONS(550), + [anon_sym_66] = ACTIONS(550), + [anon_sym_invert] = ACTIONS(550), + [anon_sym_67] = ACTIONS(550), + [anon_sym_spawn] = ACTIONS(550), + [anon_sym_pack] = ACTIONS(550), + [anon_sym_68] = ACTIONS(550), + [anon_sym_rectify] = ACTIONS(550), + [anon_sym_69] = ACTIONS(550), + [anon_sym_this] = ACTIONS(550), + [anon_sym_70] = ACTIONS(550), + [anon_sym_recur] = ACTIONS(550), + [anon_sym_71] = ACTIONS(550), + [anon_sym_fold] = ACTIONS(550), + [anon_sym_72] = ACTIONS(550), + [anon_sym_table] = ACTIONS(550), + [anon_sym_73] = ACTIONS(550), + [anon_sym_cross] = ACTIONS(550), + [anon_sym_74] = ACTIONS(550), + [anon_sym_group] = ACTIONS(550), + [anon_sym_75] = ACTIONS(550), + [anon_sym_partition] = ACTIONS(550), + [anon_sym_76] = ACTIONS(550), + [anon_sym_both] = ACTIONS(550), + [anon_sym_77] = ACTIONS(550), + [anon_sym_bracket] = ACTIONS(550), + [anon_sym_78] = ACTIONS(550), + [anon_sym_fork] = ACTIONS(550), + [anon_sym_79] = ACTIONS(550), + [anon_sym_under] = ACTIONS(550), + [anon_sym_80] = ACTIONS(550), + [anon_sym_fill] = ACTIONS(550), + [anon_sym_81] = ACTIONS(550), + [anon_sym_try] = ACTIONS(548), + [anon_sym_82] = ACTIONS(550), + [anon_sym_do] = ACTIONS(548), + [anon_sym_83] = ACTIONS(550), + [anon_sym_all] = ACTIONS(550), + [anon_sym_84] = ACTIONS(550), + [anon_sym_setinv] = ACTIONS(550), + [anon_sym_setunder] = ACTIONS(550), + [anon_sym_85] = ACTIONS(550), + [anon_sym_86] = ACTIONS(550), + [anon_sym_87] = ACTIONS(550), + [anon_sym_88] = ACTIONS(550), + [anon_sym_89] = ACTIONS(550), + [anon_sym_90] = ACTIONS(550), + [anon_sym_91] = ACTIONS(550), + [anon_sym_92] = ACTIONS(550), + [sym__endOfLine] = ACTIONS(550), + }, + [142] = { + [ts_builtin_sym_end] = ACTIONS(554), + [aux_sym_number_token1] = ACTIONS(552), + [sym_fraction] = ACTIONS(554), + [anon_sym_os] = ACTIONS(552), + [anon_sym_Family] = ACTIONS(552), + [anon_sym_Arch] = ACTIONS(552), + [anon_sym_ExeExt] = ACTIONS(552), + [anon_sym_PllExt] = ACTIONS(552), + [anon_sym_Sep] = ACTIONS(552), + [anon_sym_NUmProcs] = ACTIONS(552), + [anon_sym_] = ACTIONS(554), + [aux_sym_character_token1] = ACTIONS(554), + [sym_string] = ACTIONS(554), + [sym_multiLineString] = ACTIONS(554), + [sym_identifier] = ACTIONS(552), + [sym_identifierDeprecated] = ACTIONS(552), + [sym_system] = ACTIONS(554), + [sym_comment] = ACTIONS(552), + [sym_openParen] = ACTIONS(554), + [sym_openCurly] = ACTIONS(554), + [sym_openBracket] = ACTIONS(554), + [sym_underscore] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(554), + [anon_sym_eta] = ACTIONS(554), + [anon_sym_2] = ACTIONS(552), + [anon_sym_pi] = ACTIONS(552), + [anon_sym_3] = ACTIONS(552), + [anon_sym_tau] = ACTIONS(554), + [anon_sym_4] = ACTIONS(552), + [anon_sym_infinity] = ACTIONS(554), + [anon_sym_5] = ACTIONS(554), + [anon_sym_e] = ACTIONS(552), + [anon_sym_NaN] = ACTIONS(552), + [anon_sym_NumProcs] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_identity] = ACTIONS(554), + [anon_sym_id] = ACTIONS(552), + [anon_sym_6] = ACTIONS(554), + [anon_sym_not] = ACTIONS(554), + [anon_sym_7] = ACTIONS(554), + [anon_sym_sign] = ACTIONS(554), + [anon_sym_8] = ACTIONS(554), + [anon_sym_BQUOTE] = ACTIONS(554), + [anon_sym_9] = ACTIONS(552), + [anon_sym_absolutevalue] = ACTIONS(554), + [anon_sym_10] = ACTIONS(554), + [anon_sym_sqrt] = ACTIONS(554), + [anon_sym_11] = ACTIONS(554), + [anon_sym_sine] = ACTIONS(554), + [anon_sym_12] = ACTIONS(554), + [anon_sym_floor] = ACTIONS(554), + [anon_sym_13] = ACTIONS(554), + [anon_sym_ceiling] = ACTIONS(554), + [anon_sym_14] = ACTIONS(554), + [anon_sym_round] = ACTIONS(554), + [anon_sym_15] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_16] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_17] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_18] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_19] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_20] = ACTIONS(554), + [anon_sym_modulus] = ACTIONS(554), + [anon_sym_21] = ACTIONS(554), + [anon_sym_power] = ACTIONS(554), + [anon_sym_22] = ACTIONS(554), + [anon_sym_logarithm] = ACTIONS(554), + [anon_sym_23] = ACTIONS(554), + [anon_sym_minimum] = ACTIONS(554), + [anon_sym_24] = ACTIONS(554), + [anon_sym_maximum] = ACTIONS(554), + [anon_sym_25] = ACTIONS(554), + [anon_sym_atangent] = ACTIONS(554), + [anon_sym_26] = ACTIONS(554), + [anon_sym_length] = ACTIONS(554), + [anon_sym_27] = ACTIONS(554), + [anon_sym_shape] = ACTIONS(554), + [anon_sym_28] = ACTIONS(554), + [anon_sym_range] = ACTIONS(554), + [anon_sym_29] = ACTIONS(554), + [anon_sym_first] = ACTIONS(554), + [anon_sym_30] = ACTIONS(554), + [anon_sym_reverse] = ACTIONS(554), + [anon_sym_31] = ACTIONS(554), + [anon_sym_deshape] = ACTIONS(554), + [anon_sym_32] = ACTIONS(554), + [anon_sym_bits] = ACTIONS(554), + [anon_sym_33] = ACTIONS(554), + [anon_sym_transpose] = ACTIONS(554), + [anon_sym_34] = ACTIONS(554), + [anon_sym_rise] = ACTIONS(554), + [anon_sym_35] = ACTIONS(554), + [anon_sym_fall] = ACTIONS(554), + [anon_sym_36] = ACTIONS(554), + [anon_sym_where] = ACTIONS(554), + [anon_sym_37] = ACTIONS(554), + [anon_sym_classify] = ACTIONS(554), + [anon_sym_38] = ACTIONS(554), + [anon_sym_deduplicate] = ACTIONS(554), + [anon_sym_39] = ACTIONS(554), + [anon_sym_box] = ACTIONS(554), + [anon_sym_40] = ACTIONS(554), + [anon_sym_unbox] = ACTIONS(554), + [anon_sym_41] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [anon_sym_42] = ACTIONS(554), + [anon_sym_couple] = ACTIONS(554), + [anon_sym_43] = ACTIONS(554), + [anon_sym_join] = ACTIONS(554), + [anon_sym_44] = ACTIONS(554), + [anon_sym_select] = ACTIONS(554), + [anon_sym_45] = ACTIONS(554), + [anon_sym_pick] = ACTIONS(554), + [anon_sym_46] = ACTIONS(554), + [anon_sym_reshape] = ACTIONS(554), + [anon_sym_47] = ACTIONS(554), + [anon_sym_take] = ACTIONS(554), + [anon_sym_48] = ACTIONS(554), + [anon_sym_drop] = ACTIONS(554), + [anon_sym_49] = ACTIONS(554), + [anon_sym_rotate] = ACTIONS(554), + [anon_sym_50] = ACTIONS(554), + [anon_sym_windows] = ACTIONS(554), + [anon_sym_51] = ACTIONS(554), + [anon_sym_keep] = ACTIONS(554), + [anon_sym_52] = ACTIONS(554), + [anon_sym_find] = ACTIONS(554), + [anon_sym_53] = ACTIONS(554), + [anon_sym_member] = ACTIONS(554), + [anon_sym_54] = ACTIONS(554), + [anon_sym_indexof] = ACTIONS(554), + [anon_sym_55] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(554), + [anon_sym_56] = ACTIONS(554), + [anon_sym_wait] = ACTIONS(554), + [anon_sym_parse] = ACTIONS(554), + [anon_sym_random] = ACTIONS(554), + [anon_sym_57] = ACTIONS(554), + [anon_sym_gen] = ACTIONS(554), + [anon_sym_deal] = ACTIONS(554), + [anon_sym_tag] = ACTIONS(554), + [anon_sym_now] = ACTIONS(554), + [anon_sym_type] = ACTIONS(554), + [anon_sym_58] = ACTIONS(554), + [anon_sym_dump] = ACTIONS(554), + [anon_sym_regex] = ACTIONS(554), + [anon_sym_utf] = ACTIONS(554), + [anon_sym_send] = ACTIONS(554), + [anon_sym_recv] = ACTIONS(554), + [anon_sym_tryrecv] = ACTIONS(554), + [anon_sym_complex] = ACTIONS(554), + [anon_sym_59] = ACTIONS(554), + [anon_sym_rerank] = ACTIONS(554), + [anon_sym_60] = ACTIONS(554), + [anon_sym_fix] = ACTIONS(554), + [anon_sym_61] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_reduce] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_scan] = ACTIONS(554), + [anon_sym_BSLASH] = ACTIONS(554), + [anon_sym_each] = ACTIONS(554), + [anon_sym_62] = ACTIONS(554), + [anon_sym_rows] = ACTIONS(554), + [anon_sym_63] = ACTIONS(554), + [anon_sym_repeat] = ACTIONS(554), + [anon_sym_64] = ACTIONS(554), + [anon_sym_dip] = ACTIONS(554), + [anon_sym_65] = ACTIONS(554), + [anon_sym_gap] = ACTIONS(554), + [anon_sym_66] = ACTIONS(554), + [anon_sym_invert] = ACTIONS(554), + [anon_sym_67] = ACTIONS(554), + [anon_sym_spawn] = ACTIONS(554), + [anon_sym_pack] = ACTIONS(554), + [anon_sym_68] = ACTIONS(554), + [anon_sym_rectify] = ACTIONS(554), + [anon_sym_69] = ACTIONS(554), + [anon_sym_this] = ACTIONS(554), + [anon_sym_70] = ACTIONS(554), + [anon_sym_recur] = ACTIONS(554), + [anon_sym_71] = ACTIONS(554), + [anon_sym_fold] = ACTIONS(554), + [anon_sym_72] = ACTIONS(554), + [anon_sym_table] = ACTIONS(554), + [anon_sym_73] = ACTIONS(554), + [anon_sym_cross] = ACTIONS(554), + [anon_sym_74] = ACTIONS(554), + [anon_sym_group] = ACTIONS(554), + [anon_sym_75] = ACTIONS(554), + [anon_sym_partition] = ACTIONS(554), + [anon_sym_76] = ACTIONS(554), + [anon_sym_both] = ACTIONS(554), + [anon_sym_77] = ACTIONS(554), + [anon_sym_bracket] = ACTIONS(554), + [anon_sym_78] = ACTIONS(554), + [anon_sym_fork] = ACTIONS(554), + [anon_sym_79] = ACTIONS(554), + [anon_sym_under] = ACTIONS(554), + [anon_sym_80] = ACTIONS(554), + [anon_sym_fill] = ACTIONS(554), + [anon_sym_81] = ACTIONS(554), + [anon_sym_try] = ACTIONS(552), + [anon_sym_82] = ACTIONS(554), + [anon_sym_do] = ACTIONS(552), + [anon_sym_83] = ACTIONS(554), + [anon_sym_all] = ACTIONS(554), + [anon_sym_84] = ACTIONS(554), + [anon_sym_setinv] = ACTIONS(554), + [anon_sym_setunder] = ACTIONS(554), + [anon_sym_85] = ACTIONS(554), + [anon_sym_86] = ACTIONS(554), + [anon_sym_87] = ACTIONS(554), + [anon_sym_88] = ACTIONS(554), + [anon_sym_89] = ACTIONS(554), + [anon_sym_90] = ACTIONS(554), + [anon_sym_91] = ACTIONS(554), + [anon_sym_92] = ACTIONS(554), + [sym__endOfLine] = ACTIONS(554), + }, + [143] = { + [ts_builtin_sym_end] = ACTIONS(478), + [aux_sym_number_token1] = ACTIONS(476), + [sym_fraction] = ACTIONS(478), + [anon_sym_os] = ACTIONS(476), + [anon_sym_Family] = ACTIONS(476), + [anon_sym_Arch] = ACTIONS(476), + [anon_sym_ExeExt] = ACTIONS(476), + [anon_sym_PllExt] = ACTIONS(476), + [anon_sym_Sep] = ACTIONS(476), + [anon_sym_NUmProcs] = ACTIONS(476), + [anon_sym_] = ACTIONS(478), + [aux_sym_character_token1] = ACTIONS(478), + [sym_string] = ACTIONS(478), + [sym_multiLineString] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), + [sym_identifierDeprecated] = ACTIONS(476), + [sym_system] = ACTIONS(478), + [sym_comment] = ACTIONS(476), + [sym_openParen] = ACTIONS(478), + [sym_openCurly] = ACTIONS(478), + [sym_openBracket] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(478), + [anon_sym_eta] = ACTIONS(478), + [anon_sym_2] = ACTIONS(476), + [anon_sym_pi] = ACTIONS(476), + [anon_sym_3] = ACTIONS(476), + [anon_sym_tau] = ACTIONS(478), + [anon_sym_4] = ACTIONS(476), + [anon_sym_infinity] = ACTIONS(478), + [anon_sym_5] = ACTIONS(478), + [anon_sym_e] = ACTIONS(476), + [anon_sym_NaN] = ACTIONS(476), + [anon_sym_NumProcs] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_identity] = ACTIONS(478), + [anon_sym_id] = ACTIONS(476), + [anon_sym_6] = ACTIONS(478), + [anon_sym_not] = ACTIONS(478), + [anon_sym_7] = ACTIONS(478), + [anon_sym_sign] = ACTIONS(478), + [anon_sym_8] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_9] = ACTIONS(476), + [anon_sym_absolutevalue] = ACTIONS(478), + [anon_sym_10] = ACTIONS(478), + [anon_sym_sqrt] = ACTIONS(478), + [anon_sym_11] = ACTIONS(478), + [anon_sym_sine] = ACTIONS(478), + [anon_sym_12] = ACTIONS(478), + [anon_sym_floor] = ACTIONS(478), + [anon_sym_13] = ACTIONS(478), + [anon_sym_ceiling] = ACTIONS(478), + [anon_sym_14] = ACTIONS(478), + [anon_sym_round] = ACTIONS(478), + [anon_sym_15] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_16] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_17] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_18] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_19] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_20] = ACTIONS(478), + [anon_sym_modulus] = ACTIONS(478), + [anon_sym_21] = ACTIONS(478), + [anon_sym_power] = ACTIONS(478), + [anon_sym_22] = ACTIONS(478), + [anon_sym_logarithm] = ACTIONS(478), + [anon_sym_23] = ACTIONS(478), + [anon_sym_minimum] = ACTIONS(478), + [anon_sym_24] = ACTIONS(478), + [anon_sym_maximum] = ACTIONS(478), + [anon_sym_25] = ACTIONS(478), + [anon_sym_atangent] = ACTIONS(478), + [anon_sym_26] = ACTIONS(478), + [anon_sym_length] = ACTIONS(478), + [anon_sym_27] = ACTIONS(478), + [anon_sym_shape] = ACTIONS(478), + [anon_sym_28] = ACTIONS(478), + [anon_sym_range] = ACTIONS(478), + [anon_sym_29] = ACTIONS(478), + [anon_sym_first] = ACTIONS(478), + [anon_sym_30] = ACTIONS(478), + [anon_sym_reverse] = ACTIONS(478), + [anon_sym_31] = ACTIONS(478), + [anon_sym_deshape] = ACTIONS(478), + [anon_sym_32] = ACTIONS(478), + [anon_sym_bits] = ACTIONS(478), + [anon_sym_33] = ACTIONS(478), + [anon_sym_transpose] = ACTIONS(478), + [anon_sym_34] = ACTIONS(478), + [anon_sym_rise] = ACTIONS(478), + [anon_sym_35] = ACTIONS(478), + [anon_sym_fall] = ACTIONS(478), + [anon_sym_36] = ACTIONS(478), + [anon_sym_where] = ACTIONS(478), + [anon_sym_37] = ACTIONS(478), + [anon_sym_classify] = ACTIONS(478), + [anon_sym_38] = ACTIONS(478), + [anon_sym_deduplicate] = ACTIONS(478), + [anon_sym_39] = ACTIONS(478), + [anon_sym_box] = ACTIONS(478), + [anon_sym_40] = ACTIONS(478), + [anon_sym_unbox] = ACTIONS(478), + [anon_sym_41] = ACTIONS(478), + [anon_sym_match] = ACTIONS(478), + [anon_sym_42] = ACTIONS(478), + [anon_sym_couple] = ACTIONS(478), + [anon_sym_43] = ACTIONS(478), + [anon_sym_join] = ACTIONS(478), + [anon_sym_44] = ACTIONS(478), + [anon_sym_select] = ACTIONS(478), + [anon_sym_45] = ACTIONS(478), + [anon_sym_pick] = ACTIONS(478), + [anon_sym_46] = ACTIONS(478), + [anon_sym_reshape] = ACTIONS(478), + [anon_sym_47] = ACTIONS(478), + [anon_sym_take] = ACTIONS(478), + [anon_sym_48] = ACTIONS(478), + [anon_sym_drop] = ACTIONS(478), + [anon_sym_49] = ACTIONS(478), + [anon_sym_rotate] = ACTIONS(478), + [anon_sym_50] = ACTIONS(478), + [anon_sym_windows] = ACTIONS(478), + [anon_sym_51] = ACTIONS(478), + [anon_sym_keep] = ACTIONS(478), + [anon_sym_52] = ACTIONS(478), + [anon_sym_find] = ACTIONS(478), + [anon_sym_53] = ACTIONS(478), + [anon_sym_member] = ACTIONS(478), + [anon_sym_54] = ACTIONS(478), + [anon_sym_indexof] = ACTIONS(478), + [anon_sym_55] = ACTIONS(478), + [anon_sym_assert] = ACTIONS(478), + [anon_sym_56] = ACTIONS(478), + [anon_sym_wait] = ACTIONS(478), + [anon_sym_parse] = ACTIONS(478), + [anon_sym_random] = ACTIONS(478), + [anon_sym_57] = ACTIONS(478), + [anon_sym_gen] = ACTIONS(478), + [anon_sym_deal] = ACTIONS(478), + [anon_sym_tag] = ACTIONS(478), + [anon_sym_now] = ACTIONS(478), + [anon_sym_type] = ACTIONS(478), + [anon_sym_58] = ACTIONS(478), + [anon_sym_dump] = ACTIONS(478), + [anon_sym_regex] = ACTIONS(478), + [anon_sym_utf] = ACTIONS(478), + [anon_sym_send] = ACTIONS(478), + [anon_sym_recv] = ACTIONS(478), + [anon_sym_tryrecv] = ACTIONS(478), + [anon_sym_complex] = ACTIONS(478), + [anon_sym_59] = ACTIONS(478), + [anon_sym_rerank] = ACTIONS(478), + [anon_sym_60] = ACTIONS(478), + [anon_sym_fix] = ACTIONS(478), + [anon_sym_61] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_reduce] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_scan] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(478), + [anon_sym_each] = ACTIONS(478), + [anon_sym_62] = ACTIONS(478), + [anon_sym_rows] = ACTIONS(478), + [anon_sym_63] = ACTIONS(478), + [anon_sym_repeat] = ACTIONS(478), + [anon_sym_64] = ACTIONS(478), + [anon_sym_dip] = ACTIONS(478), + [anon_sym_65] = ACTIONS(478), + [anon_sym_gap] = ACTIONS(478), + [anon_sym_66] = ACTIONS(478), + [anon_sym_invert] = ACTIONS(478), + [anon_sym_67] = ACTIONS(478), + [anon_sym_spawn] = ACTIONS(478), + [anon_sym_pack] = ACTIONS(478), + [anon_sym_68] = ACTIONS(478), + [anon_sym_rectify] = ACTIONS(478), + [anon_sym_69] = ACTIONS(478), + [anon_sym_this] = ACTIONS(478), + [anon_sym_70] = ACTIONS(478), + [anon_sym_recur] = ACTIONS(478), + [anon_sym_71] = ACTIONS(478), + [anon_sym_fold] = ACTIONS(478), + [anon_sym_72] = ACTIONS(478), + [anon_sym_table] = ACTIONS(478), + [anon_sym_73] = ACTIONS(478), + [anon_sym_cross] = ACTIONS(478), + [anon_sym_74] = ACTIONS(478), + [anon_sym_group] = ACTIONS(478), + [anon_sym_75] = ACTIONS(478), + [anon_sym_partition] = ACTIONS(478), + [anon_sym_76] = ACTIONS(478), + [anon_sym_both] = ACTIONS(478), + [anon_sym_77] = ACTIONS(478), + [anon_sym_bracket] = ACTIONS(478), + [anon_sym_78] = ACTIONS(478), + [anon_sym_fork] = ACTIONS(478), + [anon_sym_79] = ACTIONS(478), + [anon_sym_under] = ACTIONS(478), + [anon_sym_80] = ACTIONS(478), + [anon_sym_fill] = ACTIONS(478), + [anon_sym_81] = ACTIONS(478), + [anon_sym_try] = ACTIONS(476), + [anon_sym_82] = ACTIONS(478), + [anon_sym_do] = ACTIONS(476), + [anon_sym_83] = ACTIONS(478), + [anon_sym_all] = ACTIONS(478), + [anon_sym_84] = ACTIONS(478), + [anon_sym_setinv] = ACTIONS(478), + [anon_sym_setunder] = ACTIONS(478), + [anon_sym_85] = ACTIONS(478), + [anon_sym_86] = ACTIONS(478), + [anon_sym_87] = ACTIONS(478), + [anon_sym_88] = ACTIONS(478), + [anon_sym_89] = ACTIONS(478), + [anon_sym_90] = ACTIONS(478), + [anon_sym_91] = ACTIONS(478), + [anon_sym_92] = ACTIONS(478), + [sym__endOfLine] = ACTIONS(478), + }, + [144] = { + [ts_builtin_sym_end] = ACTIONS(562), + [aux_sym_number_token1] = ACTIONS(560), + [sym_fraction] = ACTIONS(562), + [anon_sym_os] = ACTIONS(560), + [anon_sym_Family] = ACTIONS(560), + [anon_sym_Arch] = ACTIONS(560), + [anon_sym_ExeExt] = ACTIONS(560), + [anon_sym_PllExt] = ACTIONS(560), + [anon_sym_Sep] = ACTIONS(560), + [anon_sym_NUmProcs] = ACTIONS(560), + [anon_sym_] = ACTIONS(562), + [aux_sym_character_token1] = ACTIONS(562), + [sym_string] = ACTIONS(562), + [sym_multiLineString] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), + [sym_identifierDeprecated] = ACTIONS(560), + [sym_system] = ACTIONS(562), + [sym_comment] = ACTIONS(560), + [sym_openParen] = ACTIONS(562), + [sym_openCurly] = ACTIONS(562), + [sym_openBracket] = ACTIONS(562), + [sym_underscore] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(562), + [anon_sym_eta] = ACTIONS(562), + [anon_sym_2] = ACTIONS(560), + [anon_sym_pi] = ACTIONS(560), + [anon_sym_3] = ACTIONS(560), + [anon_sym_tau] = ACTIONS(562), + [anon_sym_4] = ACTIONS(560), + [anon_sym_infinity] = ACTIONS(562), + [anon_sym_5] = ACTIONS(562), + [anon_sym_e] = ACTIONS(560), + [anon_sym_NaN] = ACTIONS(560), + [anon_sym_NumProcs] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_identity] = ACTIONS(562), + [anon_sym_id] = ACTIONS(560), + [anon_sym_6] = ACTIONS(562), + [anon_sym_not] = ACTIONS(562), + [anon_sym_7] = ACTIONS(562), + [anon_sym_sign] = ACTIONS(562), + [anon_sym_8] = ACTIONS(562), + [anon_sym_BQUOTE] = ACTIONS(562), + [anon_sym_9] = ACTIONS(560), + [anon_sym_absolutevalue] = ACTIONS(562), + [anon_sym_10] = ACTIONS(562), + [anon_sym_sqrt] = ACTIONS(562), + [anon_sym_11] = ACTIONS(562), + [anon_sym_sine] = ACTIONS(562), + [anon_sym_12] = ACTIONS(562), + [anon_sym_floor] = ACTIONS(562), + [anon_sym_13] = ACTIONS(562), + [anon_sym_ceiling] = ACTIONS(562), + [anon_sym_14] = ACTIONS(562), + [anon_sym_round] = ACTIONS(562), + [anon_sym_15] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_16] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_17] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_18] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_19] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_20] = ACTIONS(562), + [anon_sym_modulus] = ACTIONS(562), + [anon_sym_21] = ACTIONS(562), + [anon_sym_power] = ACTIONS(562), + [anon_sym_22] = ACTIONS(562), + [anon_sym_logarithm] = ACTIONS(562), + [anon_sym_23] = ACTIONS(562), + [anon_sym_minimum] = ACTIONS(562), + [anon_sym_24] = ACTIONS(562), + [anon_sym_maximum] = ACTIONS(562), + [anon_sym_25] = ACTIONS(562), + [anon_sym_atangent] = ACTIONS(562), + [anon_sym_26] = ACTIONS(562), + [anon_sym_length] = ACTIONS(562), + [anon_sym_27] = ACTIONS(562), + [anon_sym_shape] = ACTIONS(562), + [anon_sym_28] = ACTIONS(562), + [anon_sym_range] = ACTIONS(562), + [anon_sym_29] = ACTIONS(562), + [anon_sym_first] = ACTIONS(562), + [anon_sym_30] = ACTIONS(562), + [anon_sym_reverse] = ACTIONS(562), + [anon_sym_31] = ACTIONS(562), + [anon_sym_deshape] = ACTIONS(562), + [anon_sym_32] = ACTIONS(562), + [anon_sym_bits] = ACTIONS(562), + [anon_sym_33] = ACTIONS(562), + [anon_sym_transpose] = ACTIONS(562), + [anon_sym_34] = ACTIONS(562), + [anon_sym_rise] = ACTIONS(562), + [anon_sym_35] = ACTIONS(562), + [anon_sym_fall] = ACTIONS(562), + [anon_sym_36] = ACTIONS(562), + [anon_sym_where] = ACTIONS(562), + [anon_sym_37] = ACTIONS(562), + [anon_sym_classify] = ACTIONS(562), + [anon_sym_38] = ACTIONS(562), + [anon_sym_deduplicate] = ACTIONS(562), + [anon_sym_39] = ACTIONS(562), + [anon_sym_box] = ACTIONS(562), + [anon_sym_40] = ACTIONS(562), + [anon_sym_unbox] = ACTIONS(562), + [anon_sym_41] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_42] = ACTIONS(562), + [anon_sym_couple] = ACTIONS(562), + [anon_sym_43] = ACTIONS(562), + [anon_sym_join] = ACTIONS(562), + [anon_sym_44] = ACTIONS(562), + [anon_sym_select] = ACTIONS(562), + [anon_sym_45] = ACTIONS(562), + [anon_sym_pick] = ACTIONS(562), + [anon_sym_46] = ACTIONS(562), + [anon_sym_reshape] = ACTIONS(562), + [anon_sym_47] = ACTIONS(562), + [anon_sym_take] = ACTIONS(562), + [anon_sym_48] = ACTIONS(562), + [anon_sym_drop] = ACTIONS(562), + [anon_sym_49] = ACTIONS(562), + [anon_sym_rotate] = ACTIONS(562), + [anon_sym_50] = ACTIONS(562), + [anon_sym_windows] = ACTIONS(562), + [anon_sym_51] = ACTIONS(562), + [anon_sym_keep] = ACTIONS(562), + [anon_sym_52] = ACTIONS(562), + [anon_sym_find] = ACTIONS(562), + [anon_sym_53] = ACTIONS(562), + [anon_sym_member] = ACTIONS(562), + [anon_sym_54] = ACTIONS(562), + [anon_sym_indexof] = ACTIONS(562), + [anon_sym_55] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(562), + [anon_sym_56] = ACTIONS(562), + [anon_sym_wait] = ACTIONS(562), + [anon_sym_parse] = ACTIONS(562), + [anon_sym_random] = ACTIONS(562), + [anon_sym_57] = ACTIONS(562), + [anon_sym_gen] = ACTIONS(562), + [anon_sym_deal] = ACTIONS(562), + [anon_sym_tag] = ACTIONS(562), + [anon_sym_now] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_58] = ACTIONS(562), + [anon_sym_dump] = ACTIONS(562), + [anon_sym_regex] = ACTIONS(562), + [anon_sym_utf] = ACTIONS(562), + [anon_sym_send] = ACTIONS(562), + [anon_sym_recv] = ACTIONS(562), + [anon_sym_tryrecv] = ACTIONS(562), + [anon_sym_complex] = ACTIONS(562), + [anon_sym_59] = ACTIONS(562), + [anon_sym_rerank] = ACTIONS(562), + [anon_sym_60] = ACTIONS(562), + [anon_sym_fix] = ACTIONS(562), + [anon_sym_61] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_reduce] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_scan] = ACTIONS(562), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_each] = ACTIONS(562), + [anon_sym_62] = ACTIONS(562), + [anon_sym_rows] = ACTIONS(562), + [anon_sym_63] = ACTIONS(562), + [anon_sym_repeat] = ACTIONS(562), + [anon_sym_64] = ACTIONS(562), + [anon_sym_dip] = ACTIONS(562), + [anon_sym_65] = ACTIONS(562), + [anon_sym_gap] = ACTIONS(562), + [anon_sym_66] = ACTIONS(562), + [anon_sym_invert] = ACTIONS(562), + [anon_sym_67] = ACTIONS(562), + [anon_sym_spawn] = ACTIONS(562), + [anon_sym_pack] = ACTIONS(562), + [anon_sym_68] = ACTIONS(562), + [anon_sym_rectify] = ACTIONS(562), + [anon_sym_69] = ACTIONS(562), + [anon_sym_this] = ACTIONS(562), + [anon_sym_70] = ACTIONS(562), + [anon_sym_recur] = ACTIONS(562), + [anon_sym_71] = ACTIONS(562), + [anon_sym_fold] = ACTIONS(562), + [anon_sym_72] = ACTIONS(562), + [anon_sym_table] = ACTIONS(562), + [anon_sym_73] = ACTIONS(562), + [anon_sym_cross] = ACTIONS(562), + [anon_sym_74] = ACTIONS(562), + [anon_sym_group] = ACTIONS(562), + [anon_sym_75] = ACTIONS(562), + [anon_sym_partition] = ACTIONS(562), + [anon_sym_76] = ACTIONS(562), + [anon_sym_both] = ACTIONS(562), + [anon_sym_77] = ACTIONS(562), + [anon_sym_bracket] = ACTIONS(562), + [anon_sym_78] = ACTIONS(562), + [anon_sym_fork] = ACTIONS(562), + [anon_sym_79] = ACTIONS(562), + [anon_sym_under] = ACTIONS(562), + [anon_sym_80] = ACTIONS(562), + [anon_sym_fill] = ACTIONS(562), + [anon_sym_81] = ACTIONS(562), + [anon_sym_try] = ACTIONS(560), + [anon_sym_82] = ACTIONS(562), + [anon_sym_do] = ACTIONS(560), + [anon_sym_83] = ACTIONS(562), + [anon_sym_all] = ACTIONS(562), + [anon_sym_84] = ACTIONS(562), + [anon_sym_setinv] = ACTIONS(562), + [anon_sym_setunder] = ACTIONS(562), + [anon_sym_85] = ACTIONS(562), + [anon_sym_86] = ACTIONS(562), + [anon_sym_87] = ACTIONS(562), + [anon_sym_88] = ACTIONS(562), + [anon_sym_89] = ACTIONS(562), + [anon_sym_90] = ACTIONS(562), + [anon_sym_91] = ACTIONS(562), + [anon_sym_92] = ACTIONS(562), + [sym__endOfLine] = ACTIONS(562), + }, + [145] = { + [ts_builtin_sym_end] = ACTIONS(522), + [aux_sym_number_token1] = ACTIONS(520), + [sym_fraction] = ACTIONS(522), + [anon_sym_os] = ACTIONS(520), + [anon_sym_Family] = ACTIONS(520), + [anon_sym_Arch] = ACTIONS(520), + [anon_sym_ExeExt] = ACTIONS(520), + [anon_sym_PllExt] = ACTIONS(520), + [anon_sym_Sep] = ACTIONS(520), + [anon_sym_NUmProcs] = ACTIONS(520), + [anon_sym_] = ACTIONS(522), + [aux_sym_character_token1] = ACTIONS(522), + [sym_string] = ACTIONS(522), + [sym_multiLineString] = ACTIONS(522), + [sym_identifier] = ACTIONS(520), + [sym_identifierDeprecated] = ACTIONS(520), + [sym_system] = ACTIONS(522), + [sym_comment] = ACTIONS(520), + [sym_openParen] = ACTIONS(522), + [sym_openCurly] = ACTIONS(522), + [sym_openBracket] = ACTIONS(522), + [sym_underscore] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(520), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(522), + [anon_sym_eta] = ACTIONS(522), + [anon_sym_2] = ACTIONS(520), + [anon_sym_pi] = ACTIONS(520), + [anon_sym_3] = ACTIONS(520), + [anon_sym_tau] = ACTIONS(522), + [anon_sym_4] = ACTIONS(520), + [anon_sym_infinity] = ACTIONS(522), + [anon_sym_5] = ACTIONS(522), + [anon_sym_e] = ACTIONS(520), + [anon_sym_NaN] = ACTIONS(520), + [anon_sym_NumProcs] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_identity] = ACTIONS(522), + [anon_sym_id] = ACTIONS(520), + [anon_sym_6] = ACTIONS(522), + [anon_sym_not] = ACTIONS(522), + [anon_sym_7] = ACTIONS(522), + [anon_sym_sign] = ACTIONS(522), + [anon_sym_8] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(522), + [anon_sym_9] = ACTIONS(520), + [anon_sym_absolutevalue] = ACTIONS(522), + [anon_sym_10] = ACTIONS(522), + [anon_sym_sqrt] = ACTIONS(522), + [anon_sym_11] = ACTIONS(522), + [anon_sym_sine] = ACTIONS(522), + [anon_sym_12] = ACTIONS(522), + [anon_sym_floor] = ACTIONS(522), + [anon_sym_13] = ACTIONS(522), + [anon_sym_ceiling] = ACTIONS(522), + [anon_sym_14] = ACTIONS(522), + [anon_sym_round] = ACTIONS(522), + [anon_sym_15] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_16] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_17] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_18] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_19] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_20] = ACTIONS(522), + [anon_sym_modulus] = ACTIONS(522), + [anon_sym_21] = ACTIONS(522), + [anon_sym_power] = ACTIONS(522), + [anon_sym_22] = ACTIONS(522), + [anon_sym_logarithm] = ACTIONS(522), + [anon_sym_23] = ACTIONS(522), + [anon_sym_minimum] = ACTIONS(522), + [anon_sym_24] = ACTIONS(522), + [anon_sym_maximum] = ACTIONS(522), + [anon_sym_25] = ACTIONS(522), + [anon_sym_atangent] = ACTIONS(522), + [anon_sym_26] = ACTIONS(522), + [anon_sym_length] = ACTIONS(522), + [anon_sym_27] = ACTIONS(522), + [anon_sym_shape] = ACTIONS(522), + [anon_sym_28] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_29] = ACTIONS(522), + [anon_sym_first] = ACTIONS(522), + [anon_sym_30] = ACTIONS(522), + [anon_sym_reverse] = ACTIONS(522), + [anon_sym_31] = ACTIONS(522), + [anon_sym_deshape] = ACTIONS(522), + [anon_sym_32] = ACTIONS(522), + [anon_sym_bits] = ACTIONS(522), + [anon_sym_33] = ACTIONS(522), + [anon_sym_transpose] = ACTIONS(522), + [anon_sym_34] = ACTIONS(522), + [anon_sym_rise] = ACTIONS(522), + [anon_sym_35] = ACTIONS(522), + [anon_sym_fall] = ACTIONS(522), + [anon_sym_36] = ACTIONS(522), + [anon_sym_where] = ACTIONS(522), + [anon_sym_37] = ACTIONS(522), + [anon_sym_classify] = ACTIONS(522), + [anon_sym_38] = ACTIONS(522), + [anon_sym_deduplicate] = ACTIONS(522), + [anon_sym_39] = ACTIONS(522), + [anon_sym_box] = ACTIONS(522), + [anon_sym_40] = ACTIONS(522), + [anon_sym_unbox] = ACTIONS(522), + [anon_sym_41] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_42] = ACTIONS(522), + [anon_sym_couple] = ACTIONS(522), + [anon_sym_43] = ACTIONS(522), + [anon_sym_join] = ACTIONS(522), + [anon_sym_44] = ACTIONS(522), + [anon_sym_select] = ACTIONS(522), + [anon_sym_45] = ACTIONS(522), + [anon_sym_pick] = ACTIONS(522), + [anon_sym_46] = ACTIONS(522), + [anon_sym_reshape] = ACTIONS(522), + [anon_sym_47] = ACTIONS(522), + [anon_sym_take] = ACTIONS(522), + [anon_sym_48] = ACTIONS(522), + [anon_sym_drop] = ACTIONS(522), + [anon_sym_49] = ACTIONS(522), + [anon_sym_rotate] = ACTIONS(522), + [anon_sym_50] = ACTIONS(522), + [anon_sym_windows] = ACTIONS(522), + [anon_sym_51] = ACTIONS(522), + [anon_sym_keep] = ACTIONS(522), + [anon_sym_52] = ACTIONS(522), + [anon_sym_find] = ACTIONS(522), + [anon_sym_53] = ACTIONS(522), + [anon_sym_member] = ACTIONS(522), + [anon_sym_54] = ACTIONS(522), + [anon_sym_indexof] = ACTIONS(522), + [anon_sym_55] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(522), + [anon_sym_56] = ACTIONS(522), + [anon_sym_wait] = ACTIONS(522), + [anon_sym_parse] = ACTIONS(522), + [anon_sym_random] = ACTIONS(522), + [anon_sym_57] = ACTIONS(522), + [anon_sym_gen] = ACTIONS(522), + [anon_sym_deal] = ACTIONS(522), + [anon_sym_tag] = ACTIONS(522), + [anon_sym_now] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_58] = ACTIONS(522), + [anon_sym_dump] = ACTIONS(522), + [anon_sym_regex] = ACTIONS(522), + [anon_sym_utf] = ACTIONS(522), + [anon_sym_send] = ACTIONS(522), + [anon_sym_recv] = ACTIONS(522), + [anon_sym_tryrecv] = ACTIONS(522), + [anon_sym_complex] = ACTIONS(522), + [anon_sym_59] = ACTIONS(522), + [anon_sym_rerank] = ACTIONS(522), + [anon_sym_60] = ACTIONS(522), + [anon_sym_fix] = ACTIONS(522), + [anon_sym_61] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_reduce] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_scan] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(522), + [anon_sym_each] = ACTIONS(522), + [anon_sym_62] = ACTIONS(522), + [anon_sym_rows] = ACTIONS(522), + [anon_sym_63] = ACTIONS(522), + [anon_sym_repeat] = ACTIONS(522), + [anon_sym_64] = ACTIONS(522), + [anon_sym_dip] = ACTIONS(522), + [anon_sym_65] = ACTIONS(522), + [anon_sym_gap] = ACTIONS(522), + [anon_sym_66] = ACTIONS(522), + [anon_sym_invert] = ACTIONS(522), + [anon_sym_67] = ACTIONS(522), + [anon_sym_spawn] = ACTIONS(522), + [anon_sym_pack] = ACTIONS(522), + [anon_sym_68] = ACTIONS(522), + [anon_sym_rectify] = ACTIONS(522), + [anon_sym_69] = ACTIONS(522), + [anon_sym_this] = ACTIONS(522), + [anon_sym_70] = ACTIONS(522), + [anon_sym_recur] = ACTIONS(522), + [anon_sym_71] = ACTIONS(522), + [anon_sym_fold] = ACTIONS(522), + [anon_sym_72] = ACTIONS(522), + [anon_sym_table] = ACTIONS(522), + [anon_sym_73] = ACTIONS(522), + [anon_sym_cross] = ACTIONS(522), + [anon_sym_74] = ACTIONS(522), + [anon_sym_group] = ACTIONS(522), + [anon_sym_75] = ACTIONS(522), + [anon_sym_partition] = ACTIONS(522), + [anon_sym_76] = ACTIONS(522), + [anon_sym_both] = ACTIONS(522), + [anon_sym_77] = ACTIONS(522), + [anon_sym_bracket] = ACTIONS(522), + [anon_sym_78] = ACTIONS(522), + [anon_sym_fork] = ACTIONS(522), + [anon_sym_79] = ACTIONS(522), + [anon_sym_under] = ACTIONS(522), + [anon_sym_80] = ACTIONS(522), + [anon_sym_fill] = ACTIONS(522), + [anon_sym_81] = ACTIONS(522), + [anon_sym_try] = ACTIONS(520), + [anon_sym_82] = ACTIONS(522), + [anon_sym_do] = ACTIONS(520), + [anon_sym_83] = ACTIONS(522), + [anon_sym_all] = ACTIONS(522), + [anon_sym_84] = ACTIONS(522), + [anon_sym_setinv] = ACTIONS(522), + [anon_sym_setunder] = ACTIONS(522), + [anon_sym_85] = ACTIONS(522), + [anon_sym_86] = ACTIONS(522), + [anon_sym_87] = ACTIONS(522), + [anon_sym_88] = ACTIONS(522), + [anon_sym_89] = ACTIONS(522), + [anon_sym_90] = ACTIONS(522), + [anon_sym_91] = ACTIONS(522), + [anon_sym_92] = ACTIONS(522), + [sym__endOfLine] = ACTIONS(522), + }, + [146] = { + [aux_sym_number_token1] = ACTIONS(620), + [sym_fraction] = ACTIONS(622), + [anon_sym_os] = ACTIONS(620), + [anon_sym_Family] = ACTIONS(620), + [anon_sym_Arch] = ACTIONS(620), + [anon_sym_ExeExt] = ACTIONS(620), + [anon_sym_PllExt] = ACTIONS(620), + [anon_sym_Sep] = ACTIONS(620), + [anon_sym_NUmProcs] = ACTIONS(620), + [anon_sym_] = ACTIONS(622), + [aux_sym_character_token1] = ACTIONS(622), + [sym_string] = ACTIONS(622), + [sym_multiLineString] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [sym_identifier] = ACTIONS(620), + [sym_identifierDeprecated] = ACTIONS(620), + [sym_system] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(622), + [sym_openCurly] = ACTIONS(622), + [sym_openBracket] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(622), + [anon_sym_eta] = ACTIONS(622), + [anon_sym_2] = ACTIONS(620), + [anon_sym_pi] = ACTIONS(620), + [anon_sym_3] = ACTIONS(620), + [anon_sym_tau] = ACTIONS(622), + [anon_sym_4] = ACTIONS(620), + [anon_sym_infinity] = ACTIONS(622), + [anon_sym_5] = ACTIONS(622), + [anon_sym_e] = ACTIONS(620), + [anon_sym_NaN] = ACTIONS(620), + [anon_sym_NumProcs] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_identity] = ACTIONS(622), + [anon_sym_id] = ACTIONS(620), + [anon_sym_6] = ACTIONS(622), + [anon_sym_not] = ACTIONS(622), + [anon_sym_7] = ACTIONS(622), + [anon_sym_sign] = ACTIONS(622), + [anon_sym_8] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_9] = ACTIONS(620), + [anon_sym_absolutevalue] = ACTIONS(622), + [anon_sym_10] = ACTIONS(622), + [anon_sym_sqrt] = ACTIONS(622), + [anon_sym_11] = ACTIONS(622), + [anon_sym_sine] = ACTIONS(622), + [anon_sym_12] = ACTIONS(622), + [anon_sym_floor] = ACTIONS(622), + [anon_sym_13] = ACTIONS(622), + [anon_sym_ceiling] = ACTIONS(622), + [anon_sym_14] = ACTIONS(622), + [anon_sym_round] = ACTIONS(622), + [anon_sym_15] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ] = ACTIONS(622), + [anon_sym_16] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(622), + [anon_sym_17] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(622), + [anon_sym_18] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_19] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_20] = ACTIONS(622), + [anon_sym_modulus] = ACTIONS(622), + [anon_sym_21] = ACTIONS(622), + [anon_sym_power] = ACTIONS(622), + [anon_sym_22] = ACTIONS(622), + [anon_sym_logarithm] = ACTIONS(622), + [anon_sym_23] = ACTIONS(622), + [anon_sym_minimum] = ACTIONS(622), + [anon_sym_24] = ACTIONS(622), + [anon_sym_maximum] = ACTIONS(622), + [anon_sym_25] = ACTIONS(622), + [anon_sym_atangent] = ACTIONS(622), + [anon_sym_26] = ACTIONS(622), + [anon_sym_length] = ACTIONS(622), + [anon_sym_27] = ACTIONS(622), + [anon_sym_shape] = ACTIONS(622), + [anon_sym_28] = ACTIONS(622), + [anon_sym_range] = ACTIONS(622), + [anon_sym_29] = ACTIONS(622), + [anon_sym_first] = ACTIONS(622), + [anon_sym_30] = ACTIONS(622), + [anon_sym_reverse] = ACTIONS(622), + [anon_sym_31] = ACTIONS(622), + [anon_sym_deshape] = ACTIONS(622), + [anon_sym_32] = ACTIONS(622), + [anon_sym_bits] = ACTIONS(622), + [anon_sym_33] = ACTIONS(622), + [anon_sym_transpose] = ACTIONS(622), + [anon_sym_34] = ACTIONS(622), + [anon_sym_rise] = ACTIONS(622), + [anon_sym_35] = ACTIONS(622), + [anon_sym_fall] = ACTIONS(622), + [anon_sym_36] = ACTIONS(622), + [anon_sym_where] = ACTIONS(622), + [anon_sym_37] = ACTIONS(622), + [anon_sym_classify] = ACTIONS(622), + [anon_sym_38] = ACTIONS(622), + [anon_sym_deduplicate] = ACTIONS(622), + [anon_sym_39] = ACTIONS(622), + [anon_sym_box] = ACTIONS(622), + [anon_sym_40] = ACTIONS(622), + [anon_sym_unbox] = ACTIONS(622), + [anon_sym_41] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_42] = ACTIONS(622), + [anon_sym_couple] = ACTIONS(622), + [anon_sym_43] = ACTIONS(622), + [anon_sym_join] = ACTIONS(622), + [anon_sym_44] = ACTIONS(622), + [anon_sym_select] = ACTIONS(622), + [anon_sym_45] = ACTIONS(622), + [anon_sym_pick] = ACTIONS(622), + [anon_sym_46] = ACTIONS(622), + [anon_sym_reshape] = ACTIONS(622), + [anon_sym_47] = ACTIONS(622), + [anon_sym_take] = ACTIONS(622), + [anon_sym_48] = ACTIONS(622), + [anon_sym_drop] = ACTIONS(622), + [anon_sym_49] = ACTIONS(622), + [anon_sym_rotate] = ACTIONS(622), + [anon_sym_50] = ACTIONS(622), + [anon_sym_windows] = ACTIONS(622), + [anon_sym_51] = ACTIONS(622), + [anon_sym_keep] = ACTIONS(622), + [anon_sym_52] = ACTIONS(622), + [anon_sym_find] = ACTIONS(622), + [anon_sym_53] = ACTIONS(622), + [anon_sym_member] = ACTIONS(622), + [anon_sym_54] = ACTIONS(622), + [anon_sym_indexof] = ACTIONS(622), + [anon_sym_55] = ACTIONS(622), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_56] = ACTIONS(622), + [anon_sym_wait] = ACTIONS(622), + [anon_sym_parse] = ACTIONS(622), + [anon_sym_random] = ACTIONS(622), + [anon_sym_57] = ACTIONS(622), + [anon_sym_gen] = ACTIONS(622), + [anon_sym_deal] = ACTIONS(622), + [anon_sym_tag] = ACTIONS(622), + [anon_sym_now] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_58] = ACTIONS(622), + [anon_sym_dump] = ACTIONS(622), + [anon_sym_regex] = ACTIONS(622), + [anon_sym_utf] = ACTIONS(622), + [anon_sym_send] = ACTIONS(622), + [anon_sym_recv] = ACTIONS(622), + [anon_sym_tryrecv] = ACTIONS(622), + [anon_sym_complex] = ACTIONS(622), + [anon_sym_59] = ACTIONS(622), + [anon_sym_rerank] = ACTIONS(622), + [anon_sym_60] = ACTIONS(622), + [anon_sym_fix] = ACTIONS(622), + [anon_sym_61] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_reduce] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_scan] = ACTIONS(622), + [anon_sym_BSLASH] = ACTIONS(622), + [anon_sym_each] = ACTIONS(622), + [anon_sym_62] = ACTIONS(622), + [anon_sym_rows] = ACTIONS(622), + [anon_sym_63] = ACTIONS(622), + [anon_sym_repeat] = ACTIONS(622), + [anon_sym_64] = ACTIONS(622), + [anon_sym_dip] = ACTIONS(622), + [anon_sym_65] = ACTIONS(622), + [anon_sym_gap] = ACTIONS(622), + [anon_sym_66] = ACTIONS(622), + [anon_sym_invert] = ACTIONS(622), + [anon_sym_67] = ACTIONS(622), + [anon_sym_spawn] = ACTIONS(622), + [anon_sym_pack] = ACTIONS(622), + [anon_sym_68] = ACTIONS(622), + [anon_sym_rectify] = ACTIONS(622), + [anon_sym_69] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), + [anon_sym_70] = ACTIONS(622), + [anon_sym_recur] = ACTIONS(622), + [anon_sym_71] = ACTIONS(622), + [anon_sym_fold] = ACTIONS(622), + [anon_sym_72] = ACTIONS(622), + [anon_sym_table] = ACTIONS(622), + [anon_sym_73] = ACTIONS(622), + [anon_sym_cross] = ACTIONS(622), + [anon_sym_74] = ACTIONS(622), + [anon_sym_group] = ACTIONS(622), + [anon_sym_75] = ACTIONS(622), + [anon_sym_partition] = ACTIONS(622), + [anon_sym_76] = ACTIONS(622), + [anon_sym_both] = ACTIONS(622), + [anon_sym_77] = ACTIONS(622), + [anon_sym_bracket] = ACTIONS(622), + [anon_sym_78] = ACTIONS(622), + [anon_sym_fork] = ACTIONS(622), + [anon_sym_79] = ACTIONS(622), + [anon_sym_under] = ACTIONS(622), + [anon_sym_80] = ACTIONS(622), + [anon_sym_fill] = ACTIONS(622), + [anon_sym_81] = ACTIONS(622), + [anon_sym_try] = ACTIONS(620), + [anon_sym_82] = ACTIONS(622), + [anon_sym_do] = ACTIONS(620), + [anon_sym_83] = ACTIONS(622), + [anon_sym_all] = ACTIONS(622), + [anon_sym_84] = ACTIONS(622), + [anon_sym_setinv] = ACTIONS(622), + [anon_sym_setunder] = ACTIONS(622), + [anon_sym_85] = ACTIONS(622), + [anon_sym_86] = ACTIONS(622), + [anon_sym_87] = ACTIONS(622), + [anon_sym_88] = ACTIONS(622), + [anon_sym_89] = ACTIONS(622), + [anon_sym_90] = ACTIONS(622), + [anon_sym_91] = ACTIONS(622), + [anon_sym_92] = ACTIONS(622), [sym__endOfLine] = ACTIONS(5), }, - [172] = { - [anon_sym_PIPE] = ACTIONS(502), - [sym_identifier] = ACTIONS(500), - [sym_system] = ACTIONS(502), + [147] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_tripleMinus] = ACTIONS(628), + [sym_openParen] = ACTIONS(626), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [148] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(630), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [149] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(632), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [150] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(634), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [151] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(636), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [152] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(638), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [153] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(640), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [154] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(642), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [155] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(644), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [156] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(646), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [157] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_tripleMinus] = ACTIONS(648), + [sym_openParen] = ACTIONS(626), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [158] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(650), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [159] = { + [aux_sym_number_token1] = ACTIONS(652), + [sym_fraction] = ACTIONS(654), + [anon_sym_os] = ACTIONS(652), + [anon_sym_Family] = ACTIONS(652), + [anon_sym_Arch] = ACTIONS(652), + [anon_sym_ExeExt] = ACTIONS(652), + [anon_sym_PllExt] = ACTIONS(652), + [anon_sym_Sep] = ACTIONS(652), + [anon_sym_NUmProcs] = ACTIONS(652), + [anon_sym_] = ACTIONS(654), + [aux_sym_character_token1] = ACTIONS(654), + [sym_string] = ACTIONS(654), + [sym_multiLineString] = ACTIONS(654), + [anon_sym_PIPE] = ACTIONS(654), + [sym_identifier] = ACTIONS(652), + [sym_identifierDeprecated] = ACTIONS(652), + [sym_system] = ACTIONS(654), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(502), - [sym_closeParen] = ACTIONS(502), - [sym_underscore] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_COLON] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_identity] = ACTIONS(502), - [anon_sym_id] = ACTIONS(500), - [anon_sym_6] = ACTIONS(502), - [anon_sym_not] = ACTIONS(502), - [anon_sym_7] = ACTIONS(502), - [anon_sym_sign] = ACTIONS(502), - [anon_sym_8] = ACTIONS(502), - [anon_sym_BQUOTE] = ACTIONS(502), - [anon_sym_9] = ACTIONS(502), - [anon_sym_absolutevalue] = ACTIONS(502), - [anon_sym_10] = ACTIONS(502), - [anon_sym_sqrt] = ACTIONS(502), - [anon_sym_11] = ACTIONS(502), - [anon_sym_sine] = ACTIONS(502), - [anon_sym_12] = ACTIONS(502), - [anon_sym_floor] = ACTIONS(502), - [anon_sym_13] = ACTIONS(502), - [anon_sym_ceiling] = ACTIONS(502), - [anon_sym_14] = ACTIONS(502), - [anon_sym_round] = ACTIONS(502), - [anon_sym_15] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_16] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_17] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_18] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_19] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_20] = ACTIONS(502), - [anon_sym_modulus] = ACTIONS(502), - [anon_sym_21] = ACTIONS(502), - [anon_sym_power] = ACTIONS(502), - [anon_sym_22] = ACTIONS(502), - [anon_sym_logarithm] = ACTIONS(502), - [anon_sym_23] = ACTIONS(502), - [anon_sym_minimum] = ACTIONS(502), - [anon_sym_24] = ACTIONS(502), - [anon_sym_maximum] = ACTIONS(502), - [anon_sym_25] = ACTIONS(502), - [anon_sym_atangent] = ACTIONS(502), - [anon_sym_26] = ACTIONS(502), - [anon_sym_length] = ACTIONS(502), - [anon_sym_27] = ACTIONS(502), - [anon_sym_shape] = ACTIONS(502), - [anon_sym_28] = ACTIONS(502), - [anon_sym_range] = ACTIONS(502), - [anon_sym_29] = ACTIONS(502), - [anon_sym_first] = ACTIONS(502), - [anon_sym_30] = ACTIONS(502), - [anon_sym_reverse] = ACTIONS(502), - [anon_sym_31] = ACTIONS(502), - [anon_sym_deshape] = ACTIONS(502), - [anon_sym_32] = ACTIONS(502), - [anon_sym_bits] = ACTIONS(502), - [anon_sym_33] = ACTIONS(502), - [anon_sym_transpose] = ACTIONS(502), - [anon_sym_34] = ACTIONS(502), - [anon_sym_rise] = ACTIONS(502), - [anon_sym_35] = ACTIONS(502), - [anon_sym_fall] = ACTIONS(502), - [anon_sym_36] = ACTIONS(502), - [anon_sym_where] = ACTIONS(502), - [anon_sym_37] = ACTIONS(502), - [anon_sym_classify] = ACTIONS(502), - [anon_sym_38] = ACTIONS(502), - [anon_sym_deduplicate] = ACTIONS(502), - [anon_sym_39] = ACTIONS(502), - [anon_sym_box] = ACTIONS(502), - [anon_sym_40] = ACTIONS(502), - [anon_sym_unbox] = ACTIONS(502), - [anon_sym_41] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_42] = ACTIONS(502), - [anon_sym_couple] = ACTIONS(502), - [anon_sym_43] = ACTIONS(502), - [anon_sym_join] = ACTIONS(502), - [anon_sym_44] = ACTIONS(502), - [anon_sym_select] = ACTIONS(502), - [anon_sym_45] = ACTIONS(502), - [anon_sym_pick] = ACTIONS(502), - [anon_sym_46] = ACTIONS(502), - [anon_sym_reshape] = ACTIONS(502), - [anon_sym_47] = ACTIONS(502), - [anon_sym_take] = ACTIONS(502), - [anon_sym_48] = ACTIONS(502), - [anon_sym_drop] = ACTIONS(502), - [anon_sym_49] = ACTIONS(502), - [anon_sym_rotate] = ACTIONS(502), - [anon_sym_50] = ACTIONS(502), - [anon_sym_windows] = ACTIONS(502), - [anon_sym_51] = ACTIONS(502), - [anon_sym_keep] = ACTIONS(502), - [anon_sym_52] = ACTIONS(502), - [anon_sym_find] = ACTIONS(502), - [anon_sym_53] = ACTIONS(502), - [anon_sym_member] = ACTIONS(502), - [anon_sym_54] = ACTIONS(502), - [anon_sym_indexof] = ACTIONS(502), - [anon_sym_55] = ACTIONS(502), - [anon_sym_assert] = ACTIONS(502), - [anon_sym_56] = ACTIONS(502), - [anon_sym_wait] = ACTIONS(502), - [anon_sym_parse] = ACTIONS(502), - [anon_sym_random] = ACTIONS(502), - [anon_sym_57] = ACTIONS(502), - [anon_sym_gen] = ACTIONS(502), - [anon_sym_deal] = ACTIONS(502), - [anon_sym_tag] = ACTIONS(502), - [anon_sym_now] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_58] = ACTIONS(502), - [anon_sym_dump] = ACTIONS(502), - [anon_sym_regex] = ACTIONS(502), - [anon_sym_utf] = ACTIONS(502), - [anon_sym_send] = ACTIONS(502), - [anon_sym_recv] = ACTIONS(502), - [anon_sym_tryrecv] = ACTIONS(502), - [anon_sym_complex] = ACTIONS(502), - [anon_sym_59] = ACTIONS(502), - [anon_sym_rerank] = ACTIONS(502), - [anon_sym_60] = ACTIONS(502), - [anon_sym_fix] = ACTIONS(502), - [anon_sym_61] = ACTIONS(502), + [sym_openParen] = ACTIONS(654), + [sym_openCurly] = ACTIONS(654), + [sym_openBracket] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(654), + [anon_sym_eta] = ACTIONS(654), + [anon_sym_2] = ACTIONS(652), + [anon_sym_pi] = ACTIONS(652), + [anon_sym_3] = ACTIONS(652), + [anon_sym_tau] = ACTIONS(654), + [anon_sym_4] = ACTIONS(652), + [anon_sym_infinity] = ACTIONS(654), + [anon_sym_5] = ACTIONS(654), + [anon_sym_e] = ACTIONS(652), + [anon_sym_NaN] = ACTIONS(652), + [anon_sym_NumProcs] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_identity] = ACTIONS(654), + [anon_sym_id] = ACTIONS(652), + [anon_sym_6] = ACTIONS(654), + [anon_sym_not] = ACTIONS(654), + [anon_sym_7] = ACTIONS(654), + [anon_sym_sign] = ACTIONS(654), + [anon_sym_8] = ACTIONS(654), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_9] = ACTIONS(652), + [anon_sym_absolutevalue] = ACTIONS(654), + [anon_sym_10] = ACTIONS(654), + [anon_sym_sqrt] = ACTIONS(654), + [anon_sym_11] = ACTIONS(654), + [anon_sym_sine] = ACTIONS(654), + [anon_sym_12] = ACTIONS(654), + [anon_sym_floor] = ACTIONS(654), + [anon_sym_13] = ACTIONS(654), + [anon_sym_ceiling] = ACTIONS(654), + [anon_sym_14] = ACTIONS(654), + [anon_sym_round] = ACTIONS(654), + [anon_sym_15] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_BANG_EQ] = ACTIONS(654), + [anon_sym_16] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(654), + [anon_sym_17] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(654), + [anon_sym_18] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_19] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_20] = ACTIONS(654), + [anon_sym_modulus] = ACTIONS(654), + [anon_sym_21] = ACTIONS(654), + [anon_sym_power] = ACTIONS(654), + [anon_sym_22] = ACTIONS(654), + [anon_sym_logarithm] = ACTIONS(654), + [anon_sym_23] = ACTIONS(654), + [anon_sym_minimum] = ACTIONS(654), + [anon_sym_24] = ACTIONS(654), + [anon_sym_maximum] = ACTIONS(654), + [anon_sym_25] = ACTIONS(654), + [anon_sym_atangent] = ACTIONS(654), + [anon_sym_26] = ACTIONS(654), + [anon_sym_length] = ACTIONS(654), + [anon_sym_27] = ACTIONS(654), + [anon_sym_shape] = ACTIONS(654), + [anon_sym_28] = ACTIONS(654), + [anon_sym_range] = ACTIONS(654), + [anon_sym_29] = ACTIONS(654), + [anon_sym_first] = ACTIONS(654), + [anon_sym_30] = ACTIONS(654), + [anon_sym_reverse] = ACTIONS(654), + [anon_sym_31] = ACTIONS(654), + [anon_sym_deshape] = ACTIONS(654), + [anon_sym_32] = ACTIONS(654), + [anon_sym_bits] = ACTIONS(654), + [anon_sym_33] = ACTIONS(654), + [anon_sym_transpose] = ACTIONS(654), + [anon_sym_34] = ACTIONS(654), + [anon_sym_rise] = ACTIONS(654), + [anon_sym_35] = ACTIONS(654), + [anon_sym_fall] = ACTIONS(654), + [anon_sym_36] = ACTIONS(654), + [anon_sym_where] = ACTIONS(654), + [anon_sym_37] = ACTIONS(654), + [anon_sym_classify] = ACTIONS(654), + [anon_sym_38] = ACTIONS(654), + [anon_sym_deduplicate] = ACTIONS(654), + [anon_sym_39] = ACTIONS(654), + [anon_sym_box] = ACTIONS(654), + [anon_sym_40] = ACTIONS(654), + [anon_sym_unbox] = ACTIONS(654), + [anon_sym_41] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_42] = ACTIONS(654), + [anon_sym_couple] = ACTIONS(654), + [anon_sym_43] = ACTIONS(654), + [anon_sym_join] = ACTIONS(654), + [anon_sym_44] = ACTIONS(654), + [anon_sym_select] = ACTIONS(654), + [anon_sym_45] = ACTIONS(654), + [anon_sym_pick] = ACTIONS(654), + [anon_sym_46] = ACTIONS(654), + [anon_sym_reshape] = ACTIONS(654), + [anon_sym_47] = ACTIONS(654), + [anon_sym_take] = ACTIONS(654), + [anon_sym_48] = ACTIONS(654), + [anon_sym_drop] = ACTIONS(654), + [anon_sym_49] = ACTIONS(654), + [anon_sym_rotate] = ACTIONS(654), + [anon_sym_50] = ACTIONS(654), + [anon_sym_windows] = ACTIONS(654), + [anon_sym_51] = ACTIONS(654), + [anon_sym_keep] = ACTIONS(654), + [anon_sym_52] = ACTIONS(654), + [anon_sym_find] = ACTIONS(654), + [anon_sym_53] = ACTIONS(654), + [anon_sym_member] = ACTIONS(654), + [anon_sym_54] = ACTIONS(654), + [anon_sym_indexof] = ACTIONS(654), + [anon_sym_55] = ACTIONS(654), + [anon_sym_assert] = ACTIONS(654), + [anon_sym_56] = ACTIONS(654), + [anon_sym_wait] = ACTIONS(654), + [anon_sym_parse] = ACTIONS(654), + [anon_sym_random] = ACTIONS(654), + [anon_sym_57] = ACTIONS(654), + [anon_sym_gen] = ACTIONS(654), + [anon_sym_deal] = ACTIONS(654), + [anon_sym_tag] = ACTIONS(654), + [anon_sym_now] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_58] = ACTIONS(654), + [anon_sym_dump] = ACTIONS(654), + [anon_sym_regex] = ACTIONS(654), + [anon_sym_utf] = ACTIONS(654), + [anon_sym_send] = ACTIONS(654), + [anon_sym_recv] = ACTIONS(654), + [anon_sym_tryrecv] = ACTIONS(654), + [anon_sym_complex] = ACTIONS(654), + [anon_sym_59] = ACTIONS(654), + [anon_sym_rerank] = ACTIONS(654), + [anon_sym_60] = ACTIONS(654), + [anon_sym_fix] = ACTIONS(654), + [anon_sym_61] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(654), + [anon_sym_reduce] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_scan] = ACTIONS(654), + [anon_sym_BSLASH] = ACTIONS(654), + [anon_sym_each] = ACTIONS(654), + [anon_sym_62] = ACTIONS(654), + [anon_sym_rows] = ACTIONS(654), + [anon_sym_63] = ACTIONS(654), + [anon_sym_repeat] = ACTIONS(654), + [anon_sym_64] = ACTIONS(654), + [anon_sym_dip] = ACTIONS(654), + [anon_sym_65] = ACTIONS(654), + [anon_sym_gap] = ACTIONS(654), + [anon_sym_66] = ACTIONS(654), + [anon_sym_invert] = ACTIONS(654), + [anon_sym_67] = ACTIONS(654), + [anon_sym_spawn] = ACTIONS(654), + [anon_sym_pack] = ACTIONS(654), + [anon_sym_68] = ACTIONS(654), + [anon_sym_rectify] = ACTIONS(654), + [anon_sym_69] = ACTIONS(654), + [anon_sym_this] = ACTIONS(654), + [anon_sym_70] = ACTIONS(654), + [anon_sym_recur] = ACTIONS(654), + [anon_sym_71] = ACTIONS(654), + [anon_sym_fold] = ACTIONS(654), + [anon_sym_72] = ACTIONS(654), + [anon_sym_table] = ACTIONS(654), + [anon_sym_73] = ACTIONS(654), + [anon_sym_cross] = ACTIONS(654), + [anon_sym_74] = ACTIONS(654), + [anon_sym_group] = ACTIONS(654), + [anon_sym_75] = ACTIONS(654), + [anon_sym_partition] = ACTIONS(654), + [anon_sym_76] = ACTIONS(654), + [anon_sym_both] = ACTIONS(654), + [anon_sym_77] = ACTIONS(654), + [anon_sym_bracket] = ACTIONS(654), + [anon_sym_78] = ACTIONS(654), + [anon_sym_fork] = ACTIONS(654), + [anon_sym_79] = ACTIONS(654), + [anon_sym_under] = ACTIONS(654), + [anon_sym_80] = ACTIONS(654), + [anon_sym_fill] = ACTIONS(654), + [anon_sym_81] = ACTIONS(654), + [anon_sym_try] = ACTIONS(652), + [anon_sym_82] = ACTIONS(654), + [anon_sym_do] = ACTIONS(652), + [anon_sym_83] = ACTIONS(654), + [anon_sym_all] = ACTIONS(654), + [anon_sym_84] = ACTIONS(654), + [anon_sym_setinv] = ACTIONS(654), + [anon_sym_setunder] = ACTIONS(654), + [anon_sym_85] = ACTIONS(654), + [anon_sym_86] = ACTIONS(654), + [anon_sym_87] = ACTIONS(654), + [anon_sym_88] = ACTIONS(654), + [anon_sym_89] = ACTIONS(654), + [anon_sym_90] = ACTIONS(654), + [anon_sym_91] = ACTIONS(654), + [anon_sym_92] = ACTIONS(654), + [sym__endOfLine] = ACTIONS(5), + }, + [160] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(656), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [161] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(658), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [162] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(660), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [163] = { + [aux_sym_number_token1] = ACTIONS(662), + [sym_fraction] = ACTIONS(664), + [anon_sym_os] = ACTIONS(662), + [anon_sym_Family] = ACTIONS(662), + [anon_sym_Arch] = ACTIONS(662), + [anon_sym_ExeExt] = ACTIONS(662), + [anon_sym_PllExt] = ACTIONS(662), + [anon_sym_Sep] = ACTIONS(662), + [anon_sym_NUmProcs] = ACTIONS(662), + [anon_sym_] = ACTIONS(664), + [aux_sym_character_token1] = ACTIONS(664), + [sym_string] = ACTIONS(664), + [sym_multiLineString] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(664), + [sym_identifier] = ACTIONS(662), + [sym_identifierDeprecated] = ACTIONS(662), + [sym_system] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(664), + [sym_openCurly] = ACTIONS(664), + [sym_openBracket] = ACTIONS(664), + [anon_sym_CARET] = ACTIONS(664), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(664), + [anon_sym_eta] = ACTIONS(664), + [anon_sym_2] = ACTIONS(662), + [anon_sym_pi] = ACTIONS(662), + [anon_sym_3] = ACTIONS(662), + [anon_sym_tau] = ACTIONS(664), + [anon_sym_4] = ACTIONS(662), + [anon_sym_infinity] = ACTIONS(664), + [anon_sym_5] = ACTIONS(664), + [anon_sym_e] = ACTIONS(662), + [anon_sym_NaN] = ACTIONS(662), + [anon_sym_NumProcs] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_COLON] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_identity] = ACTIONS(664), + [anon_sym_id] = ACTIONS(662), + [anon_sym_6] = ACTIONS(664), + [anon_sym_not] = ACTIONS(664), + [anon_sym_7] = ACTIONS(664), + [anon_sym_sign] = ACTIONS(664), + [anon_sym_8] = ACTIONS(664), + [anon_sym_BQUOTE] = ACTIONS(664), + [anon_sym_9] = ACTIONS(662), + [anon_sym_absolutevalue] = ACTIONS(664), + [anon_sym_10] = ACTIONS(664), + [anon_sym_sqrt] = ACTIONS(664), + [anon_sym_11] = ACTIONS(664), + [anon_sym_sine] = ACTIONS(664), + [anon_sym_12] = ACTIONS(664), + [anon_sym_floor] = ACTIONS(664), + [anon_sym_13] = ACTIONS(664), + [anon_sym_ceiling] = ACTIONS(664), + [anon_sym_14] = ACTIONS(664), + [anon_sym_round] = ACTIONS(664), + [anon_sym_15] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_16] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_17] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_18] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_19] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(664), + [anon_sym_20] = ACTIONS(664), + [anon_sym_modulus] = ACTIONS(664), + [anon_sym_21] = ACTIONS(664), + [anon_sym_power] = ACTIONS(664), + [anon_sym_22] = ACTIONS(664), + [anon_sym_logarithm] = ACTIONS(664), + [anon_sym_23] = ACTIONS(664), + [anon_sym_minimum] = ACTIONS(664), + [anon_sym_24] = ACTIONS(664), + [anon_sym_maximum] = ACTIONS(664), + [anon_sym_25] = ACTIONS(664), + [anon_sym_atangent] = ACTIONS(664), + [anon_sym_26] = ACTIONS(664), + [anon_sym_length] = ACTIONS(664), + [anon_sym_27] = ACTIONS(664), + [anon_sym_shape] = ACTIONS(664), + [anon_sym_28] = ACTIONS(664), + [anon_sym_range] = ACTIONS(664), + [anon_sym_29] = ACTIONS(664), + [anon_sym_first] = ACTIONS(664), + [anon_sym_30] = ACTIONS(664), + [anon_sym_reverse] = ACTIONS(664), + [anon_sym_31] = ACTIONS(664), + [anon_sym_deshape] = ACTIONS(664), + [anon_sym_32] = ACTIONS(664), + [anon_sym_bits] = ACTIONS(664), + [anon_sym_33] = ACTIONS(664), + [anon_sym_transpose] = ACTIONS(664), + [anon_sym_34] = ACTIONS(664), + [anon_sym_rise] = ACTIONS(664), + [anon_sym_35] = ACTIONS(664), + [anon_sym_fall] = ACTIONS(664), + [anon_sym_36] = ACTIONS(664), + [anon_sym_where] = ACTIONS(664), + [anon_sym_37] = ACTIONS(664), + [anon_sym_classify] = ACTIONS(664), + [anon_sym_38] = ACTIONS(664), + [anon_sym_deduplicate] = ACTIONS(664), + [anon_sym_39] = ACTIONS(664), + [anon_sym_box] = ACTIONS(664), + [anon_sym_40] = ACTIONS(664), + [anon_sym_unbox] = ACTIONS(664), + [anon_sym_41] = ACTIONS(664), + [anon_sym_match] = ACTIONS(664), + [anon_sym_42] = ACTIONS(664), + [anon_sym_couple] = ACTIONS(664), + [anon_sym_43] = ACTIONS(664), + [anon_sym_join] = ACTIONS(664), + [anon_sym_44] = ACTIONS(664), + [anon_sym_select] = ACTIONS(664), + [anon_sym_45] = ACTIONS(664), + [anon_sym_pick] = ACTIONS(664), + [anon_sym_46] = ACTIONS(664), + [anon_sym_reshape] = ACTIONS(664), + [anon_sym_47] = ACTIONS(664), + [anon_sym_take] = ACTIONS(664), + [anon_sym_48] = ACTIONS(664), + [anon_sym_drop] = ACTIONS(664), + [anon_sym_49] = ACTIONS(664), + [anon_sym_rotate] = ACTIONS(664), + [anon_sym_50] = ACTIONS(664), + [anon_sym_windows] = ACTIONS(664), + [anon_sym_51] = ACTIONS(664), + [anon_sym_keep] = ACTIONS(664), + [anon_sym_52] = ACTIONS(664), + [anon_sym_find] = ACTIONS(664), + [anon_sym_53] = ACTIONS(664), + [anon_sym_member] = ACTIONS(664), + [anon_sym_54] = ACTIONS(664), + [anon_sym_indexof] = ACTIONS(664), + [anon_sym_55] = ACTIONS(664), + [anon_sym_assert] = ACTIONS(664), + [anon_sym_56] = ACTIONS(664), + [anon_sym_wait] = ACTIONS(664), + [anon_sym_parse] = ACTIONS(664), + [anon_sym_random] = ACTIONS(664), + [anon_sym_57] = ACTIONS(664), + [anon_sym_gen] = ACTIONS(664), + [anon_sym_deal] = ACTIONS(664), + [anon_sym_tag] = ACTIONS(664), + [anon_sym_now] = ACTIONS(664), + [anon_sym_type] = ACTIONS(664), + [anon_sym_58] = ACTIONS(664), + [anon_sym_dump] = ACTIONS(664), + [anon_sym_regex] = ACTIONS(664), + [anon_sym_utf] = ACTIONS(664), + [anon_sym_send] = ACTIONS(664), + [anon_sym_recv] = ACTIONS(664), + [anon_sym_tryrecv] = ACTIONS(664), + [anon_sym_complex] = ACTIONS(664), + [anon_sym_59] = ACTIONS(664), + [anon_sym_rerank] = ACTIONS(664), + [anon_sym_60] = ACTIONS(664), + [anon_sym_fix] = ACTIONS(664), + [anon_sym_61] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_reduce] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_scan] = ACTIONS(664), + [anon_sym_BSLASH] = ACTIONS(664), + [anon_sym_each] = ACTIONS(664), + [anon_sym_62] = ACTIONS(664), + [anon_sym_rows] = ACTIONS(664), + [anon_sym_63] = ACTIONS(664), + [anon_sym_repeat] = ACTIONS(664), + [anon_sym_64] = ACTIONS(664), + [anon_sym_dip] = ACTIONS(664), + [anon_sym_65] = ACTIONS(664), + [anon_sym_gap] = ACTIONS(664), + [anon_sym_66] = ACTIONS(664), + [anon_sym_invert] = ACTIONS(664), + [anon_sym_67] = ACTIONS(664), + [anon_sym_spawn] = ACTIONS(664), + [anon_sym_pack] = ACTIONS(664), + [anon_sym_68] = ACTIONS(664), + [anon_sym_rectify] = ACTIONS(664), + [anon_sym_69] = ACTIONS(664), + [anon_sym_this] = ACTIONS(664), + [anon_sym_70] = ACTIONS(664), + [anon_sym_recur] = ACTIONS(664), + [anon_sym_71] = ACTIONS(664), + [anon_sym_fold] = ACTIONS(664), + [anon_sym_72] = ACTIONS(664), + [anon_sym_table] = ACTIONS(664), + [anon_sym_73] = ACTIONS(664), + [anon_sym_cross] = ACTIONS(664), + [anon_sym_74] = ACTIONS(664), + [anon_sym_group] = ACTIONS(664), + [anon_sym_75] = ACTIONS(664), + [anon_sym_partition] = ACTIONS(664), + [anon_sym_76] = ACTIONS(664), + [anon_sym_both] = ACTIONS(664), + [anon_sym_77] = ACTIONS(664), + [anon_sym_bracket] = ACTIONS(664), + [anon_sym_78] = ACTIONS(664), + [anon_sym_fork] = ACTIONS(664), + [anon_sym_79] = ACTIONS(664), + [anon_sym_under] = ACTIONS(664), + [anon_sym_80] = ACTIONS(664), + [anon_sym_fill] = ACTIONS(664), + [anon_sym_81] = ACTIONS(664), + [anon_sym_try] = ACTIONS(662), + [anon_sym_82] = ACTIONS(664), + [anon_sym_do] = ACTIONS(662), + [anon_sym_83] = ACTIONS(664), + [anon_sym_all] = ACTIONS(664), + [anon_sym_84] = ACTIONS(664), + [anon_sym_setinv] = ACTIONS(664), + [anon_sym_setunder] = ACTIONS(664), + [anon_sym_85] = ACTIONS(664), + [anon_sym_86] = ACTIONS(664), + [anon_sym_87] = ACTIONS(664), + [anon_sym_88] = ACTIONS(664), + [anon_sym_89] = ACTIONS(664), + [anon_sym_90] = ACTIONS(664), + [anon_sym_91] = ACTIONS(664), + [anon_sym_92] = ACTIONS(664), + [sym__endOfLine] = ACTIONS(5), + }, + [164] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(666), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [165] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_closeParen] = ACTIONS(668), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [166] = { + [aux_sym_number_token1] = ACTIONS(670), + [sym_fraction] = ACTIONS(672), + [anon_sym_os] = ACTIONS(670), + [anon_sym_Family] = ACTIONS(670), + [anon_sym_Arch] = ACTIONS(670), + [anon_sym_ExeExt] = ACTIONS(670), + [anon_sym_PllExt] = ACTIONS(670), + [anon_sym_Sep] = ACTIONS(670), + [anon_sym_NUmProcs] = ACTIONS(670), + [anon_sym_] = ACTIONS(672), + [aux_sym_character_token1] = ACTIONS(672), + [sym_string] = ACTIONS(672), + [sym_multiLineString] = ACTIONS(672), + [sym_identifier] = ACTIONS(670), + [sym_identifierDeprecated] = ACTIONS(670), + [sym_system] = ACTIONS(672), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(672), + [sym_openCurly] = ACTIONS(672), + [sym_openBracket] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(672), + [anon_sym_eta] = ACTIONS(672), + [anon_sym_2] = ACTIONS(670), + [anon_sym_pi] = ACTIONS(670), + [anon_sym_3] = ACTIONS(670), + [anon_sym_tau] = ACTIONS(672), + [anon_sym_4] = ACTIONS(670), + [anon_sym_infinity] = ACTIONS(672), + [anon_sym_5] = ACTIONS(672), + [anon_sym_e] = ACTIONS(670), + [anon_sym_NaN] = ACTIONS(670), + [anon_sym_NumProcs] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_identity] = ACTIONS(672), + [anon_sym_id] = ACTIONS(670), + [anon_sym_6] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_7] = ACTIONS(672), + [anon_sym_sign] = ACTIONS(672), + [anon_sym_8] = ACTIONS(672), + [anon_sym_BQUOTE] = ACTIONS(672), + [anon_sym_9] = ACTIONS(670), + [anon_sym_absolutevalue] = ACTIONS(672), + [anon_sym_10] = ACTIONS(672), + [anon_sym_sqrt] = ACTIONS(672), + [anon_sym_11] = ACTIONS(672), + [anon_sym_sine] = ACTIONS(672), + [anon_sym_12] = ACTIONS(672), + [anon_sym_floor] = ACTIONS(672), + [anon_sym_13] = ACTIONS(672), + [anon_sym_ceiling] = ACTIONS(672), + [anon_sym_14] = ACTIONS(672), + [anon_sym_round] = ACTIONS(672), + [anon_sym_15] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_16] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_17] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_18] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_19] = ACTIONS(672), + [anon_sym_PERCENT] = ACTIONS(672), + [anon_sym_20] = ACTIONS(672), + [anon_sym_modulus] = ACTIONS(672), + [anon_sym_21] = ACTIONS(672), + [anon_sym_power] = ACTIONS(672), + [anon_sym_22] = ACTIONS(672), + [anon_sym_logarithm] = ACTIONS(672), + [anon_sym_23] = ACTIONS(672), + [anon_sym_minimum] = ACTIONS(672), + [anon_sym_24] = ACTIONS(672), + [anon_sym_maximum] = ACTIONS(672), + [anon_sym_25] = ACTIONS(672), + [anon_sym_atangent] = ACTIONS(672), + [anon_sym_26] = ACTIONS(672), + [anon_sym_length] = ACTIONS(672), + [anon_sym_27] = ACTIONS(672), + [anon_sym_shape] = ACTIONS(672), + [anon_sym_28] = ACTIONS(672), + [anon_sym_range] = ACTIONS(672), + [anon_sym_29] = ACTIONS(672), + [anon_sym_first] = ACTIONS(672), + [anon_sym_30] = ACTIONS(672), + [anon_sym_reverse] = ACTIONS(672), + [anon_sym_31] = ACTIONS(672), + [anon_sym_deshape] = ACTIONS(672), + [anon_sym_32] = ACTIONS(672), + [anon_sym_bits] = ACTIONS(672), + [anon_sym_33] = ACTIONS(672), + [anon_sym_transpose] = ACTIONS(672), + [anon_sym_34] = ACTIONS(672), + [anon_sym_rise] = ACTIONS(672), + [anon_sym_35] = ACTIONS(672), + [anon_sym_fall] = ACTIONS(672), + [anon_sym_36] = ACTIONS(672), + [anon_sym_where] = ACTIONS(672), + [anon_sym_37] = ACTIONS(672), + [anon_sym_classify] = ACTIONS(672), + [anon_sym_38] = ACTIONS(672), + [anon_sym_deduplicate] = ACTIONS(672), + [anon_sym_39] = ACTIONS(672), + [anon_sym_box] = ACTIONS(672), + [anon_sym_40] = ACTIONS(672), + [anon_sym_unbox] = ACTIONS(672), + [anon_sym_41] = ACTIONS(672), + [anon_sym_match] = ACTIONS(672), + [anon_sym_42] = ACTIONS(672), + [anon_sym_couple] = ACTIONS(672), + [anon_sym_43] = ACTIONS(672), + [anon_sym_join] = ACTIONS(672), + [anon_sym_44] = ACTIONS(672), + [anon_sym_select] = ACTIONS(672), + [anon_sym_45] = ACTIONS(672), + [anon_sym_pick] = ACTIONS(672), + [anon_sym_46] = ACTIONS(672), + [anon_sym_reshape] = ACTIONS(672), + [anon_sym_47] = ACTIONS(672), + [anon_sym_take] = ACTIONS(672), + [anon_sym_48] = ACTIONS(672), + [anon_sym_drop] = ACTIONS(672), + [anon_sym_49] = ACTIONS(672), + [anon_sym_rotate] = ACTIONS(672), + [anon_sym_50] = ACTIONS(672), + [anon_sym_windows] = ACTIONS(672), + [anon_sym_51] = ACTIONS(672), + [anon_sym_keep] = ACTIONS(672), + [anon_sym_52] = ACTIONS(672), + [anon_sym_find] = ACTIONS(672), + [anon_sym_53] = ACTIONS(672), + [anon_sym_member] = ACTIONS(672), + [anon_sym_54] = ACTIONS(672), + [anon_sym_indexof] = ACTIONS(672), + [anon_sym_55] = ACTIONS(672), + [anon_sym_assert] = ACTIONS(672), + [anon_sym_56] = ACTIONS(672), + [anon_sym_wait] = ACTIONS(672), + [anon_sym_parse] = ACTIONS(672), + [anon_sym_random] = ACTIONS(672), + [anon_sym_57] = ACTIONS(672), + [anon_sym_gen] = ACTIONS(672), + [anon_sym_deal] = ACTIONS(672), + [anon_sym_tag] = ACTIONS(672), + [anon_sym_now] = ACTIONS(672), + [anon_sym_type] = ACTIONS(672), + [anon_sym_58] = ACTIONS(672), + [anon_sym_dump] = ACTIONS(672), + [anon_sym_regex] = ACTIONS(672), + [anon_sym_utf] = ACTIONS(672), + [anon_sym_send] = ACTIONS(672), + [anon_sym_recv] = ACTIONS(672), + [anon_sym_tryrecv] = ACTIONS(672), + [anon_sym_complex] = ACTIONS(672), + [anon_sym_59] = ACTIONS(672), + [anon_sym_rerank] = ACTIONS(672), + [anon_sym_60] = ACTIONS(672), + [anon_sym_fix] = ACTIONS(672), + [anon_sym_61] = ACTIONS(672), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_reduce] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(672), + [anon_sym_scan] = ACTIONS(672), + [anon_sym_BSLASH] = ACTIONS(672), + [anon_sym_each] = ACTIONS(672), + [anon_sym_62] = ACTIONS(672), + [anon_sym_rows] = ACTIONS(672), + [anon_sym_63] = ACTIONS(672), + [anon_sym_repeat] = ACTIONS(672), + [anon_sym_64] = ACTIONS(672), + [anon_sym_dip] = ACTIONS(672), + [anon_sym_65] = ACTIONS(672), + [anon_sym_gap] = ACTIONS(672), + [anon_sym_66] = ACTIONS(672), + [anon_sym_invert] = ACTIONS(672), + [anon_sym_67] = ACTIONS(672), + [anon_sym_spawn] = ACTIONS(672), + [anon_sym_pack] = ACTIONS(672), + [anon_sym_68] = ACTIONS(672), + [anon_sym_rectify] = ACTIONS(672), + [anon_sym_69] = ACTIONS(672), + [anon_sym_this] = ACTIONS(672), + [anon_sym_70] = ACTIONS(672), + [anon_sym_recur] = ACTIONS(672), + [anon_sym_71] = ACTIONS(672), + [anon_sym_fold] = ACTIONS(672), + [anon_sym_72] = ACTIONS(672), + [anon_sym_table] = ACTIONS(672), + [anon_sym_73] = ACTIONS(672), + [anon_sym_cross] = ACTIONS(672), + [anon_sym_74] = ACTIONS(672), + [anon_sym_group] = ACTIONS(672), + [anon_sym_75] = ACTIONS(672), + [anon_sym_partition] = ACTIONS(672), + [anon_sym_76] = ACTIONS(672), + [anon_sym_both] = ACTIONS(672), + [anon_sym_77] = ACTIONS(672), + [anon_sym_bracket] = ACTIONS(672), + [anon_sym_78] = ACTIONS(672), + [anon_sym_fork] = ACTIONS(672), + [anon_sym_79] = ACTIONS(672), + [anon_sym_under] = ACTIONS(672), + [anon_sym_80] = ACTIONS(672), + [anon_sym_fill] = ACTIONS(672), + [anon_sym_81] = ACTIONS(672), + [anon_sym_try] = ACTIONS(670), + [anon_sym_82] = ACTIONS(672), + [anon_sym_do] = ACTIONS(670), + [anon_sym_83] = ACTIONS(672), + [anon_sym_all] = ACTIONS(672), + [anon_sym_84] = ACTIONS(672), + [anon_sym_setinv] = ACTIONS(672), + [anon_sym_setunder] = ACTIONS(672), + [anon_sym_85] = ACTIONS(672), + [anon_sym_86] = ACTIONS(672), + [anon_sym_87] = ACTIONS(672), + [anon_sym_88] = ACTIONS(672), + [anon_sym_89] = ACTIONS(672), + [anon_sym_90] = ACTIONS(672), + [anon_sym_91] = ACTIONS(672), + [anon_sym_92] = ACTIONS(672), + [sym__endOfLine] = ACTIONS(5), + }, + [167] = { + [aux_sym_number_token1] = ACTIONS(674), + [sym_fraction] = ACTIONS(676), + [anon_sym_os] = ACTIONS(674), + [anon_sym_Family] = ACTIONS(674), + [anon_sym_Arch] = ACTIONS(674), + [anon_sym_ExeExt] = ACTIONS(674), + [anon_sym_PllExt] = ACTIONS(674), + [anon_sym_Sep] = ACTIONS(674), + [anon_sym_NUmProcs] = ACTIONS(674), + [anon_sym_] = ACTIONS(676), + [aux_sym_character_token1] = ACTIONS(676), + [sym_string] = ACTIONS(676), + [sym_multiLineString] = ACTIONS(676), + [sym_identifier] = ACTIONS(674), + [sym_identifierDeprecated] = ACTIONS(674), + [sym_system] = ACTIONS(676), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(676), + [sym_openCurly] = ACTIONS(676), + [sym_openBracket] = ACTIONS(676), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(676), + [anon_sym_eta] = ACTIONS(676), + [anon_sym_2] = ACTIONS(674), + [anon_sym_pi] = ACTIONS(674), + [anon_sym_3] = ACTIONS(674), + [anon_sym_tau] = ACTIONS(676), + [anon_sym_4] = ACTIONS(674), + [anon_sym_infinity] = ACTIONS(676), + [anon_sym_5] = ACTIONS(676), + [anon_sym_e] = ACTIONS(674), + [anon_sym_NaN] = ACTIONS(674), + [anon_sym_NumProcs] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_identity] = ACTIONS(676), + [anon_sym_id] = ACTIONS(674), + [anon_sym_6] = ACTIONS(676), + [anon_sym_not] = ACTIONS(676), + [anon_sym_7] = ACTIONS(676), + [anon_sym_sign] = ACTIONS(676), + [anon_sym_8] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(676), + [anon_sym_9] = ACTIONS(674), + [anon_sym_absolutevalue] = ACTIONS(676), + [anon_sym_10] = ACTIONS(676), + [anon_sym_sqrt] = ACTIONS(676), + [anon_sym_11] = ACTIONS(676), + [anon_sym_sine] = ACTIONS(676), + [anon_sym_12] = ACTIONS(676), + [anon_sym_floor] = ACTIONS(676), + [anon_sym_13] = ACTIONS(676), + [anon_sym_ceiling] = ACTIONS(676), + [anon_sym_14] = ACTIONS(676), + [anon_sym_round] = ACTIONS(676), + [anon_sym_15] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_16] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_17] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_18] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_19] = ACTIONS(676), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_20] = ACTIONS(676), + [anon_sym_modulus] = ACTIONS(676), + [anon_sym_21] = ACTIONS(676), + [anon_sym_power] = ACTIONS(676), + [anon_sym_22] = ACTIONS(676), + [anon_sym_logarithm] = ACTIONS(676), + [anon_sym_23] = ACTIONS(676), + [anon_sym_minimum] = ACTIONS(676), + [anon_sym_24] = ACTIONS(676), + [anon_sym_maximum] = ACTIONS(676), + [anon_sym_25] = ACTIONS(676), + [anon_sym_atangent] = ACTIONS(676), + [anon_sym_26] = ACTIONS(676), + [anon_sym_length] = ACTIONS(676), + [anon_sym_27] = ACTIONS(676), + [anon_sym_shape] = ACTIONS(676), + [anon_sym_28] = ACTIONS(676), + [anon_sym_range] = ACTIONS(676), + [anon_sym_29] = ACTIONS(676), + [anon_sym_first] = ACTIONS(676), + [anon_sym_30] = ACTIONS(676), + [anon_sym_reverse] = ACTIONS(676), + [anon_sym_31] = ACTIONS(676), + [anon_sym_deshape] = ACTIONS(676), + [anon_sym_32] = ACTIONS(676), + [anon_sym_bits] = ACTIONS(676), + [anon_sym_33] = ACTIONS(676), + [anon_sym_transpose] = ACTIONS(676), + [anon_sym_34] = ACTIONS(676), + [anon_sym_rise] = ACTIONS(676), + [anon_sym_35] = ACTIONS(676), + [anon_sym_fall] = ACTIONS(676), + [anon_sym_36] = ACTIONS(676), + [anon_sym_where] = ACTIONS(676), + [anon_sym_37] = ACTIONS(676), + [anon_sym_classify] = ACTIONS(676), + [anon_sym_38] = ACTIONS(676), + [anon_sym_deduplicate] = ACTIONS(676), + [anon_sym_39] = ACTIONS(676), + [anon_sym_box] = ACTIONS(676), + [anon_sym_40] = ACTIONS(676), + [anon_sym_unbox] = ACTIONS(676), + [anon_sym_41] = ACTIONS(676), + [anon_sym_match] = ACTIONS(676), + [anon_sym_42] = ACTIONS(676), + [anon_sym_couple] = ACTIONS(676), + [anon_sym_43] = ACTIONS(676), + [anon_sym_join] = ACTIONS(676), + [anon_sym_44] = ACTIONS(676), + [anon_sym_select] = ACTIONS(676), + [anon_sym_45] = ACTIONS(676), + [anon_sym_pick] = ACTIONS(676), + [anon_sym_46] = ACTIONS(676), + [anon_sym_reshape] = ACTIONS(676), + [anon_sym_47] = ACTIONS(676), + [anon_sym_take] = ACTIONS(676), + [anon_sym_48] = ACTIONS(676), + [anon_sym_drop] = ACTIONS(676), + [anon_sym_49] = ACTIONS(676), + [anon_sym_rotate] = ACTIONS(676), + [anon_sym_50] = ACTIONS(676), + [anon_sym_windows] = ACTIONS(676), + [anon_sym_51] = ACTIONS(676), + [anon_sym_keep] = ACTIONS(676), + [anon_sym_52] = ACTIONS(676), + [anon_sym_find] = ACTIONS(676), + [anon_sym_53] = ACTIONS(676), + [anon_sym_member] = ACTIONS(676), + [anon_sym_54] = ACTIONS(676), + [anon_sym_indexof] = ACTIONS(676), + [anon_sym_55] = ACTIONS(676), + [anon_sym_assert] = ACTIONS(676), + [anon_sym_56] = ACTIONS(676), + [anon_sym_wait] = ACTIONS(676), + [anon_sym_parse] = ACTIONS(676), + [anon_sym_random] = ACTIONS(676), + [anon_sym_57] = ACTIONS(676), + [anon_sym_gen] = ACTIONS(676), + [anon_sym_deal] = ACTIONS(676), + [anon_sym_tag] = ACTIONS(676), + [anon_sym_now] = ACTIONS(676), + [anon_sym_type] = ACTIONS(676), + [anon_sym_58] = ACTIONS(676), + [anon_sym_dump] = ACTIONS(676), + [anon_sym_regex] = ACTIONS(676), + [anon_sym_utf] = ACTIONS(676), + [anon_sym_send] = ACTIONS(676), + [anon_sym_recv] = ACTIONS(676), + [anon_sym_tryrecv] = ACTIONS(676), + [anon_sym_complex] = ACTIONS(676), + [anon_sym_59] = ACTIONS(676), + [anon_sym_rerank] = ACTIONS(676), + [anon_sym_60] = ACTIONS(676), + [anon_sym_fix] = ACTIONS(676), + [anon_sym_61] = ACTIONS(676), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_reduce] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(676), + [anon_sym_scan] = ACTIONS(676), + [anon_sym_BSLASH] = ACTIONS(676), + [anon_sym_each] = ACTIONS(676), + [anon_sym_62] = ACTIONS(676), + [anon_sym_rows] = ACTIONS(676), + [anon_sym_63] = ACTIONS(676), + [anon_sym_repeat] = ACTIONS(676), + [anon_sym_64] = ACTIONS(676), + [anon_sym_dip] = ACTIONS(676), + [anon_sym_65] = ACTIONS(676), + [anon_sym_gap] = ACTIONS(676), + [anon_sym_66] = ACTIONS(676), + [anon_sym_invert] = ACTIONS(676), + [anon_sym_67] = ACTIONS(676), + [anon_sym_spawn] = ACTIONS(676), + [anon_sym_pack] = ACTIONS(676), + [anon_sym_68] = ACTIONS(676), + [anon_sym_rectify] = ACTIONS(676), + [anon_sym_69] = ACTIONS(676), + [anon_sym_this] = ACTIONS(676), + [anon_sym_70] = ACTIONS(676), + [anon_sym_recur] = ACTIONS(676), + [anon_sym_71] = ACTIONS(676), + [anon_sym_fold] = ACTIONS(676), + [anon_sym_72] = ACTIONS(676), + [anon_sym_table] = ACTIONS(676), + [anon_sym_73] = ACTIONS(676), + [anon_sym_cross] = ACTIONS(676), + [anon_sym_74] = ACTIONS(676), + [anon_sym_group] = ACTIONS(676), + [anon_sym_75] = ACTIONS(676), + [anon_sym_partition] = ACTIONS(676), + [anon_sym_76] = ACTIONS(676), + [anon_sym_both] = ACTIONS(676), + [anon_sym_77] = ACTIONS(676), + [anon_sym_bracket] = ACTIONS(676), + [anon_sym_78] = ACTIONS(676), + [anon_sym_fork] = ACTIONS(676), + [anon_sym_79] = ACTIONS(676), + [anon_sym_under] = ACTIONS(676), + [anon_sym_80] = ACTIONS(676), + [anon_sym_fill] = ACTIONS(676), + [anon_sym_81] = ACTIONS(676), + [anon_sym_try] = ACTIONS(674), + [anon_sym_82] = ACTIONS(676), + [anon_sym_do] = ACTIONS(674), + [anon_sym_83] = ACTIONS(676), + [anon_sym_all] = ACTIONS(676), + [anon_sym_84] = ACTIONS(676), + [anon_sym_setinv] = ACTIONS(676), + [anon_sym_setunder] = ACTIONS(676), + [anon_sym_85] = ACTIONS(676), + [anon_sym_86] = ACTIONS(676), + [anon_sym_87] = ACTIONS(676), + [anon_sym_88] = ACTIONS(676), + [anon_sym_89] = ACTIONS(676), + [anon_sym_90] = ACTIONS(676), + [anon_sym_91] = ACTIONS(676), + [anon_sym_92] = ACTIONS(676), + [sym__endOfLine] = ACTIONS(5), + }, + [168] = { + [aux_sym_number_token1] = ACTIONS(624), + [sym_fraction] = ACTIONS(626), + [anon_sym_os] = ACTIONS(624), + [anon_sym_Family] = ACTIONS(624), + [anon_sym_Arch] = ACTIONS(624), + [anon_sym_ExeExt] = ACTIONS(624), + [anon_sym_PllExt] = ACTIONS(624), + [anon_sym_Sep] = ACTIONS(624), + [anon_sym_NUmProcs] = ACTIONS(624), + [anon_sym_] = ACTIONS(626), + [aux_sym_character_token1] = ACTIONS(626), + [sym_string] = ACTIONS(626), + [sym_multiLineString] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), + [sym_identifierDeprecated] = ACTIONS(624), + [sym_system] = ACTIONS(626), + [sym_comment] = ACTIONS(624), + [sym_openParen] = ACTIONS(626), + [sym_openCurly] = ACTIONS(626), + [sym_openBracket] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(624), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(626), + [anon_sym_eta] = ACTIONS(626), + [anon_sym_2] = ACTIONS(624), + [anon_sym_pi] = ACTIONS(624), + [anon_sym_3] = ACTIONS(624), + [anon_sym_tau] = ACTIONS(626), + [anon_sym_4] = ACTIONS(624), + [anon_sym_infinity] = ACTIONS(626), + [anon_sym_5] = ACTIONS(626), + [anon_sym_e] = ACTIONS(624), + [anon_sym_NaN] = ACTIONS(624), + [anon_sym_NumProcs] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_COLON] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_identity] = ACTIONS(626), + [anon_sym_id] = ACTIONS(624), + [anon_sym_6] = ACTIONS(626), + [anon_sym_not] = ACTIONS(626), + [anon_sym_7] = ACTIONS(626), + [anon_sym_sign] = ACTIONS(626), + [anon_sym_8] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_9] = ACTIONS(624), + [anon_sym_absolutevalue] = ACTIONS(626), + [anon_sym_10] = ACTIONS(626), + [anon_sym_sqrt] = ACTIONS(626), + [anon_sym_11] = ACTIONS(626), + [anon_sym_sine] = ACTIONS(626), + [anon_sym_12] = ACTIONS(626), + [anon_sym_floor] = ACTIONS(626), + [anon_sym_13] = ACTIONS(626), + [anon_sym_ceiling] = ACTIONS(626), + [anon_sym_14] = ACTIONS(626), + [anon_sym_round] = ACTIONS(626), + [anon_sym_15] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_16] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_17] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_18] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_19] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_20] = ACTIONS(626), + [anon_sym_modulus] = ACTIONS(626), + [anon_sym_21] = ACTIONS(626), + [anon_sym_power] = ACTIONS(626), + [anon_sym_22] = ACTIONS(626), + [anon_sym_logarithm] = ACTIONS(626), + [anon_sym_23] = ACTIONS(626), + [anon_sym_minimum] = ACTIONS(626), + [anon_sym_24] = ACTIONS(626), + [anon_sym_maximum] = ACTIONS(626), + [anon_sym_25] = ACTIONS(626), + [anon_sym_atangent] = ACTIONS(626), + [anon_sym_26] = ACTIONS(626), + [anon_sym_length] = ACTIONS(626), + [anon_sym_27] = ACTIONS(626), + [anon_sym_shape] = ACTIONS(626), + [anon_sym_28] = ACTIONS(626), + [anon_sym_range] = ACTIONS(626), + [anon_sym_29] = ACTIONS(626), + [anon_sym_first] = ACTIONS(626), + [anon_sym_30] = ACTIONS(626), + [anon_sym_reverse] = ACTIONS(626), + [anon_sym_31] = ACTIONS(626), + [anon_sym_deshape] = ACTIONS(626), + [anon_sym_32] = ACTIONS(626), + [anon_sym_bits] = ACTIONS(626), + [anon_sym_33] = ACTIONS(626), + [anon_sym_transpose] = ACTIONS(626), + [anon_sym_34] = ACTIONS(626), + [anon_sym_rise] = ACTIONS(626), + [anon_sym_35] = ACTIONS(626), + [anon_sym_fall] = ACTIONS(626), + [anon_sym_36] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_37] = ACTIONS(626), + [anon_sym_classify] = ACTIONS(626), + [anon_sym_38] = ACTIONS(626), + [anon_sym_deduplicate] = ACTIONS(626), + [anon_sym_39] = ACTIONS(626), + [anon_sym_box] = ACTIONS(626), + [anon_sym_40] = ACTIONS(626), + [anon_sym_unbox] = ACTIONS(626), + [anon_sym_41] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_42] = ACTIONS(626), + [anon_sym_couple] = ACTIONS(626), + [anon_sym_43] = ACTIONS(626), + [anon_sym_join] = ACTIONS(626), + [anon_sym_44] = ACTIONS(626), + [anon_sym_select] = ACTIONS(626), + [anon_sym_45] = ACTIONS(626), + [anon_sym_pick] = ACTIONS(626), + [anon_sym_46] = ACTIONS(626), + [anon_sym_reshape] = ACTIONS(626), + [anon_sym_47] = ACTIONS(626), + [anon_sym_take] = ACTIONS(626), + [anon_sym_48] = ACTIONS(626), + [anon_sym_drop] = ACTIONS(626), + [anon_sym_49] = ACTIONS(626), + [anon_sym_rotate] = ACTIONS(626), + [anon_sym_50] = ACTIONS(626), + [anon_sym_windows] = ACTIONS(626), + [anon_sym_51] = ACTIONS(626), + [anon_sym_keep] = ACTIONS(626), + [anon_sym_52] = ACTIONS(626), + [anon_sym_find] = ACTIONS(626), + [anon_sym_53] = ACTIONS(626), + [anon_sym_member] = ACTIONS(626), + [anon_sym_54] = ACTIONS(626), + [anon_sym_indexof] = ACTIONS(626), + [anon_sym_55] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(626), + [anon_sym_56] = ACTIONS(626), + [anon_sym_wait] = ACTIONS(626), + [anon_sym_parse] = ACTIONS(626), + [anon_sym_random] = ACTIONS(626), + [anon_sym_57] = ACTIONS(626), + [anon_sym_gen] = ACTIONS(626), + [anon_sym_deal] = ACTIONS(626), + [anon_sym_tag] = ACTIONS(626), + [anon_sym_now] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_58] = ACTIONS(626), + [anon_sym_dump] = ACTIONS(626), + [anon_sym_regex] = ACTIONS(626), + [anon_sym_utf] = ACTIONS(626), + [anon_sym_send] = ACTIONS(626), + [anon_sym_recv] = ACTIONS(626), + [anon_sym_tryrecv] = ACTIONS(626), + [anon_sym_complex] = ACTIONS(626), + [anon_sym_59] = ACTIONS(626), + [anon_sym_rerank] = ACTIONS(626), + [anon_sym_60] = ACTIONS(626), + [anon_sym_fix] = ACTIONS(626), + [anon_sym_61] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(626), + [anon_sym_reduce] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_scan] = ACTIONS(626), + [anon_sym_BSLASH] = ACTIONS(626), + [anon_sym_each] = ACTIONS(626), + [anon_sym_62] = ACTIONS(626), + [anon_sym_rows] = ACTIONS(626), + [anon_sym_63] = ACTIONS(626), + [anon_sym_repeat] = ACTIONS(626), + [anon_sym_64] = ACTIONS(626), + [anon_sym_dip] = ACTIONS(626), + [anon_sym_65] = ACTIONS(626), + [anon_sym_gap] = ACTIONS(626), + [anon_sym_66] = ACTIONS(626), + [anon_sym_invert] = ACTIONS(626), + [anon_sym_67] = ACTIONS(626), + [anon_sym_spawn] = ACTIONS(626), + [anon_sym_pack] = ACTIONS(626), + [anon_sym_68] = ACTIONS(626), + [anon_sym_rectify] = ACTIONS(626), + [anon_sym_69] = ACTIONS(626), + [anon_sym_this] = ACTIONS(626), + [anon_sym_70] = ACTIONS(626), + [anon_sym_recur] = ACTIONS(626), + [anon_sym_71] = ACTIONS(626), + [anon_sym_fold] = ACTIONS(626), + [anon_sym_72] = ACTIONS(626), + [anon_sym_table] = ACTIONS(626), + [anon_sym_73] = ACTIONS(626), + [anon_sym_cross] = ACTIONS(626), + [anon_sym_74] = ACTIONS(626), + [anon_sym_group] = ACTIONS(626), + [anon_sym_75] = ACTIONS(626), + [anon_sym_partition] = ACTIONS(626), + [anon_sym_76] = ACTIONS(626), + [anon_sym_both] = ACTIONS(626), + [anon_sym_77] = ACTIONS(626), + [anon_sym_bracket] = ACTIONS(626), + [anon_sym_78] = ACTIONS(626), + [anon_sym_fork] = ACTIONS(626), + [anon_sym_79] = ACTIONS(626), + [anon_sym_under] = ACTIONS(626), + [anon_sym_80] = ACTIONS(626), + [anon_sym_fill] = ACTIONS(626), + [anon_sym_81] = ACTIONS(626), + [anon_sym_try] = ACTIONS(624), + [anon_sym_82] = ACTIONS(626), + [anon_sym_do] = ACTIONS(624), + [anon_sym_83] = ACTIONS(626), + [anon_sym_all] = ACTIONS(626), + [anon_sym_84] = ACTIONS(626), + [anon_sym_setinv] = ACTIONS(626), + [anon_sym_setunder] = ACTIONS(626), + [anon_sym_85] = ACTIONS(626), + [anon_sym_86] = ACTIONS(626), + [anon_sym_87] = ACTIONS(626), + [anon_sym_88] = ACTIONS(626), + [anon_sym_89] = ACTIONS(626), + [anon_sym_90] = ACTIONS(626), + [anon_sym_91] = ACTIONS(626), + [anon_sym_92] = ACTIONS(626), + [sym__endOfLine] = ACTIONS(5), + }, + [169] = { + [aux_sym_number_token1] = ACTIONS(674), + [sym_fraction] = ACTIONS(676), + [anon_sym_os] = ACTIONS(674), + [anon_sym_Family] = ACTIONS(674), + [anon_sym_Arch] = ACTIONS(674), + [anon_sym_ExeExt] = ACTIONS(674), + [anon_sym_PllExt] = ACTIONS(674), + [anon_sym_Sep] = ACTIONS(674), + [anon_sym_NUmProcs] = ACTIONS(674), + [anon_sym_] = ACTIONS(676), + [aux_sym_character_token1] = ACTIONS(676), + [sym_string] = ACTIONS(676), + [sym_multiLineString] = ACTIONS(676), + [sym_identifier] = ACTIONS(674), + [sym_identifierDeprecated] = ACTIONS(674), + [sym_system] = ACTIONS(676), + [sym_comment] = ACTIONS(674), + [sym_openParen] = ACTIONS(676), + [sym_openCurly] = ACTIONS(676), + [sym_openBracket] = ACTIONS(676), + [anon_sym_CARET] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_SQUOTE_SQUOTE] = ACTIONS(676), + [anon_sym_eta] = ACTIONS(676), + [anon_sym_2] = ACTIONS(674), + [anon_sym_pi] = ACTIONS(674), + [anon_sym_3] = ACTIONS(674), + [anon_sym_tau] = ACTIONS(676), + [anon_sym_4] = ACTIONS(674), + [anon_sym_infinity] = ACTIONS(676), + [anon_sym_5] = ACTIONS(676), + [anon_sym_e] = ACTIONS(674), + [anon_sym_NaN] = ACTIONS(674), + [anon_sym_NumProcs] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_identity] = ACTIONS(676), + [anon_sym_id] = ACTIONS(674), + [anon_sym_6] = ACTIONS(676), + [anon_sym_not] = ACTIONS(676), + [anon_sym_7] = ACTIONS(676), + [anon_sym_sign] = ACTIONS(676), + [anon_sym_8] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(676), + [anon_sym_9] = ACTIONS(674), + [anon_sym_absolutevalue] = ACTIONS(676), + [anon_sym_10] = ACTIONS(676), + [anon_sym_sqrt] = ACTIONS(676), + [anon_sym_11] = ACTIONS(676), + [anon_sym_sine] = ACTIONS(676), + [anon_sym_12] = ACTIONS(676), + [anon_sym_floor] = ACTIONS(676), + [anon_sym_13] = ACTIONS(676), + [anon_sym_ceiling] = ACTIONS(676), + [anon_sym_14] = ACTIONS(676), + [anon_sym_round] = ACTIONS(676), + [anon_sym_15] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_16] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_17] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_18] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_19] = ACTIONS(676), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_20] = ACTIONS(676), + [anon_sym_modulus] = ACTIONS(676), + [anon_sym_21] = ACTIONS(676), + [anon_sym_power] = ACTIONS(676), + [anon_sym_22] = ACTIONS(676), + [anon_sym_logarithm] = ACTIONS(676), + [anon_sym_23] = ACTIONS(676), + [anon_sym_minimum] = ACTIONS(676), + [anon_sym_24] = ACTIONS(676), + [anon_sym_maximum] = ACTIONS(676), + [anon_sym_25] = ACTIONS(676), + [anon_sym_atangent] = ACTIONS(676), + [anon_sym_26] = ACTIONS(676), + [anon_sym_length] = ACTIONS(676), + [anon_sym_27] = ACTIONS(676), + [anon_sym_shape] = ACTIONS(676), + [anon_sym_28] = ACTIONS(676), + [anon_sym_range] = ACTIONS(676), + [anon_sym_29] = ACTIONS(676), + [anon_sym_first] = ACTIONS(676), + [anon_sym_30] = ACTIONS(676), + [anon_sym_reverse] = ACTIONS(676), + [anon_sym_31] = ACTIONS(676), + [anon_sym_deshape] = ACTIONS(676), + [anon_sym_32] = ACTIONS(676), + [anon_sym_bits] = ACTIONS(676), + [anon_sym_33] = ACTIONS(676), + [anon_sym_transpose] = ACTIONS(676), + [anon_sym_34] = ACTIONS(676), + [anon_sym_rise] = ACTIONS(676), + [anon_sym_35] = ACTIONS(676), + [anon_sym_fall] = ACTIONS(676), + [anon_sym_36] = ACTIONS(676), + [anon_sym_where] = ACTIONS(676), + [anon_sym_37] = ACTIONS(676), + [anon_sym_classify] = ACTIONS(676), + [anon_sym_38] = ACTIONS(676), + [anon_sym_deduplicate] = ACTIONS(676), + [anon_sym_39] = ACTIONS(676), + [anon_sym_box] = ACTIONS(676), + [anon_sym_40] = ACTIONS(676), + [anon_sym_unbox] = ACTIONS(676), + [anon_sym_41] = ACTIONS(676), + [anon_sym_match] = ACTIONS(676), + [anon_sym_42] = ACTIONS(676), + [anon_sym_couple] = ACTIONS(676), + [anon_sym_43] = ACTIONS(676), + [anon_sym_join] = ACTIONS(676), + [anon_sym_44] = ACTIONS(676), + [anon_sym_select] = ACTIONS(676), + [anon_sym_45] = ACTIONS(676), + [anon_sym_pick] = ACTIONS(676), + [anon_sym_46] = ACTIONS(676), + [anon_sym_reshape] = ACTIONS(676), + [anon_sym_47] = ACTIONS(676), + [anon_sym_take] = ACTIONS(676), + [anon_sym_48] = ACTIONS(676), + [anon_sym_drop] = ACTIONS(676), + [anon_sym_49] = ACTIONS(676), + [anon_sym_rotate] = ACTIONS(676), + [anon_sym_50] = ACTIONS(676), + [anon_sym_windows] = ACTIONS(676), + [anon_sym_51] = ACTIONS(676), + [anon_sym_keep] = ACTIONS(676), + [anon_sym_52] = ACTIONS(676), + [anon_sym_find] = ACTIONS(676), + [anon_sym_53] = ACTIONS(676), + [anon_sym_member] = ACTIONS(676), + [anon_sym_54] = ACTIONS(676), + [anon_sym_indexof] = ACTIONS(676), + [anon_sym_55] = ACTIONS(676), + [anon_sym_assert] = ACTIONS(676), + [anon_sym_56] = ACTIONS(676), + [anon_sym_wait] = ACTIONS(676), + [anon_sym_parse] = ACTIONS(676), + [anon_sym_random] = ACTIONS(676), + [anon_sym_57] = ACTIONS(676), + [anon_sym_gen] = ACTIONS(676), + [anon_sym_deal] = ACTIONS(676), + [anon_sym_tag] = ACTIONS(676), + [anon_sym_now] = ACTIONS(676), + [anon_sym_type] = ACTIONS(676), + [anon_sym_58] = ACTIONS(676), + [anon_sym_dump] = ACTIONS(676), + [anon_sym_regex] = ACTIONS(676), + [anon_sym_utf] = ACTIONS(676), + [anon_sym_send] = ACTIONS(676), + [anon_sym_recv] = ACTIONS(676), + [anon_sym_tryrecv] = ACTIONS(676), + [anon_sym_complex] = ACTIONS(676), + [anon_sym_59] = ACTIONS(676), + [anon_sym_rerank] = ACTIONS(676), + [anon_sym_60] = ACTIONS(676), + [anon_sym_fix] = ACTIONS(676), + [anon_sym_61] = ACTIONS(676), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_reduce] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(676), + [anon_sym_scan] = ACTIONS(676), + [anon_sym_BSLASH] = ACTIONS(676), + [anon_sym_each] = ACTIONS(676), + [anon_sym_62] = ACTIONS(676), + [anon_sym_rows] = ACTIONS(676), + [anon_sym_63] = ACTIONS(676), + [anon_sym_repeat] = ACTIONS(676), + [anon_sym_64] = ACTIONS(676), + [anon_sym_dip] = ACTIONS(676), + [anon_sym_65] = ACTIONS(676), + [anon_sym_gap] = ACTIONS(676), + [anon_sym_66] = ACTIONS(676), + [anon_sym_invert] = ACTIONS(676), + [anon_sym_67] = ACTIONS(676), + [anon_sym_spawn] = ACTIONS(676), + [anon_sym_pack] = ACTIONS(676), + [anon_sym_68] = ACTIONS(676), + [anon_sym_rectify] = ACTIONS(676), + [anon_sym_69] = ACTIONS(676), + [anon_sym_this] = ACTIONS(676), + [anon_sym_70] = ACTIONS(676), + [anon_sym_recur] = ACTIONS(676), + [anon_sym_71] = ACTIONS(676), + [anon_sym_fold] = ACTIONS(676), + [anon_sym_72] = ACTIONS(676), + [anon_sym_table] = ACTIONS(676), + [anon_sym_73] = ACTIONS(676), + [anon_sym_cross] = ACTIONS(676), + [anon_sym_74] = ACTIONS(676), + [anon_sym_group] = ACTIONS(676), + [anon_sym_75] = ACTIONS(676), + [anon_sym_partition] = ACTIONS(676), + [anon_sym_76] = ACTIONS(676), + [anon_sym_both] = ACTIONS(676), + [anon_sym_77] = ACTIONS(676), + [anon_sym_bracket] = ACTIONS(676), + [anon_sym_78] = ACTIONS(676), + [anon_sym_fork] = ACTIONS(676), + [anon_sym_79] = ACTIONS(676), + [anon_sym_under] = ACTIONS(676), + [anon_sym_80] = ACTIONS(676), + [anon_sym_fill] = ACTIONS(676), + [anon_sym_81] = ACTIONS(676), + [anon_sym_try] = ACTIONS(674), + [anon_sym_82] = ACTIONS(676), + [anon_sym_do] = ACTIONS(674), + [anon_sym_83] = ACTIONS(676), + [anon_sym_all] = ACTIONS(676), + [anon_sym_84] = ACTIONS(676), + [anon_sym_setinv] = ACTIONS(676), + [anon_sym_setunder] = ACTIONS(676), + [anon_sym_85] = ACTIONS(676), + [anon_sym_86] = ACTIONS(676), + [anon_sym_87] = ACTIONS(676), + [anon_sym_88] = ACTIONS(676), + [anon_sym_89] = ACTIONS(676), + [anon_sym_90] = ACTIONS(676), + [anon_sym_91] = ACTIONS(676), + [anon_sym_92] = ACTIONS(676), + [sym__endOfLine] = ACTIONS(5), + }, + [170] = { + [sym_inlineFunction] = STATE(187), + [sym_function] = STATE(187), + [anon_sym_PIPE] = ACTIONS(468), + [sym_identifier] = ACTIONS(678), + [sym_system] = ACTIONS(680), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(682), + [sym_closeParen] = ACTIONS(468), + [sym_underscore] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(300), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), + [sym__endOfLine] = ACTIONS(5), + }, + [171] = { + [sym_inlineFunction] = STATE(170), + [sym_function] = STATE(170), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(684), + [sym_system] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(688), + [sym_closeParen] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_identity] = ACTIONS(690), + [anon_sym_id] = ACTIONS(692), + [anon_sym_6] = ACTIONS(690), + [anon_sym_not] = ACTIONS(690), + [anon_sym_7] = ACTIONS(690), + [anon_sym_sign] = ACTIONS(690), + [anon_sym_8] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_9] = ACTIONS(690), + [anon_sym_absolutevalue] = ACTIONS(690), + [anon_sym_10] = ACTIONS(690), + [anon_sym_sqrt] = ACTIONS(690), + [anon_sym_11] = ACTIONS(690), + [anon_sym_sine] = ACTIONS(690), + [anon_sym_12] = ACTIONS(690), + [anon_sym_floor] = ACTIONS(690), + [anon_sym_13] = ACTIONS(690), + [anon_sym_ceiling] = ACTIONS(690), + [anon_sym_14] = ACTIONS(690), + [anon_sym_round] = ACTIONS(690), + [anon_sym_15] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_16] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_17] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_18] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_19] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_20] = ACTIONS(690), + [anon_sym_modulus] = ACTIONS(690), + [anon_sym_21] = ACTIONS(690), + [anon_sym_power] = ACTIONS(690), + [anon_sym_22] = ACTIONS(690), + [anon_sym_logarithm] = ACTIONS(690), + [anon_sym_23] = ACTIONS(690), + [anon_sym_minimum] = ACTIONS(690), + [anon_sym_24] = ACTIONS(690), + [anon_sym_maximum] = ACTIONS(690), + [anon_sym_25] = ACTIONS(690), + [anon_sym_atangent] = ACTIONS(690), + [anon_sym_26] = ACTIONS(690), + [anon_sym_length] = ACTIONS(690), + [anon_sym_27] = ACTIONS(690), + [anon_sym_shape] = ACTIONS(690), + [anon_sym_28] = ACTIONS(690), + [anon_sym_range] = ACTIONS(690), + [anon_sym_29] = ACTIONS(690), + [anon_sym_first] = ACTIONS(690), + [anon_sym_30] = ACTIONS(690), + [anon_sym_reverse] = ACTIONS(690), + [anon_sym_31] = ACTIONS(690), + [anon_sym_deshape] = ACTIONS(690), + [anon_sym_32] = ACTIONS(690), + [anon_sym_bits] = ACTIONS(690), + [anon_sym_33] = ACTIONS(690), + [anon_sym_transpose] = ACTIONS(690), + [anon_sym_34] = ACTIONS(690), + [anon_sym_rise] = ACTIONS(690), + [anon_sym_35] = ACTIONS(690), + [anon_sym_fall] = ACTIONS(690), + [anon_sym_36] = ACTIONS(690), + [anon_sym_where] = ACTIONS(690), + [anon_sym_37] = ACTIONS(690), + [anon_sym_classify] = ACTIONS(690), + [anon_sym_38] = ACTIONS(690), + [anon_sym_deduplicate] = ACTIONS(690), + [anon_sym_39] = ACTIONS(690), + [anon_sym_box] = ACTIONS(690), + [anon_sym_40] = ACTIONS(690), + [anon_sym_unbox] = ACTIONS(690), + [anon_sym_41] = ACTIONS(690), + [anon_sym_match] = ACTIONS(690), + [anon_sym_42] = ACTIONS(690), + [anon_sym_couple] = ACTIONS(690), + [anon_sym_43] = ACTIONS(690), + [anon_sym_join] = ACTIONS(690), + [anon_sym_44] = ACTIONS(690), + [anon_sym_select] = ACTIONS(690), + [anon_sym_45] = ACTIONS(690), + [anon_sym_pick] = ACTIONS(690), + [anon_sym_46] = ACTIONS(690), + [anon_sym_reshape] = ACTIONS(690), + [anon_sym_47] = ACTIONS(690), + [anon_sym_take] = ACTIONS(690), + [anon_sym_48] = ACTIONS(690), + [anon_sym_drop] = ACTIONS(690), + [anon_sym_49] = ACTIONS(690), + [anon_sym_rotate] = ACTIONS(690), + [anon_sym_50] = ACTIONS(690), + [anon_sym_windows] = ACTIONS(690), + [anon_sym_51] = ACTIONS(690), + [anon_sym_keep] = ACTIONS(690), + [anon_sym_52] = ACTIONS(690), + [anon_sym_find] = ACTIONS(690), + [anon_sym_53] = ACTIONS(690), + [anon_sym_member] = ACTIONS(690), + [anon_sym_54] = ACTIONS(690), + [anon_sym_indexof] = ACTIONS(690), + [anon_sym_55] = ACTIONS(690), + [anon_sym_assert] = ACTIONS(690), + [anon_sym_56] = ACTIONS(690), + [anon_sym_wait] = ACTIONS(690), + [anon_sym_parse] = ACTIONS(690), + [anon_sym_random] = ACTIONS(690), + [anon_sym_57] = ACTIONS(690), + [anon_sym_gen] = ACTIONS(690), + [anon_sym_deal] = ACTIONS(690), + [anon_sym_tag] = ACTIONS(690), + [anon_sym_now] = ACTIONS(690), + [anon_sym_type] = ACTIONS(690), + [anon_sym_58] = ACTIONS(690), + [anon_sym_dump] = ACTIONS(690), + [anon_sym_regex] = ACTIONS(690), + [anon_sym_utf] = ACTIONS(690), + [anon_sym_send] = ACTIONS(690), + [anon_sym_recv] = ACTIONS(690), + [anon_sym_tryrecv] = ACTIONS(690), + [anon_sym_complex] = ACTIONS(690), + [anon_sym_59] = ACTIONS(690), + [anon_sym_rerank] = ACTIONS(690), + [anon_sym_60] = ACTIONS(690), + [anon_sym_fix] = ACTIONS(690), + [anon_sym_61] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(690), + [sym__endOfLine] = ACTIONS(5), + }, + [172] = { + [sym_inlineFunction] = STATE(207), + [sym_function] = STATE(207), + [anon_sym_PIPE] = ACTIONS(478), + [sym_identifier] = ACTIONS(694), + [sym_system] = ACTIONS(696), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(682), + [sym_closeParen] = ACTIONS(478), + [sym_underscore] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(300), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_identity] = ACTIONS(300), + [anon_sym_id] = ACTIONS(302), + [anon_sym_6] = ACTIONS(300), + [anon_sym_not] = ACTIONS(300), + [anon_sym_7] = ACTIONS(300), + [anon_sym_sign] = ACTIONS(300), + [anon_sym_8] = ACTIONS(300), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_9] = ACTIONS(300), + [anon_sym_absolutevalue] = ACTIONS(300), + [anon_sym_10] = ACTIONS(300), + [anon_sym_sqrt] = ACTIONS(300), + [anon_sym_11] = ACTIONS(300), + [anon_sym_sine] = ACTIONS(300), + [anon_sym_12] = ACTIONS(300), + [anon_sym_floor] = ACTIONS(300), + [anon_sym_13] = ACTIONS(300), + [anon_sym_ceiling] = ACTIONS(300), + [anon_sym_14] = ACTIONS(300), + [anon_sym_round] = ACTIONS(300), + [anon_sym_15] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_16] = ACTIONS(300), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_17] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_18] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_19] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_20] = ACTIONS(300), + [anon_sym_modulus] = ACTIONS(300), + [anon_sym_21] = ACTIONS(300), + [anon_sym_power] = ACTIONS(300), + [anon_sym_22] = ACTIONS(300), + [anon_sym_logarithm] = ACTIONS(300), + [anon_sym_23] = ACTIONS(300), + [anon_sym_minimum] = ACTIONS(300), + [anon_sym_24] = ACTIONS(300), + [anon_sym_maximum] = ACTIONS(300), + [anon_sym_25] = ACTIONS(300), + [anon_sym_atangent] = ACTIONS(300), + [anon_sym_26] = ACTIONS(300), + [anon_sym_length] = ACTIONS(300), + [anon_sym_27] = ACTIONS(300), + [anon_sym_shape] = ACTIONS(300), + [anon_sym_28] = ACTIONS(300), + [anon_sym_range] = ACTIONS(300), + [anon_sym_29] = ACTIONS(300), + [anon_sym_first] = ACTIONS(300), + [anon_sym_30] = ACTIONS(300), + [anon_sym_reverse] = ACTIONS(300), + [anon_sym_31] = ACTIONS(300), + [anon_sym_deshape] = ACTIONS(300), + [anon_sym_32] = ACTIONS(300), + [anon_sym_bits] = ACTIONS(300), + [anon_sym_33] = ACTIONS(300), + [anon_sym_transpose] = ACTIONS(300), + [anon_sym_34] = ACTIONS(300), + [anon_sym_rise] = ACTIONS(300), + [anon_sym_35] = ACTIONS(300), + [anon_sym_fall] = ACTIONS(300), + [anon_sym_36] = ACTIONS(300), + [anon_sym_where] = ACTIONS(300), + [anon_sym_37] = ACTIONS(300), + [anon_sym_classify] = ACTIONS(300), + [anon_sym_38] = ACTIONS(300), + [anon_sym_deduplicate] = ACTIONS(300), + [anon_sym_39] = ACTIONS(300), + [anon_sym_box] = ACTIONS(300), + [anon_sym_40] = ACTIONS(300), + [anon_sym_unbox] = ACTIONS(300), + [anon_sym_41] = ACTIONS(300), + [anon_sym_match] = ACTIONS(300), + [anon_sym_42] = ACTIONS(300), + [anon_sym_couple] = ACTIONS(300), + [anon_sym_43] = ACTIONS(300), + [anon_sym_join] = ACTIONS(300), + [anon_sym_44] = ACTIONS(300), + [anon_sym_select] = ACTIONS(300), + [anon_sym_45] = ACTIONS(300), + [anon_sym_pick] = ACTIONS(300), + [anon_sym_46] = ACTIONS(300), + [anon_sym_reshape] = ACTIONS(300), + [anon_sym_47] = ACTIONS(300), + [anon_sym_take] = ACTIONS(300), + [anon_sym_48] = ACTIONS(300), + [anon_sym_drop] = ACTIONS(300), + [anon_sym_49] = ACTIONS(300), + [anon_sym_rotate] = ACTIONS(300), + [anon_sym_50] = ACTIONS(300), + [anon_sym_windows] = ACTIONS(300), + [anon_sym_51] = ACTIONS(300), + [anon_sym_keep] = ACTIONS(300), + [anon_sym_52] = ACTIONS(300), + [anon_sym_find] = ACTIONS(300), + [anon_sym_53] = ACTIONS(300), + [anon_sym_member] = ACTIONS(300), + [anon_sym_54] = ACTIONS(300), + [anon_sym_indexof] = ACTIONS(300), + [anon_sym_55] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(300), + [anon_sym_56] = ACTIONS(300), + [anon_sym_wait] = ACTIONS(300), + [anon_sym_parse] = ACTIONS(300), + [anon_sym_random] = ACTIONS(300), + [anon_sym_57] = ACTIONS(300), + [anon_sym_gen] = ACTIONS(300), + [anon_sym_deal] = ACTIONS(300), + [anon_sym_tag] = ACTIONS(300), + [anon_sym_now] = ACTIONS(300), + [anon_sym_type] = ACTIONS(300), + [anon_sym_58] = ACTIONS(300), + [anon_sym_dump] = ACTIONS(300), + [anon_sym_regex] = ACTIONS(300), + [anon_sym_utf] = ACTIONS(300), + [anon_sym_send] = ACTIONS(300), + [anon_sym_recv] = ACTIONS(300), + [anon_sym_tryrecv] = ACTIONS(300), + [anon_sym_complex] = ACTIONS(300), + [anon_sym_59] = ACTIONS(300), + [anon_sym_rerank] = ACTIONS(300), + [anon_sym_60] = ACTIONS(300), + [anon_sym_fix] = ACTIONS(300), + [anon_sym_61] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(300), [sym__endOfLine] = ACTIONS(5), }, [173] = { - [anon_sym_PIPE] = ACTIONS(510), - [sym_identifier] = ACTIONS(508), - [sym_system] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(550), + [sym_identifier] = ACTIONS(548), + [sym_system] = ACTIONS(550), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(510), - [sym_closeParen] = ACTIONS(510), - [sym_underscore] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_COMMA] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_identity] = ACTIONS(510), - [anon_sym_id] = ACTIONS(508), - [anon_sym_6] = ACTIONS(510), - [anon_sym_not] = ACTIONS(510), - [anon_sym_7] = ACTIONS(510), - [anon_sym_sign] = ACTIONS(510), - [anon_sym_8] = ACTIONS(510), - [anon_sym_BQUOTE] = ACTIONS(510), - [anon_sym_9] = ACTIONS(510), - [anon_sym_absolutevalue] = ACTIONS(510), - [anon_sym_10] = ACTIONS(510), - [anon_sym_sqrt] = ACTIONS(510), - [anon_sym_11] = ACTIONS(510), - [anon_sym_sine] = ACTIONS(510), - [anon_sym_12] = ACTIONS(510), - [anon_sym_floor] = ACTIONS(510), - [anon_sym_13] = ACTIONS(510), - [anon_sym_ceiling] = ACTIONS(510), - [anon_sym_14] = ACTIONS(510), - [anon_sym_round] = ACTIONS(510), - [anon_sym_15] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_16] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_17] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_18] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_19] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_20] = ACTIONS(510), - [anon_sym_modulus] = ACTIONS(510), - [anon_sym_21] = ACTIONS(510), - [anon_sym_power] = ACTIONS(510), - [anon_sym_22] = ACTIONS(510), - [anon_sym_logarithm] = ACTIONS(510), - [anon_sym_23] = ACTIONS(510), - [anon_sym_minimum] = ACTIONS(510), - [anon_sym_24] = ACTIONS(510), - [anon_sym_maximum] = ACTIONS(510), - [anon_sym_25] = ACTIONS(510), - [anon_sym_atangent] = ACTIONS(510), - [anon_sym_26] = ACTIONS(510), - [anon_sym_length] = ACTIONS(510), - [anon_sym_27] = ACTIONS(510), - [anon_sym_shape] = ACTIONS(510), - [anon_sym_28] = ACTIONS(510), - [anon_sym_range] = ACTIONS(510), - [anon_sym_29] = ACTIONS(510), - [anon_sym_first] = ACTIONS(510), - [anon_sym_30] = ACTIONS(510), - [anon_sym_reverse] = ACTIONS(510), - [anon_sym_31] = ACTIONS(510), - [anon_sym_deshape] = ACTIONS(510), - [anon_sym_32] = ACTIONS(510), - [anon_sym_bits] = ACTIONS(510), - [anon_sym_33] = ACTIONS(510), - [anon_sym_transpose] = ACTIONS(510), - [anon_sym_34] = ACTIONS(510), - [anon_sym_rise] = ACTIONS(510), - [anon_sym_35] = ACTIONS(510), - [anon_sym_fall] = ACTIONS(510), - [anon_sym_36] = ACTIONS(510), - [anon_sym_where] = ACTIONS(510), - [anon_sym_37] = ACTIONS(510), - [anon_sym_classify] = ACTIONS(510), - [anon_sym_38] = ACTIONS(510), - [anon_sym_deduplicate] = ACTIONS(510), - [anon_sym_39] = ACTIONS(510), - [anon_sym_box] = ACTIONS(510), - [anon_sym_40] = ACTIONS(510), - [anon_sym_unbox] = ACTIONS(510), - [anon_sym_41] = ACTIONS(510), - [anon_sym_match] = ACTIONS(510), - [anon_sym_42] = ACTIONS(510), - [anon_sym_couple] = ACTIONS(510), - [anon_sym_43] = ACTIONS(510), - [anon_sym_join] = ACTIONS(510), - [anon_sym_44] = ACTIONS(510), - [anon_sym_select] = ACTIONS(510), - [anon_sym_45] = ACTIONS(510), - [anon_sym_pick] = ACTIONS(510), - [anon_sym_46] = ACTIONS(510), - [anon_sym_reshape] = ACTIONS(510), - [anon_sym_47] = ACTIONS(510), - [anon_sym_take] = ACTIONS(510), - [anon_sym_48] = ACTIONS(510), - [anon_sym_drop] = ACTIONS(510), - [anon_sym_49] = ACTIONS(510), - [anon_sym_rotate] = ACTIONS(510), - [anon_sym_50] = ACTIONS(510), - [anon_sym_windows] = ACTIONS(510), - [anon_sym_51] = ACTIONS(510), - [anon_sym_keep] = ACTIONS(510), - [anon_sym_52] = ACTIONS(510), - [anon_sym_find] = ACTIONS(510), - [anon_sym_53] = ACTIONS(510), - [anon_sym_member] = ACTIONS(510), - [anon_sym_54] = ACTIONS(510), - [anon_sym_indexof] = ACTIONS(510), - [anon_sym_55] = ACTIONS(510), - [anon_sym_assert] = ACTIONS(510), - [anon_sym_56] = ACTIONS(510), - [anon_sym_wait] = ACTIONS(510), - [anon_sym_parse] = ACTIONS(510), - [anon_sym_random] = ACTIONS(510), - [anon_sym_57] = ACTIONS(510), - [anon_sym_gen] = ACTIONS(510), - [anon_sym_deal] = ACTIONS(510), - [anon_sym_tag] = ACTIONS(510), - [anon_sym_now] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_58] = ACTIONS(510), - [anon_sym_dump] = ACTIONS(510), - [anon_sym_regex] = ACTIONS(510), - [anon_sym_utf] = ACTIONS(510), - [anon_sym_send] = ACTIONS(510), - [anon_sym_recv] = ACTIONS(510), - [anon_sym_tryrecv] = ACTIONS(510), - [anon_sym_complex] = ACTIONS(510), - [anon_sym_59] = ACTIONS(510), - [anon_sym_rerank] = ACTIONS(510), - [anon_sym_60] = ACTIONS(510), - [anon_sym_fix] = ACTIONS(510), - [anon_sym_61] = ACTIONS(510), + [sym_openParen] = ACTIONS(550), + [sym_closeParen] = ACTIONS(550), + [sym_underscore] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_identity] = ACTIONS(550), + [anon_sym_id] = ACTIONS(548), + [anon_sym_6] = ACTIONS(550), + [anon_sym_not] = ACTIONS(550), + [anon_sym_7] = ACTIONS(550), + [anon_sym_sign] = ACTIONS(550), + [anon_sym_8] = ACTIONS(550), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_9] = ACTIONS(550), + [anon_sym_absolutevalue] = ACTIONS(550), + [anon_sym_10] = ACTIONS(550), + [anon_sym_sqrt] = ACTIONS(550), + [anon_sym_11] = ACTIONS(550), + [anon_sym_sine] = ACTIONS(550), + [anon_sym_12] = ACTIONS(550), + [anon_sym_floor] = ACTIONS(550), + [anon_sym_13] = ACTIONS(550), + [anon_sym_ceiling] = ACTIONS(550), + [anon_sym_14] = ACTIONS(550), + [anon_sym_round] = ACTIONS(550), + [anon_sym_15] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_16] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_17] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_18] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_19] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_20] = ACTIONS(550), + [anon_sym_modulus] = ACTIONS(550), + [anon_sym_21] = ACTIONS(550), + [anon_sym_power] = ACTIONS(550), + [anon_sym_22] = ACTIONS(550), + [anon_sym_logarithm] = ACTIONS(550), + [anon_sym_23] = ACTIONS(550), + [anon_sym_minimum] = ACTIONS(550), + [anon_sym_24] = ACTIONS(550), + [anon_sym_maximum] = ACTIONS(550), + [anon_sym_25] = ACTIONS(550), + [anon_sym_atangent] = ACTIONS(550), + [anon_sym_26] = ACTIONS(550), + [anon_sym_length] = ACTIONS(550), + [anon_sym_27] = ACTIONS(550), + [anon_sym_shape] = ACTIONS(550), + [anon_sym_28] = ACTIONS(550), + [anon_sym_range] = ACTIONS(550), + [anon_sym_29] = ACTIONS(550), + [anon_sym_first] = ACTIONS(550), + [anon_sym_30] = ACTIONS(550), + [anon_sym_reverse] = ACTIONS(550), + [anon_sym_31] = ACTIONS(550), + [anon_sym_deshape] = ACTIONS(550), + [anon_sym_32] = ACTIONS(550), + [anon_sym_bits] = ACTIONS(550), + [anon_sym_33] = ACTIONS(550), + [anon_sym_transpose] = ACTIONS(550), + [anon_sym_34] = ACTIONS(550), + [anon_sym_rise] = ACTIONS(550), + [anon_sym_35] = ACTIONS(550), + [anon_sym_fall] = ACTIONS(550), + [anon_sym_36] = ACTIONS(550), + [anon_sym_where] = ACTIONS(550), + [anon_sym_37] = ACTIONS(550), + [anon_sym_classify] = ACTIONS(550), + [anon_sym_38] = ACTIONS(550), + [anon_sym_deduplicate] = ACTIONS(550), + [anon_sym_39] = ACTIONS(550), + [anon_sym_box] = ACTIONS(550), + [anon_sym_40] = ACTIONS(550), + [anon_sym_unbox] = ACTIONS(550), + [anon_sym_41] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_42] = ACTIONS(550), + [anon_sym_couple] = ACTIONS(550), + [anon_sym_43] = ACTIONS(550), + [anon_sym_join] = ACTIONS(550), + [anon_sym_44] = ACTIONS(550), + [anon_sym_select] = ACTIONS(550), + [anon_sym_45] = ACTIONS(550), + [anon_sym_pick] = ACTIONS(550), + [anon_sym_46] = ACTIONS(550), + [anon_sym_reshape] = ACTIONS(550), + [anon_sym_47] = ACTIONS(550), + [anon_sym_take] = ACTIONS(550), + [anon_sym_48] = ACTIONS(550), + [anon_sym_drop] = ACTIONS(550), + [anon_sym_49] = ACTIONS(550), + [anon_sym_rotate] = ACTIONS(550), + [anon_sym_50] = ACTIONS(550), + [anon_sym_windows] = ACTIONS(550), + [anon_sym_51] = ACTIONS(550), + [anon_sym_keep] = ACTIONS(550), + [anon_sym_52] = ACTIONS(550), + [anon_sym_find] = ACTIONS(550), + [anon_sym_53] = ACTIONS(550), + [anon_sym_member] = ACTIONS(550), + [anon_sym_54] = ACTIONS(550), + [anon_sym_indexof] = ACTIONS(550), + [anon_sym_55] = ACTIONS(550), + [anon_sym_assert] = ACTIONS(550), + [anon_sym_56] = ACTIONS(550), + [anon_sym_wait] = ACTIONS(550), + [anon_sym_parse] = ACTIONS(550), + [anon_sym_random] = ACTIONS(550), + [anon_sym_57] = ACTIONS(550), + [anon_sym_gen] = ACTIONS(550), + [anon_sym_deal] = ACTIONS(550), + [anon_sym_tag] = ACTIONS(550), + [anon_sym_now] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_58] = ACTIONS(550), + [anon_sym_dump] = ACTIONS(550), + [anon_sym_regex] = ACTIONS(550), + [anon_sym_utf] = ACTIONS(550), + [anon_sym_send] = ACTIONS(550), + [anon_sym_recv] = ACTIONS(550), + [anon_sym_tryrecv] = ACTIONS(550), + [anon_sym_complex] = ACTIONS(550), + [anon_sym_59] = ACTIONS(550), + [anon_sym_rerank] = ACTIONS(550), + [anon_sym_60] = ACTIONS(550), + [anon_sym_fix] = ACTIONS(550), + [anon_sym_61] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(550), [sym__endOfLine] = ACTIONS(5), }, [174] = { - [anon_sym_PIPE] = ACTIONS(486), - [sym_identifier] = ACTIONS(484), - [sym_system] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(546), + [sym_identifier] = ACTIONS(544), + [sym_system] = ACTIONS(546), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(486), - [sym_closeParen] = ACTIONS(486), - [sym_underscore] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(486), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_identity] = ACTIONS(486), - [anon_sym_id] = ACTIONS(484), - [anon_sym_6] = ACTIONS(486), - [anon_sym_not] = ACTIONS(486), - [anon_sym_7] = ACTIONS(486), - [anon_sym_sign] = ACTIONS(486), - [anon_sym_8] = ACTIONS(486), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_9] = ACTIONS(486), - [anon_sym_absolutevalue] = ACTIONS(486), - [anon_sym_10] = ACTIONS(486), - [anon_sym_sqrt] = ACTIONS(486), - [anon_sym_11] = ACTIONS(486), - [anon_sym_sine] = ACTIONS(486), - [anon_sym_12] = ACTIONS(486), - [anon_sym_floor] = ACTIONS(486), - [anon_sym_13] = ACTIONS(486), - [anon_sym_ceiling] = ACTIONS(486), - [anon_sym_14] = ACTIONS(486), - [anon_sym_round] = ACTIONS(486), - [anon_sym_15] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_16] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_17] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_18] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_19] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_20] = ACTIONS(486), - [anon_sym_modulus] = ACTIONS(486), - [anon_sym_21] = ACTIONS(486), - [anon_sym_power] = ACTIONS(486), - [anon_sym_22] = ACTIONS(486), - [anon_sym_logarithm] = ACTIONS(486), - [anon_sym_23] = ACTIONS(486), - [anon_sym_minimum] = ACTIONS(486), - [anon_sym_24] = ACTIONS(486), - [anon_sym_maximum] = ACTIONS(486), - [anon_sym_25] = ACTIONS(486), - [anon_sym_atangent] = ACTIONS(486), - [anon_sym_26] = ACTIONS(486), - [anon_sym_length] = ACTIONS(486), - [anon_sym_27] = ACTIONS(486), - [anon_sym_shape] = ACTIONS(486), - [anon_sym_28] = ACTIONS(486), - [anon_sym_range] = ACTIONS(486), - [anon_sym_29] = ACTIONS(486), - [anon_sym_first] = ACTIONS(486), - [anon_sym_30] = ACTIONS(486), - [anon_sym_reverse] = ACTIONS(486), - [anon_sym_31] = ACTIONS(486), - [anon_sym_deshape] = ACTIONS(486), - [anon_sym_32] = ACTIONS(486), - [anon_sym_bits] = ACTIONS(486), - [anon_sym_33] = ACTIONS(486), - [anon_sym_transpose] = ACTIONS(486), - [anon_sym_34] = ACTIONS(486), - [anon_sym_rise] = ACTIONS(486), - [anon_sym_35] = ACTIONS(486), - [anon_sym_fall] = ACTIONS(486), - [anon_sym_36] = ACTIONS(486), - [anon_sym_where] = ACTIONS(486), - [anon_sym_37] = ACTIONS(486), - [anon_sym_classify] = ACTIONS(486), - [anon_sym_38] = ACTIONS(486), - [anon_sym_deduplicate] = ACTIONS(486), - [anon_sym_39] = ACTIONS(486), - [anon_sym_box] = ACTIONS(486), - [anon_sym_40] = ACTIONS(486), - [anon_sym_unbox] = ACTIONS(486), - [anon_sym_41] = ACTIONS(486), - [anon_sym_match] = ACTIONS(486), - [anon_sym_42] = ACTIONS(486), - [anon_sym_couple] = ACTIONS(486), - [anon_sym_43] = ACTIONS(486), - [anon_sym_join] = ACTIONS(486), - [anon_sym_44] = ACTIONS(486), - [anon_sym_select] = ACTIONS(486), - [anon_sym_45] = ACTIONS(486), - [anon_sym_pick] = ACTIONS(486), - [anon_sym_46] = ACTIONS(486), - [anon_sym_reshape] = ACTIONS(486), - [anon_sym_47] = ACTIONS(486), - [anon_sym_take] = ACTIONS(486), - [anon_sym_48] = ACTIONS(486), - [anon_sym_drop] = ACTIONS(486), - [anon_sym_49] = ACTIONS(486), - [anon_sym_rotate] = ACTIONS(486), - [anon_sym_50] = ACTIONS(486), - [anon_sym_windows] = ACTIONS(486), - [anon_sym_51] = ACTIONS(486), - [anon_sym_keep] = ACTIONS(486), - [anon_sym_52] = ACTIONS(486), - [anon_sym_find] = ACTIONS(486), - [anon_sym_53] = ACTIONS(486), - [anon_sym_member] = ACTIONS(486), - [anon_sym_54] = ACTIONS(486), - [anon_sym_indexof] = ACTIONS(486), - [anon_sym_55] = ACTIONS(486), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_56] = ACTIONS(486), - [anon_sym_wait] = ACTIONS(486), - [anon_sym_parse] = ACTIONS(486), - [anon_sym_random] = ACTIONS(486), - [anon_sym_57] = ACTIONS(486), - [anon_sym_gen] = ACTIONS(486), - [anon_sym_deal] = ACTIONS(486), - [anon_sym_tag] = ACTIONS(486), - [anon_sym_now] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_58] = ACTIONS(486), - [anon_sym_dump] = ACTIONS(486), - [anon_sym_regex] = ACTIONS(486), - [anon_sym_utf] = ACTIONS(486), - [anon_sym_send] = ACTIONS(486), - [anon_sym_recv] = ACTIONS(486), - [anon_sym_tryrecv] = ACTIONS(486), - [anon_sym_complex] = ACTIONS(486), - [anon_sym_59] = ACTIONS(486), - [anon_sym_rerank] = ACTIONS(486), - [anon_sym_60] = ACTIONS(486), - [anon_sym_fix] = ACTIONS(486), - [anon_sym_61] = ACTIONS(486), + [sym_openParen] = ACTIONS(546), + [sym_closeParen] = ACTIONS(546), + [sym_underscore] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_identity] = ACTIONS(546), + [anon_sym_id] = ACTIONS(544), + [anon_sym_6] = ACTIONS(546), + [anon_sym_not] = ACTIONS(546), + [anon_sym_7] = ACTIONS(546), + [anon_sym_sign] = ACTIONS(546), + [anon_sym_8] = ACTIONS(546), + [anon_sym_BQUOTE] = ACTIONS(546), + [anon_sym_9] = ACTIONS(546), + [anon_sym_absolutevalue] = ACTIONS(546), + [anon_sym_10] = ACTIONS(546), + [anon_sym_sqrt] = ACTIONS(546), + [anon_sym_11] = ACTIONS(546), + [anon_sym_sine] = ACTIONS(546), + [anon_sym_12] = ACTIONS(546), + [anon_sym_floor] = ACTIONS(546), + [anon_sym_13] = ACTIONS(546), + [anon_sym_ceiling] = ACTIONS(546), + [anon_sym_14] = ACTIONS(546), + [anon_sym_round] = ACTIONS(546), + [anon_sym_15] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_16] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_17] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_18] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_19] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_20] = ACTIONS(546), + [anon_sym_modulus] = ACTIONS(546), + [anon_sym_21] = ACTIONS(546), + [anon_sym_power] = ACTIONS(546), + [anon_sym_22] = ACTIONS(546), + [anon_sym_logarithm] = ACTIONS(546), + [anon_sym_23] = ACTIONS(546), + [anon_sym_minimum] = ACTIONS(546), + [anon_sym_24] = ACTIONS(546), + [anon_sym_maximum] = ACTIONS(546), + [anon_sym_25] = ACTIONS(546), + [anon_sym_atangent] = ACTIONS(546), + [anon_sym_26] = ACTIONS(546), + [anon_sym_length] = ACTIONS(546), + [anon_sym_27] = ACTIONS(546), + [anon_sym_shape] = ACTIONS(546), + [anon_sym_28] = ACTIONS(546), + [anon_sym_range] = ACTIONS(546), + [anon_sym_29] = ACTIONS(546), + [anon_sym_first] = ACTIONS(546), + [anon_sym_30] = ACTIONS(546), + [anon_sym_reverse] = ACTIONS(546), + [anon_sym_31] = ACTIONS(546), + [anon_sym_deshape] = ACTIONS(546), + [anon_sym_32] = ACTIONS(546), + [anon_sym_bits] = ACTIONS(546), + [anon_sym_33] = ACTIONS(546), + [anon_sym_transpose] = ACTIONS(546), + [anon_sym_34] = ACTIONS(546), + [anon_sym_rise] = ACTIONS(546), + [anon_sym_35] = ACTIONS(546), + [anon_sym_fall] = ACTIONS(546), + [anon_sym_36] = ACTIONS(546), + [anon_sym_where] = ACTIONS(546), + [anon_sym_37] = ACTIONS(546), + [anon_sym_classify] = ACTIONS(546), + [anon_sym_38] = ACTIONS(546), + [anon_sym_deduplicate] = ACTIONS(546), + [anon_sym_39] = ACTIONS(546), + [anon_sym_box] = ACTIONS(546), + [anon_sym_40] = ACTIONS(546), + [anon_sym_unbox] = ACTIONS(546), + [anon_sym_41] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_42] = ACTIONS(546), + [anon_sym_couple] = ACTIONS(546), + [anon_sym_43] = ACTIONS(546), + [anon_sym_join] = ACTIONS(546), + [anon_sym_44] = ACTIONS(546), + [anon_sym_select] = ACTIONS(546), + [anon_sym_45] = ACTIONS(546), + [anon_sym_pick] = ACTIONS(546), + [anon_sym_46] = ACTIONS(546), + [anon_sym_reshape] = ACTIONS(546), + [anon_sym_47] = ACTIONS(546), + [anon_sym_take] = ACTIONS(546), + [anon_sym_48] = ACTIONS(546), + [anon_sym_drop] = ACTIONS(546), + [anon_sym_49] = ACTIONS(546), + [anon_sym_rotate] = ACTIONS(546), + [anon_sym_50] = ACTIONS(546), + [anon_sym_windows] = ACTIONS(546), + [anon_sym_51] = ACTIONS(546), + [anon_sym_keep] = ACTIONS(546), + [anon_sym_52] = ACTIONS(546), + [anon_sym_find] = ACTIONS(546), + [anon_sym_53] = ACTIONS(546), + [anon_sym_member] = ACTIONS(546), + [anon_sym_54] = ACTIONS(546), + [anon_sym_indexof] = ACTIONS(546), + [anon_sym_55] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(546), + [anon_sym_56] = ACTIONS(546), + [anon_sym_wait] = ACTIONS(546), + [anon_sym_parse] = ACTIONS(546), + [anon_sym_random] = ACTIONS(546), + [anon_sym_57] = ACTIONS(546), + [anon_sym_gen] = ACTIONS(546), + [anon_sym_deal] = ACTIONS(546), + [anon_sym_tag] = ACTIONS(546), + [anon_sym_now] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_58] = ACTIONS(546), + [anon_sym_dump] = ACTIONS(546), + [anon_sym_regex] = ACTIONS(546), + [anon_sym_utf] = ACTIONS(546), + [anon_sym_send] = ACTIONS(546), + [anon_sym_recv] = ACTIONS(546), + [anon_sym_tryrecv] = ACTIONS(546), + [anon_sym_complex] = ACTIONS(546), + [anon_sym_59] = ACTIONS(546), + [anon_sym_rerank] = ACTIONS(546), + [anon_sym_60] = ACTIONS(546), + [anon_sym_fix] = ACTIONS(546), + [anon_sym_61] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(546), [sym__endOfLine] = ACTIONS(5), }, [175] = { - [anon_sym_PIPE] = ACTIONS(458), - [sym_identifier] = ACTIONS(456), - [sym_system] = ACTIONS(458), - [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(458), - [sym_closeParen] = ACTIONS(458), - [sym_underscore] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_identity] = ACTIONS(458), - [anon_sym_id] = ACTIONS(456), - [anon_sym_6] = ACTIONS(458), - [anon_sym_not] = ACTIONS(458), - [anon_sym_7] = ACTIONS(458), - [anon_sym_sign] = ACTIONS(458), - [anon_sym_8] = ACTIONS(458), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_9] = ACTIONS(458), - [anon_sym_absolutevalue] = ACTIONS(458), - [anon_sym_10] = ACTIONS(458), - [anon_sym_sqrt] = ACTIONS(458), - [anon_sym_11] = ACTIONS(458), - [anon_sym_sine] = ACTIONS(458), - [anon_sym_12] = ACTIONS(458), - [anon_sym_floor] = ACTIONS(458), - [anon_sym_13] = ACTIONS(458), - [anon_sym_ceiling] = ACTIONS(458), - [anon_sym_14] = ACTIONS(458), - [anon_sym_round] = ACTIONS(458), - [anon_sym_15] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_16] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_17] = ACTIONS(458), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_18] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_19] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [anon_sym_20] = ACTIONS(458), - [anon_sym_modulus] = ACTIONS(458), - [anon_sym_21] = ACTIONS(458), - [anon_sym_power] = ACTIONS(458), - [anon_sym_22] = ACTIONS(458), - [anon_sym_logarithm] = ACTIONS(458), - [anon_sym_23] = ACTIONS(458), - [anon_sym_minimum] = ACTIONS(458), - [anon_sym_24] = ACTIONS(458), - [anon_sym_maximum] = ACTIONS(458), - [anon_sym_25] = ACTIONS(458), - [anon_sym_atangent] = ACTIONS(458), - [anon_sym_26] = ACTIONS(458), - [anon_sym_length] = ACTIONS(458), - [anon_sym_27] = ACTIONS(458), - [anon_sym_shape] = ACTIONS(458), - [anon_sym_28] = ACTIONS(458), - [anon_sym_range] = ACTIONS(458), - [anon_sym_29] = ACTIONS(458), - [anon_sym_first] = ACTIONS(458), - [anon_sym_30] = ACTIONS(458), - [anon_sym_reverse] = ACTIONS(458), - [anon_sym_31] = ACTIONS(458), - [anon_sym_deshape] = ACTIONS(458), - [anon_sym_32] = ACTIONS(458), - [anon_sym_bits] = ACTIONS(458), - [anon_sym_33] = ACTIONS(458), - [anon_sym_transpose] = ACTIONS(458), - [anon_sym_34] = ACTIONS(458), - [anon_sym_rise] = ACTIONS(458), - [anon_sym_35] = ACTIONS(458), - [anon_sym_fall] = ACTIONS(458), - [anon_sym_36] = ACTIONS(458), - [anon_sym_where] = ACTIONS(458), - [anon_sym_37] = ACTIONS(458), - [anon_sym_classify] = ACTIONS(458), - [anon_sym_38] = ACTIONS(458), - [anon_sym_deduplicate] = ACTIONS(458), - [anon_sym_39] = ACTIONS(458), - [anon_sym_box] = ACTIONS(458), - [anon_sym_40] = ACTIONS(458), - [anon_sym_unbox] = ACTIONS(458), - [anon_sym_41] = ACTIONS(458), - [anon_sym_match] = ACTIONS(458), - [anon_sym_42] = ACTIONS(458), - [anon_sym_couple] = ACTIONS(458), - [anon_sym_43] = ACTIONS(458), - [anon_sym_join] = ACTIONS(458), - [anon_sym_44] = ACTIONS(458), - [anon_sym_select] = ACTIONS(458), - [anon_sym_45] = ACTIONS(458), - [anon_sym_pick] = ACTIONS(458), - [anon_sym_46] = ACTIONS(458), - [anon_sym_reshape] = ACTIONS(458), - [anon_sym_47] = ACTIONS(458), - [anon_sym_take] = ACTIONS(458), - [anon_sym_48] = ACTIONS(458), - [anon_sym_drop] = ACTIONS(458), - [anon_sym_49] = ACTIONS(458), - [anon_sym_rotate] = ACTIONS(458), - [anon_sym_50] = ACTIONS(458), - [anon_sym_windows] = ACTIONS(458), - [anon_sym_51] = ACTIONS(458), - [anon_sym_keep] = ACTIONS(458), - [anon_sym_52] = ACTIONS(458), - [anon_sym_find] = ACTIONS(458), - [anon_sym_53] = ACTIONS(458), - [anon_sym_member] = ACTIONS(458), - [anon_sym_54] = ACTIONS(458), - [anon_sym_indexof] = ACTIONS(458), - [anon_sym_55] = ACTIONS(458), - [anon_sym_assert] = ACTIONS(458), - [anon_sym_56] = ACTIONS(458), - [anon_sym_wait] = ACTIONS(458), - [anon_sym_parse] = ACTIONS(458), - [anon_sym_random] = ACTIONS(458), - [anon_sym_57] = ACTIONS(458), - [anon_sym_gen] = ACTIONS(458), - [anon_sym_deal] = ACTIONS(458), - [anon_sym_tag] = ACTIONS(458), - [anon_sym_now] = ACTIONS(458), - [anon_sym_type] = ACTIONS(458), - [anon_sym_58] = ACTIONS(458), - [anon_sym_dump] = ACTIONS(458), - [anon_sym_regex] = ACTIONS(458), - [anon_sym_utf] = ACTIONS(458), - [anon_sym_send] = ACTIONS(458), - [anon_sym_recv] = ACTIONS(458), - [anon_sym_tryrecv] = ACTIONS(458), - [anon_sym_complex] = ACTIONS(458), - [anon_sym_59] = ACTIONS(458), - [anon_sym_rerank] = ACTIONS(458), - [anon_sym_60] = ACTIONS(458), - [anon_sym_fix] = ACTIONS(458), - [anon_sym_61] = ACTIONS(458), - [sym__endOfLine] = ACTIONS(5), - }, - [176] = { - [anon_sym_PIPE] = ACTIONS(498), - [sym_identifier] = ACTIONS(496), - [sym_system] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(522), + [sym_identifier] = ACTIONS(520), + [sym_system] = ACTIONS(522), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(498), - [sym_closeParen] = ACTIONS(498), - [sym_underscore] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(498), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_COLON] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_identity] = ACTIONS(498), - [anon_sym_id] = ACTIONS(496), - [anon_sym_6] = ACTIONS(498), - [anon_sym_not] = ACTIONS(498), - [anon_sym_7] = ACTIONS(498), - [anon_sym_sign] = ACTIONS(498), - [anon_sym_8] = ACTIONS(498), - [anon_sym_BQUOTE] = ACTIONS(498), - [anon_sym_9] = ACTIONS(498), - [anon_sym_absolutevalue] = ACTIONS(498), - [anon_sym_10] = ACTIONS(498), - [anon_sym_sqrt] = ACTIONS(498), - [anon_sym_11] = ACTIONS(498), - [anon_sym_sine] = ACTIONS(498), - [anon_sym_12] = ACTIONS(498), - [anon_sym_floor] = ACTIONS(498), - [anon_sym_13] = ACTIONS(498), - [anon_sym_ceiling] = ACTIONS(498), - [anon_sym_14] = ACTIONS(498), - [anon_sym_round] = ACTIONS(498), - [anon_sym_15] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_16] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_17] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_18] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_19] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_20] = ACTIONS(498), - [anon_sym_modulus] = ACTIONS(498), - [anon_sym_21] = ACTIONS(498), - [anon_sym_power] = ACTIONS(498), - [anon_sym_22] = ACTIONS(498), - [anon_sym_logarithm] = ACTIONS(498), - [anon_sym_23] = ACTIONS(498), - [anon_sym_minimum] = ACTIONS(498), - [anon_sym_24] = ACTIONS(498), - [anon_sym_maximum] = ACTIONS(498), - [anon_sym_25] = ACTIONS(498), - [anon_sym_atangent] = ACTIONS(498), - [anon_sym_26] = ACTIONS(498), - [anon_sym_length] = ACTIONS(498), - [anon_sym_27] = ACTIONS(498), - [anon_sym_shape] = ACTIONS(498), - [anon_sym_28] = ACTIONS(498), - [anon_sym_range] = ACTIONS(498), - [anon_sym_29] = ACTIONS(498), - [anon_sym_first] = ACTIONS(498), - [anon_sym_30] = ACTIONS(498), - [anon_sym_reverse] = ACTIONS(498), - [anon_sym_31] = ACTIONS(498), - [anon_sym_deshape] = ACTIONS(498), - [anon_sym_32] = ACTIONS(498), - [anon_sym_bits] = ACTIONS(498), - [anon_sym_33] = ACTIONS(498), - [anon_sym_transpose] = ACTIONS(498), - [anon_sym_34] = ACTIONS(498), - [anon_sym_rise] = ACTIONS(498), - [anon_sym_35] = ACTIONS(498), - [anon_sym_fall] = ACTIONS(498), - [anon_sym_36] = ACTIONS(498), - [anon_sym_where] = ACTIONS(498), - [anon_sym_37] = ACTIONS(498), - [anon_sym_classify] = ACTIONS(498), - [anon_sym_38] = ACTIONS(498), - [anon_sym_deduplicate] = ACTIONS(498), - [anon_sym_39] = ACTIONS(498), - [anon_sym_box] = ACTIONS(498), - [anon_sym_40] = ACTIONS(498), - [anon_sym_unbox] = ACTIONS(498), - [anon_sym_41] = ACTIONS(498), - [anon_sym_match] = ACTIONS(498), - [anon_sym_42] = ACTIONS(498), - [anon_sym_couple] = ACTIONS(498), - [anon_sym_43] = ACTIONS(498), - [anon_sym_join] = ACTIONS(498), - [anon_sym_44] = ACTIONS(498), - [anon_sym_select] = ACTIONS(498), - [anon_sym_45] = ACTIONS(498), - [anon_sym_pick] = ACTIONS(498), - [anon_sym_46] = ACTIONS(498), - [anon_sym_reshape] = ACTIONS(498), - [anon_sym_47] = ACTIONS(498), - [anon_sym_take] = ACTIONS(498), - [anon_sym_48] = ACTIONS(498), - [anon_sym_drop] = ACTIONS(498), - [anon_sym_49] = ACTIONS(498), - [anon_sym_rotate] = ACTIONS(498), - [anon_sym_50] = ACTIONS(498), - [anon_sym_windows] = ACTIONS(498), - [anon_sym_51] = ACTIONS(498), - [anon_sym_keep] = ACTIONS(498), - [anon_sym_52] = ACTIONS(498), - [anon_sym_find] = ACTIONS(498), - [anon_sym_53] = ACTIONS(498), - [anon_sym_member] = ACTIONS(498), - [anon_sym_54] = ACTIONS(498), - [anon_sym_indexof] = ACTIONS(498), - [anon_sym_55] = ACTIONS(498), - [anon_sym_assert] = ACTIONS(498), - [anon_sym_56] = ACTIONS(498), - [anon_sym_wait] = ACTIONS(498), - [anon_sym_parse] = ACTIONS(498), - [anon_sym_random] = ACTIONS(498), - [anon_sym_57] = ACTIONS(498), - [anon_sym_gen] = ACTIONS(498), - [anon_sym_deal] = ACTIONS(498), - [anon_sym_tag] = ACTIONS(498), - [anon_sym_now] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_58] = ACTIONS(498), - [anon_sym_dump] = ACTIONS(498), - [anon_sym_regex] = ACTIONS(498), - [anon_sym_utf] = ACTIONS(498), - [anon_sym_send] = ACTIONS(498), - [anon_sym_recv] = ACTIONS(498), - [anon_sym_tryrecv] = ACTIONS(498), - [anon_sym_complex] = ACTIONS(498), - [anon_sym_59] = ACTIONS(498), - [anon_sym_rerank] = ACTIONS(498), - [anon_sym_60] = ACTIONS(498), - [anon_sym_fix] = ACTIONS(498), - [anon_sym_61] = ACTIONS(498), + [sym_openParen] = ACTIONS(522), + [sym_closeParen] = ACTIONS(522), + [sym_underscore] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_identity] = ACTIONS(522), + [anon_sym_id] = ACTIONS(520), + [anon_sym_6] = ACTIONS(522), + [anon_sym_not] = ACTIONS(522), + [anon_sym_7] = ACTIONS(522), + [anon_sym_sign] = ACTIONS(522), + [anon_sym_8] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(522), + [anon_sym_9] = ACTIONS(522), + [anon_sym_absolutevalue] = ACTIONS(522), + [anon_sym_10] = ACTIONS(522), + [anon_sym_sqrt] = ACTIONS(522), + [anon_sym_11] = ACTIONS(522), + [anon_sym_sine] = ACTIONS(522), + [anon_sym_12] = ACTIONS(522), + [anon_sym_floor] = ACTIONS(522), + [anon_sym_13] = ACTIONS(522), + [anon_sym_ceiling] = ACTIONS(522), + [anon_sym_14] = ACTIONS(522), + [anon_sym_round] = ACTIONS(522), + [anon_sym_15] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_16] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_17] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_18] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_19] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_20] = ACTIONS(522), + [anon_sym_modulus] = ACTIONS(522), + [anon_sym_21] = ACTIONS(522), + [anon_sym_power] = ACTIONS(522), + [anon_sym_22] = ACTIONS(522), + [anon_sym_logarithm] = ACTIONS(522), + [anon_sym_23] = ACTIONS(522), + [anon_sym_minimum] = ACTIONS(522), + [anon_sym_24] = ACTIONS(522), + [anon_sym_maximum] = ACTIONS(522), + [anon_sym_25] = ACTIONS(522), + [anon_sym_atangent] = ACTIONS(522), + [anon_sym_26] = ACTIONS(522), + [anon_sym_length] = ACTIONS(522), + [anon_sym_27] = ACTIONS(522), + [anon_sym_shape] = ACTIONS(522), + [anon_sym_28] = ACTIONS(522), + [anon_sym_range] = ACTIONS(522), + [anon_sym_29] = ACTIONS(522), + [anon_sym_first] = ACTIONS(522), + [anon_sym_30] = ACTIONS(522), + [anon_sym_reverse] = ACTIONS(522), + [anon_sym_31] = ACTIONS(522), + [anon_sym_deshape] = ACTIONS(522), + [anon_sym_32] = ACTIONS(522), + [anon_sym_bits] = ACTIONS(522), + [anon_sym_33] = ACTIONS(522), + [anon_sym_transpose] = ACTIONS(522), + [anon_sym_34] = ACTIONS(522), + [anon_sym_rise] = ACTIONS(522), + [anon_sym_35] = ACTIONS(522), + [anon_sym_fall] = ACTIONS(522), + [anon_sym_36] = ACTIONS(522), + [anon_sym_where] = ACTIONS(522), + [anon_sym_37] = ACTIONS(522), + [anon_sym_classify] = ACTIONS(522), + [anon_sym_38] = ACTIONS(522), + [anon_sym_deduplicate] = ACTIONS(522), + [anon_sym_39] = ACTIONS(522), + [anon_sym_box] = ACTIONS(522), + [anon_sym_40] = ACTIONS(522), + [anon_sym_unbox] = ACTIONS(522), + [anon_sym_41] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_42] = ACTIONS(522), + [anon_sym_couple] = ACTIONS(522), + [anon_sym_43] = ACTIONS(522), + [anon_sym_join] = ACTIONS(522), + [anon_sym_44] = ACTIONS(522), + [anon_sym_select] = ACTIONS(522), + [anon_sym_45] = ACTIONS(522), + [anon_sym_pick] = ACTIONS(522), + [anon_sym_46] = ACTIONS(522), + [anon_sym_reshape] = ACTIONS(522), + [anon_sym_47] = ACTIONS(522), + [anon_sym_take] = ACTIONS(522), + [anon_sym_48] = ACTIONS(522), + [anon_sym_drop] = ACTIONS(522), + [anon_sym_49] = ACTIONS(522), + [anon_sym_rotate] = ACTIONS(522), + [anon_sym_50] = ACTIONS(522), + [anon_sym_windows] = ACTIONS(522), + [anon_sym_51] = ACTIONS(522), + [anon_sym_keep] = ACTIONS(522), + [anon_sym_52] = ACTIONS(522), + [anon_sym_find] = ACTIONS(522), + [anon_sym_53] = ACTIONS(522), + [anon_sym_member] = ACTIONS(522), + [anon_sym_54] = ACTIONS(522), + [anon_sym_indexof] = ACTIONS(522), + [anon_sym_55] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(522), + [anon_sym_56] = ACTIONS(522), + [anon_sym_wait] = ACTIONS(522), + [anon_sym_parse] = ACTIONS(522), + [anon_sym_random] = ACTIONS(522), + [anon_sym_57] = ACTIONS(522), + [anon_sym_gen] = ACTIONS(522), + [anon_sym_deal] = ACTIONS(522), + [anon_sym_tag] = ACTIONS(522), + [anon_sym_now] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_58] = ACTIONS(522), + [anon_sym_dump] = ACTIONS(522), + [anon_sym_regex] = ACTIONS(522), + [anon_sym_utf] = ACTIONS(522), + [anon_sym_send] = ACTIONS(522), + [anon_sym_recv] = ACTIONS(522), + [anon_sym_tryrecv] = ACTIONS(522), + [anon_sym_complex] = ACTIONS(522), + [anon_sym_59] = ACTIONS(522), + [anon_sym_rerank] = ACTIONS(522), + [anon_sym_60] = ACTIONS(522), + [anon_sym_fix] = ACTIONS(522), + [anon_sym_61] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [sym__endOfLine] = ACTIONS(5), + }, + [176] = { + [anon_sym_PIPE] = ACTIONS(538), + [sym_identifier] = ACTIONS(536), + [sym_system] = ACTIONS(538), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(538), + [sym_closeParen] = ACTIONS(538), + [sym_underscore] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_identity] = ACTIONS(538), + [anon_sym_id] = ACTIONS(536), + [anon_sym_6] = ACTIONS(538), + [anon_sym_not] = ACTIONS(538), + [anon_sym_7] = ACTIONS(538), + [anon_sym_sign] = ACTIONS(538), + [anon_sym_8] = ACTIONS(538), + [anon_sym_BQUOTE] = ACTIONS(538), + [anon_sym_9] = ACTIONS(538), + [anon_sym_absolutevalue] = ACTIONS(538), + [anon_sym_10] = ACTIONS(538), + [anon_sym_sqrt] = ACTIONS(538), + [anon_sym_11] = ACTIONS(538), + [anon_sym_sine] = ACTIONS(538), + [anon_sym_12] = ACTIONS(538), + [anon_sym_floor] = ACTIONS(538), + [anon_sym_13] = ACTIONS(538), + [anon_sym_ceiling] = ACTIONS(538), + [anon_sym_14] = ACTIONS(538), + [anon_sym_round] = ACTIONS(538), + [anon_sym_15] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_16] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_17] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_18] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_19] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_20] = ACTIONS(538), + [anon_sym_modulus] = ACTIONS(538), + [anon_sym_21] = ACTIONS(538), + [anon_sym_power] = ACTIONS(538), + [anon_sym_22] = ACTIONS(538), + [anon_sym_logarithm] = ACTIONS(538), + [anon_sym_23] = ACTIONS(538), + [anon_sym_minimum] = ACTIONS(538), + [anon_sym_24] = ACTIONS(538), + [anon_sym_maximum] = ACTIONS(538), + [anon_sym_25] = ACTIONS(538), + [anon_sym_atangent] = ACTIONS(538), + [anon_sym_26] = ACTIONS(538), + [anon_sym_length] = ACTIONS(538), + [anon_sym_27] = ACTIONS(538), + [anon_sym_shape] = ACTIONS(538), + [anon_sym_28] = ACTIONS(538), + [anon_sym_range] = ACTIONS(538), + [anon_sym_29] = ACTIONS(538), + [anon_sym_first] = ACTIONS(538), + [anon_sym_30] = ACTIONS(538), + [anon_sym_reverse] = ACTIONS(538), + [anon_sym_31] = ACTIONS(538), + [anon_sym_deshape] = ACTIONS(538), + [anon_sym_32] = ACTIONS(538), + [anon_sym_bits] = ACTIONS(538), + [anon_sym_33] = ACTIONS(538), + [anon_sym_transpose] = ACTIONS(538), + [anon_sym_34] = ACTIONS(538), + [anon_sym_rise] = ACTIONS(538), + [anon_sym_35] = ACTIONS(538), + [anon_sym_fall] = ACTIONS(538), + [anon_sym_36] = ACTIONS(538), + [anon_sym_where] = ACTIONS(538), + [anon_sym_37] = ACTIONS(538), + [anon_sym_classify] = ACTIONS(538), + [anon_sym_38] = ACTIONS(538), + [anon_sym_deduplicate] = ACTIONS(538), + [anon_sym_39] = ACTIONS(538), + [anon_sym_box] = ACTIONS(538), + [anon_sym_40] = ACTIONS(538), + [anon_sym_unbox] = ACTIONS(538), + [anon_sym_41] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_42] = ACTIONS(538), + [anon_sym_couple] = ACTIONS(538), + [anon_sym_43] = ACTIONS(538), + [anon_sym_join] = ACTIONS(538), + [anon_sym_44] = ACTIONS(538), + [anon_sym_select] = ACTIONS(538), + [anon_sym_45] = ACTIONS(538), + [anon_sym_pick] = ACTIONS(538), + [anon_sym_46] = ACTIONS(538), + [anon_sym_reshape] = ACTIONS(538), + [anon_sym_47] = ACTIONS(538), + [anon_sym_take] = ACTIONS(538), + [anon_sym_48] = ACTIONS(538), + [anon_sym_drop] = ACTIONS(538), + [anon_sym_49] = ACTIONS(538), + [anon_sym_rotate] = ACTIONS(538), + [anon_sym_50] = ACTIONS(538), + [anon_sym_windows] = ACTIONS(538), + [anon_sym_51] = ACTIONS(538), + [anon_sym_keep] = ACTIONS(538), + [anon_sym_52] = ACTIONS(538), + [anon_sym_find] = ACTIONS(538), + [anon_sym_53] = ACTIONS(538), + [anon_sym_member] = ACTIONS(538), + [anon_sym_54] = ACTIONS(538), + [anon_sym_indexof] = ACTIONS(538), + [anon_sym_55] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(538), + [anon_sym_56] = ACTIONS(538), + [anon_sym_wait] = ACTIONS(538), + [anon_sym_parse] = ACTIONS(538), + [anon_sym_random] = ACTIONS(538), + [anon_sym_57] = ACTIONS(538), + [anon_sym_gen] = ACTIONS(538), + [anon_sym_deal] = ACTIONS(538), + [anon_sym_tag] = ACTIONS(538), + [anon_sym_now] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_58] = ACTIONS(538), + [anon_sym_dump] = ACTIONS(538), + [anon_sym_regex] = ACTIONS(538), + [anon_sym_utf] = ACTIONS(538), + [anon_sym_send] = ACTIONS(538), + [anon_sym_recv] = ACTIONS(538), + [anon_sym_tryrecv] = ACTIONS(538), + [anon_sym_complex] = ACTIONS(538), + [anon_sym_59] = ACTIONS(538), + [anon_sym_rerank] = ACTIONS(538), + [anon_sym_60] = ACTIONS(538), + [anon_sym_fix] = ACTIONS(538), + [anon_sym_61] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(538), [sym__endOfLine] = ACTIONS(5), }, [177] = { - [anon_sym_PIPE] = ACTIONS(494), - [sym_identifier] = ACTIONS(492), - [sym_system] = ACTIONS(494), + [anon_sym_PIPE] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), + [sym_system] = ACTIONS(534), [sym_comment] = ACTIONS(3), - [sym_openParen] = ACTIONS(494), - [sym_closeParen] = ACTIONS(494), - [sym_underscore] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_identity] = ACTIONS(494), - [anon_sym_id] = ACTIONS(492), - [anon_sym_6] = ACTIONS(494), - [anon_sym_not] = ACTIONS(494), - [anon_sym_7] = ACTIONS(494), - [anon_sym_sign] = ACTIONS(494), - [anon_sym_8] = ACTIONS(494), - [anon_sym_BQUOTE] = ACTIONS(494), - [anon_sym_9] = ACTIONS(494), - [anon_sym_absolutevalue] = ACTIONS(494), - [anon_sym_10] = ACTIONS(494), - [anon_sym_sqrt] = ACTIONS(494), - [anon_sym_11] = ACTIONS(494), - [anon_sym_sine] = ACTIONS(494), - [anon_sym_12] = ACTIONS(494), - [anon_sym_floor] = ACTIONS(494), - [anon_sym_13] = ACTIONS(494), - [anon_sym_ceiling] = ACTIONS(494), - [anon_sym_14] = ACTIONS(494), - [anon_sym_round] = ACTIONS(494), - [anon_sym_15] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_16] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_17] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_18] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_19] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_20] = ACTIONS(494), - [anon_sym_modulus] = ACTIONS(494), - [anon_sym_21] = ACTIONS(494), - [anon_sym_power] = ACTIONS(494), - [anon_sym_22] = ACTIONS(494), - [anon_sym_logarithm] = ACTIONS(494), - [anon_sym_23] = ACTIONS(494), - [anon_sym_minimum] = ACTIONS(494), - [anon_sym_24] = ACTIONS(494), - [anon_sym_maximum] = ACTIONS(494), - [anon_sym_25] = ACTIONS(494), - [anon_sym_atangent] = ACTIONS(494), - [anon_sym_26] = ACTIONS(494), - [anon_sym_length] = ACTIONS(494), - [anon_sym_27] = ACTIONS(494), - [anon_sym_shape] = ACTIONS(494), - [anon_sym_28] = ACTIONS(494), - [anon_sym_range] = ACTIONS(494), - [anon_sym_29] = ACTIONS(494), - [anon_sym_first] = ACTIONS(494), - [anon_sym_30] = ACTIONS(494), - [anon_sym_reverse] = ACTIONS(494), - [anon_sym_31] = ACTIONS(494), - [anon_sym_deshape] = ACTIONS(494), - [anon_sym_32] = ACTIONS(494), - [anon_sym_bits] = ACTIONS(494), - [anon_sym_33] = ACTIONS(494), - [anon_sym_transpose] = ACTIONS(494), - [anon_sym_34] = ACTIONS(494), - [anon_sym_rise] = ACTIONS(494), - [anon_sym_35] = ACTIONS(494), - [anon_sym_fall] = ACTIONS(494), - [anon_sym_36] = ACTIONS(494), - [anon_sym_where] = ACTIONS(494), - [anon_sym_37] = ACTIONS(494), - [anon_sym_classify] = ACTIONS(494), - [anon_sym_38] = ACTIONS(494), - [anon_sym_deduplicate] = ACTIONS(494), - [anon_sym_39] = ACTIONS(494), - [anon_sym_box] = ACTIONS(494), - [anon_sym_40] = ACTIONS(494), - [anon_sym_unbox] = ACTIONS(494), - [anon_sym_41] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_42] = ACTIONS(494), - [anon_sym_couple] = ACTIONS(494), - [anon_sym_43] = ACTIONS(494), - [anon_sym_join] = ACTIONS(494), - [anon_sym_44] = ACTIONS(494), - [anon_sym_select] = ACTIONS(494), - [anon_sym_45] = ACTIONS(494), - [anon_sym_pick] = ACTIONS(494), - [anon_sym_46] = ACTIONS(494), - [anon_sym_reshape] = ACTIONS(494), - [anon_sym_47] = ACTIONS(494), - [anon_sym_take] = ACTIONS(494), - [anon_sym_48] = ACTIONS(494), - [anon_sym_drop] = ACTIONS(494), - [anon_sym_49] = ACTIONS(494), - [anon_sym_rotate] = ACTIONS(494), - [anon_sym_50] = ACTIONS(494), - [anon_sym_windows] = ACTIONS(494), - [anon_sym_51] = ACTIONS(494), - [anon_sym_keep] = ACTIONS(494), - [anon_sym_52] = ACTIONS(494), - [anon_sym_find] = ACTIONS(494), - [anon_sym_53] = ACTIONS(494), - [anon_sym_member] = ACTIONS(494), - [anon_sym_54] = ACTIONS(494), - [anon_sym_indexof] = ACTIONS(494), - [anon_sym_55] = ACTIONS(494), - [anon_sym_assert] = ACTIONS(494), - [anon_sym_56] = ACTIONS(494), - [anon_sym_wait] = ACTIONS(494), - [anon_sym_parse] = ACTIONS(494), - [anon_sym_random] = ACTIONS(494), - [anon_sym_57] = ACTIONS(494), - [anon_sym_gen] = ACTIONS(494), - [anon_sym_deal] = ACTIONS(494), - [anon_sym_tag] = ACTIONS(494), - [anon_sym_now] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_58] = ACTIONS(494), - [anon_sym_dump] = ACTIONS(494), - [anon_sym_regex] = ACTIONS(494), - [anon_sym_utf] = ACTIONS(494), - [anon_sym_send] = ACTIONS(494), - [anon_sym_recv] = ACTIONS(494), - [anon_sym_tryrecv] = ACTIONS(494), - [anon_sym_complex] = ACTIONS(494), - [anon_sym_59] = ACTIONS(494), - [anon_sym_rerank] = ACTIONS(494), - [anon_sym_60] = ACTIONS(494), - [anon_sym_fix] = ACTIONS(494), - [anon_sym_61] = ACTIONS(494), + [sym_openParen] = ACTIONS(534), + [sym_closeParen] = ACTIONS(534), + [sym_underscore] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_identity] = ACTIONS(534), + [anon_sym_id] = ACTIONS(532), + [anon_sym_6] = ACTIONS(534), + [anon_sym_not] = ACTIONS(534), + [anon_sym_7] = ACTIONS(534), + [anon_sym_sign] = ACTIONS(534), + [anon_sym_8] = ACTIONS(534), + [anon_sym_BQUOTE] = ACTIONS(534), + [anon_sym_9] = ACTIONS(534), + [anon_sym_absolutevalue] = ACTIONS(534), + [anon_sym_10] = ACTIONS(534), + [anon_sym_sqrt] = ACTIONS(534), + [anon_sym_11] = ACTIONS(534), + [anon_sym_sine] = ACTIONS(534), + [anon_sym_12] = ACTIONS(534), + [anon_sym_floor] = ACTIONS(534), + [anon_sym_13] = ACTIONS(534), + [anon_sym_ceiling] = ACTIONS(534), + [anon_sym_14] = ACTIONS(534), + [anon_sym_round] = ACTIONS(534), + [anon_sym_15] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_16] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_17] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_18] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_19] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_20] = ACTIONS(534), + [anon_sym_modulus] = ACTIONS(534), + [anon_sym_21] = ACTIONS(534), + [anon_sym_power] = ACTIONS(534), + [anon_sym_22] = ACTIONS(534), + [anon_sym_logarithm] = ACTIONS(534), + [anon_sym_23] = ACTIONS(534), + [anon_sym_minimum] = ACTIONS(534), + [anon_sym_24] = ACTIONS(534), + [anon_sym_maximum] = ACTIONS(534), + [anon_sym_25] = ACTIONS(534), + [anon_sym_atangent] = ACTIONS(534), + [anon_sym_26] = ACTIONS(534), + [anon_sym_length] = ACTIONS(534), + [anon_sym_27] = ACTIONS(534), + [anon_sym_shape] = ACTIONS(534), + [anon_sym_28] = ACTIONS(534), + [anon_sym_range] = ACTIONS(534), + [anon_sym_29] = ACTIONS(534), + [anon_sym_first] = ACTIONS(534), + [anon_sym_30] = ACTIONS(534), + [anon_sym_reverse] = ACTIONS(534), + [anon_sym_31] = ACTIONS(534), + [anon_sym_deshape] = ACTIONS(534), + [anon_sym_32] = ACTIONS(534), + [anon_sym_bits] = ACTIONS(534), + [anon_sym_33] = ACTIONS(534), + [anon_sym_transpose] = ACTIONS(534), + [anon_sym_34] = ACTIONS(534), + [anon_sym_rise] = ACTIONS(534), + [anon_sym_35] = ACTIONS(534), + [anon_sym_fall] = ACTIONS(534), + [anon_sym_36] = ACTIONS(534), + [anon_sym_where] = ACTIONS(534), + [anon_sym_37] = ACTIONS(534), + [anon_sym_classify] = ACTIONS(534), + [anon_sym_38] = ACTIONS(534), + [anon_sym_deduplicate] = ACTIONS(534), + [anon_sym_39] = ACTIONS(534), + [anon_sym_box] = ACTIONS(534), + [anon_sym_40] = ACTIONS(534), + [anon_sym_unbox] = ACTIONS(534), + [anon_sym_41] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_42] = ACTIONS(534), + [anon_sym_couple] = ACTIONS(534), + [anon_sym_43] = ACTIONS(534), + [anon_sym_join] = ACTIONS(534), + [anon_sym_44] = ACTIONS(534), + [anon_sym_select] = ACTIONS(534), + [anon_sym_45] = ACTIONS(534), + [anon_sym_pick] = ACTIONS(534), + [anon_sym_46] = ACTIONS(534), + [anon_sym_reshape] = ACTIONS(534), + [anon_sym_47] = ACTIONS(534), + [anon_sym_take] = ACTIONS(534), + [anon_sym_48] = ACTIONS(534), + [anon_sym_drop] = ACTIONS(534), + [anon_sym_49] = ACTIONS(534), + [anon_sym_rotate] = ACTIONS(534), + [anon_sym_50] = ACTIONS(534), + [anon_sym_windows] = ACTIONS(534), + [anon_sym_51] = ACTIONS(534), + [anon_sym_keep] = ACTIONS(534), + [anon_sym_52] = ACTIONS(534), + [anon_sym_find] = ACTIONS(534), + [anon_sym_53] = ACTIONS(534), + [anon_sym_member] = ACTIONS(534), + [anon_sym_54] = ACTIONS(534), + [anon_sym_indexof] = ACTIONS(534), + [anon_sym_55] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(534), + [anon_sym_56] = ACTIONS(534), + [anon_sym_wait] = ACTIONS(534), + [anon_sym_parse] = ACTIONS(534), + [anon_sym_random] = ACTIONS(534), + [anon_sym_57] = ACTIONS(534), + [anon_sym_gen] = ACTIONS(534), + [anon_sym_deal] = ACTIONS(534), + [anon_sym_tag] = ACTIONS(534), + [anon_sym_now] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_58] = ACTIONS(534), + [anon_sym_dump] = ACTIONS(534), + [anon_sym_regex] = ACTIONS(534), + [anon_sym_utf] = ACTIONS(534), + [anon_sym_send] = ACTIONS(534), + [anon_sym_recv] = ACTIONS(534), + [anon_sym_tryrecv] = ACTIONS(534), + [anon_sym_complex] = ACTIONS(534), + [anon_sym_59] = ACTIONS(534), + [anon_sym_rerank] = ACTIONS(534), + [anon_sym_60] = ACTIONS(534), + [anon_sym_fix] = ACTIONS(534), + [anon_sym_61] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(534), + [sym__endOfLine] = ACTIONS(5), + }, + [178] = { + [anon_sym_PIPE] = ACTIONS(530), + [sym_identifier] = ACTIONS(528), + [sym_system] = ACTIONS(530), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(530), + [sym_closeParen] = ACTIONS(530), + [sym_underscore] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_identity] = ACTIONS(530), + [anon_sym_id] = ACTIONS(528), + [anon_sym_6] = ACTIONS(530), + [anon_sym_not] = ACTIONS(530), + [anon_sym_7] = ACTIONS(530), + [anon_sym_sign] = ACTIONS(530), + [anon_sym_8] = ACTIONS(530), + [anon_sym_BQUOTE] = ACTIONS(530), + [anon_sym_9] = ACTIONS(530), + [anon_sym_absolutevalue] = ACTIONS(530), + [anon_sym_10] = ACTIONS(530), + [anon_sym_sqrt] = ACTIONS(530), + [anon_sym_11] = ACTIONS(530), + [anon_sym_sine] = ACTIONS(530), + [anon_sym_12] = ACTIONS(530), + [anon_sym_floor] = ACTIONS(530), + [anon_sym_13] = ACTIONS(530), + [anon_sym_ceiling] = ACTIONS(530), + [anon_sym_14] = ACTIONS(530), + [anon_sym_round] = ACTIONS(530), + [anon_sym_15] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_16] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_17] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_18] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_19] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_20] = ACTIONS(530), + [anon_sym_modulus] = ACTIONS(530), + [anon_sym_21] = ACTIONS(530), + [anon_sym_power] = ACTIONS(530), + [anon_sym_22] = ACTIONS(530), + [anon_sym_logarithm] = ACTIONS(530), + [anon_sym_23] = ACTIONS(530), + [anon_sym_minimum] = ACTIONS(530), + [anon_sym_24] = ACTIONS(530), + [anon_sym_maximum] = ACTIONS(530), + [anon_sym_25] = ACTIONS(530), + [anon_sym_atangent] = ACTIONS(530), + [anon_sym_26] = ACTIONS(530), + [anon_sym_length] = ACTIONS(530), + [anon_sym_27] = ACTIONS(530), + [anon_sym_shape] = ACTIONS(530), + [anon_sym_28] = ACTIONS(530), + [anon_sym_range] = ACTIONS(530), + [anon_sym_29] = ACTIONS(530), + [anon_sym_first] = ACTIONS(530), + [anon_sym_30] = ACTIONS(530), + [anon_sym_reverse] = ACTIONS(530), + [anon_sym_31] = ACTIONS(530), + [anon_sym_deshape] = ACTIONS(530), + [anon_sym_32] = ACTIONS(530), + [anon_sym_bits] = ACTIONS(530), + [anon_sym_33] = ACTIONS(530), + [anon_sym_transpose] = ACTIONS(530), + [anon_sym_34] = ACTIONS(530), + [anon_sym_rise] = ACTIONS(530), + [anon_sym_35] = ACTIONS(530), + [anon_sym_fall] = ACTIONS(530), + [anon_sym_36] = ACTIONS(530), + [anon_sym_where] = ACTIONS(530), + [anon_sym_37] = ACTIONS(530), + [anon_sym_classify] = ACTIONS(530), + [anon_sym_38] = ACTIONS(530), + [anon_sym_deduplicate] = ACTIONS(530), + [anon_sym_39] = ACTIONS(530), + [anon_sym_box] = ACTIONS(530), + [anon_sym_40] = ACTIONS(530), + [anon_sym_unbox] = ACTIONS(530), + [anon_sym_41] = ACTIONS(530), + [anon_sym_match] = ACTIONS(530), + [anon_sym_42] = ACTIONS(530), + [anon_sym_couple] = ACTIONS(530), + [anon_sym_43] = ACTIONS(530), + [anon_sym_join] = ACTIONS(530), + [anon_sym_44] = ACTIONS(530), + [anon_sym_select] = ACTIONS(530), + [anon_sym_45] = ACTIONS(530), + [anon_sym_pick] = ACTIONS(530), + [anon_sym_46] = ACTIONS(530), + [anon_sym_reshape] = ACTIONS(530), + [anon_sym_47] = ACTIONS(530), + [anon_sym_take] = ACTIONS(530), + [anon_sym_48] = ACTIONS(530), + [anon_sym_drop] = ACTIONS(530), + [anon_sym_49] = ACTIONS(530), + [anon_sym_rotate] = ACTIONS(530), + [anon_sym_50] = ACTIONS(530), + [anon_sym_windows] = ACTIONS(530), + [anon_sym_51] = ACTIONS(530), + [anon_sym_keep] = ACTIONS(530), + [anon_sym_52] = ACTIONS(530), + [anon_sym_find] = ACTIONS(530), + [anon_sym_53] = ACTIONS(530), + [anon_sym_member] = ACTIONS(530), + [anon_sym_54] = ACTIONS(530), + [anon_sym_indexof] = ACTIONS(530), + [anon_sym_55] = ACTIONS(530), + [anon_sym_assert] = ACTIONS(530), + [anon_sym_56] = ACTIONS(530), + [anon_sym_wait] = ACTIONS(530), + [anon_sym_parse] = ACTIONS(530), + [anon_sym_random] = ACTIONS(530), + [anon_sym_57] = ACTIONS(530), + [anon_sym_gen] = ACTIONS(530), + [anon_sym_deal] = ACTIONS(530), + [anon_sym_tag] = ACTIONS(530), + [anon_sym_now] = ACTIONS(530), + [anon_sym_type] = ACTIONS(530), + [anon_sym_58] = ACTIONS(530), + [anon_sym_dump] = ACTIONS(530), + [anon_sym_regex] = ACTIONS(530), + [anon_sym_utf] = ACTIONS(530), + [anon_sym_send] = ACTIONS(530), + [anon_sym_recv] = ACTIONS(530), + [anon_sym_tryrecv] = ACTIONS(530), + [anon_sym_complex] = ACTIONS(530), + [anon_sym_59] = ACTIONS(530), + [anon_sym_rerank] = ACTIONS(530), + [anon_sym_60] = ACTIONS(530), + [anon_sym_fix] = ACTIONS(530), + [anon_sym_61] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [sym__endOfLine] = ACTIONS(5), + }, + [179] = { + [anon_sym_PIPE] = ACTIONS(542), + [sym_identifier] = ACTIONS(540), + [sym_system] = ACTIONS(542), + [sym_comment] = ACTIONS(3), + [sym_openParen] = ACTIONS(542), + [sym_closeParen] = ACTIONS(542), + [sym_underscore] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(542), + [anon_sym_COLON] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_identity] = ACTIONS(542), + [anon_sym_id] = ACTIONS(540), + [anon_sym_6] = ACTIONS(542), + [anon_sym_not] = ACTIONS(542), + [anon_sym_7] = ACTIONS(542), + [anon_sym_sign] = ACTIONS(542), + [anon_sym_8] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(542), + [anon_sym_9] = ACTIONS(542), + [anon_sym_absolutevalue] = ACTIONS(542), + [anon_sym_10] = ACTIONS(542), + [anon_sym_sqrt] = ACTIONS(542), + [anon_sym_11] = ACTIONS(542), + [anon_sym_sine] = ACTIONS(542), + [anon_sym_12] = ACTIONS(542), + [anon_sym_floor] = ACTIONS(542), + [anon_sym_13] = ACTIONS(542), + [anon_sym_ceiling] = ACTIONS(542), + [anon_sym_14] = ACTIONS(542), + [anon_sym_round] = ACTIONS(542), + [anon_sym_15] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_16] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(542), + [anon_sym_17] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(542), + [anon_sym_18] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_19] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_20] = ACTIONS(542), + [anon_sym_modulus] = ACTIONS(542), + [anon_sym_21] = ACTIONS(542), + [anon_sym_power] = ACTIONS(542), + [anon_sym_22] = ACTIONS(542), + [anon_sym_logarithm] = ACTIONS(542), + [anon_sym_23] = ACTIONS(542), + [anon_sym_minimum] = ACTIONS(542), + [anon_sym_24] = ACTIONS(542), + [anon_sym_maximum] = ACTIONS(542), + [anon_sym_25] = ACTIONS(542), + [anon_sym_atangent] = ACTIONS(542), + [anon_sym_26] = ACTIONS(542), + [anon_sym_length] = ACTIONS(542), + [anon_sym_27] = ACTIONS(542), + [anon_sym_shape] = ACTIONS(542), + [anon_sym_28] = ACTIONS(542), + [anon_sym_range] = ACTIONS(542), + [anon_sym_29] = ACTIONS(542), + [anon_sym_first] = ACTIONS(542), + [anon_sym_30] = ACTIONS(542), + [anon_sym_reverse] = ACTIONS(542), + [anon_sym_31] = ACTIONS(542), + [anon_sym_deshape] = ACTIONS(542), + [anon_sym_32] = ACTIONS(542), + [anon_sym_bits] = ACTIONS(542), + [anon_sym_33] = ACTIONS(542), + [anon_sym_transpose] = ACTIONS(542), + [anon_sym_34] = ACTIONS(542), + [anon_sym_rise] = ACTIONS(542), + [anon_sym_35] = ACTIONS(542), + [anon_sym_fall] = ACTIONS(542), + [anon_sym_36] = ACTIONS(542), + [anon_sym_where] = ACTIONS(542), + [anon_sym_37] = ACTIONS(542), + [anon_sym_classify] = ACTIONS(542), + [anon_sym_38] = ACTIONS(542), + [anon_sym_deduplicate] = ACTIONS(542), + [anon_sym_39] = ACTIONS(542), + [anon_sym_box] = ACTIONS(542), + [anon_sym_40] = ACTIONS(542), + [anon_sym_unbox] = ACTIONS(542), + [anon_sym_41] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_42] = ACTIONS(542), + [anon_sym_couple] = ACTIONS(542), + [anon_sym_43] = ACTIONS(542), + [anon_sym_join] = ACTIONS(542), + [anon_sym_44] = ACTIONS(542), + [anon_sym_select] = ACTIONS(542), + [anon_sym_45] = ACTIONS(542), + [anon_sym_pick] = ACTIONS(542), + [anon_sym_46] = ACTIONS(542), + [anon_sym_reshape] = ACTIONS(542), + [anon_sym_47] = ACTIONS(542), + [anon_sym_take] = ACTIONS(542), + [anon_sym_48] = ACTIONS(542), + [anon_sym_drop] = ACTIONS(542), + [anon_sym_49] = ACTIONS(542), + [anon_sym_rotate] = ACTIONS(542), + [anon_sym_50] = ACTIONS(542), + [anon_sym_windows] = ACTIONS(542), + [anon_sym_51] = ACTIONS(542), + [anon_sym_keep] = ACTIONS(542), + [anon_sym_52] = ACTIONS(542), + [anon_sym_find] = ACTIONS(542), + [anon_sym_53] = ACTIONS(542), + [anon_sym_member] = ACTIONS(542), + [anon_sym_54] = ACTIONS(542), + [anon_sym_indexof] = ACTIONS(542), + [anon_sym_55] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_56] = ACTIONS(542), + [anon_sym_wait] = ACTIONS(542), + [anon_sym_parse] = ACTIONS(542), + [anon_sym_random] = ACTIONS(542), + [anon_sym_57] = ACTIONS(542), + [anon_sym_gen] = ACTIONS(542), + [anon_sym_deal] = ACTIONS(542), + [anon_sym_tag] = ACTIONS(542), + [anon_sym_now] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_58] = ACTIONS(542), + [anon_sym_dump] = ACTIONS(542), + [anon_sym_regex] = ACTIONS(542), + [anon_sym_utf] = ACTIONS(542), + [anon_sym_send] = ACTIONS(542), + [anon_sym_recv] = ACTIONS(542), + [anon_sym_tryrecv] = ACTIONS(542), + [anon_sym_complex] = ACTIONS(542), + [anon_sym_59] = ACTIONS(542), + [anon_sym_rerank] = ACTIONS(542), + [anon_sym_60] = ACTIONS(542), + [anon_sym_fix] = ACTIONS(542), + [anon_sym_61] = ACTIONS(542), + [anon_sym_QMARK] = ACTIONS(542), [sym__endOfLine] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(658), 1, + ACTIONS(698), 1, sym_closeParen, - STATE(162), 1, + STATE(163), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, [17] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(660), 1, + ACTIONS(700), 1, sym_closeParen, - STATE(155), 1, + STATE(146), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, [34] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(662), 1, + ACTIONS(702), 1, sym_closeParen, - STATE(155), 1, + STATE(163), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, [51] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(664), 1, + ACTIONS(704), 1, sym_closeParen, - STATE(162), 1, + STATE(146), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, [68] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(666), 1, + ACTIONS(706), 1, sym_closeParen, - STATE(155), 1, + STATE(146), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, [85] = 5, - ACTIONS(166), 1, + ACTIONS(146), 1, anon_sym_PIPE, - ACTIONS(170), 1, + ACTIONS(160), 1, sym_underscore, - ACTIONS(668), 1, + ACTIONS(708), 1, sym_closeParen, - STATE(162), 1, + STATE(163), 1, sym_branchSeparator, ACTIONS(5), 2, sym_comment, @@ -48935,7 +49330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(462), 3, + ACTIONS(490), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, @@ -48943,95 +49338,91 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(502), 3, + ACTIONS(566), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [122] = 4, - ACTIONS(166), 1, - anon_sym_PIPE, - ACTIONS(170), 1, - sym_underscore, - STATE(155), 1, - sym_branchSeparator, + [122] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [136] = 2, + ACTIONS(518), 3, + anon_sym_PIPE, + sym_closeParen, + sym_underscore, + [132] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(490), 3, + ACTIONS(514), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [146] = 2, + [142] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(478), 3, + ACTIONS(510), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [156] = 4, - ACTIONS(166), 1, - anon_sym_PIPE, - ACTIONS(170), 1, - sym_underscore, - STATE(162), 1, - sym_branchSeparator, + [152] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [170] = 2, + ACTIONS(506), 3, + anon_sym_PIPE, + sym_closeParen, + sym_underscore, + [162] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(474), 3, + ACTIONS(562), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [180] = 2, + [172] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(470), 3, + ACTIONS(498), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [190] = 2, + [182] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(518), 3, + ACTIONS(570), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [200] = 2, + [192] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(466), 3, + ACTIONS(542), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [210] = 2, + [202] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(482), 3, + ACTIONS(502), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [220] = 2, + [212] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(530), 3, + ACTIONS(526), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [230] = 2, + [222] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, @@ -49039,7 +49430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_closeParen, sym_underscore, - [240] = 2, + [232] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, @@ -49047,397 +49438,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_closeParen, sym_underscore, - [250] = 2, + [242] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(486), 3, + ACTIONS(558), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [260] = 2, + [252] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(432), 3, + ACTIONS(534), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [270] = 2, + [262] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(454), 3, + ACTIONS(554), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [280] = 2, + [272] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(458), 3, + ACTIONS(478), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [290] = 2, + [282] = 4, + ACTIONS(146), 1, + anon_sym_PIPE, + ACTIONS(160), 1, + sym_underscore, + STATE(163), 1, + sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(514), 3, - anon_sym_PIPE, - sym_closeParen, - sym_underscore, - [300] = 2, + [296] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(442), 3, + ACTIONS(562), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [310] = 2, + [306] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(522), 3, + ACTIONS(538), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [320] = 2, + [316] = 2, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(526), 3, + ACTIONS(468), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [330] = 2, + [326] = 4, + ACTIONS(146), 1, + anon_sym_PIPE, + ACTIONS(160), 1, + sym_underscore, + STATE(146), 1, + sym_branchSeparator, ACTIONS(5), 2, sym_comment, sym__endOfLine, - ACTIONS(498), 3, + [340] = 2, + ACTIONS(5), 2, + sym_comment, + sym__endOfLine, + ACTIONS(530), 3, anon_sym_PIPE, sym_closeParen, sym_underscore, - [340] = 2, + [350] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(570), 3, + ACTIONS(616), 3, ts_builtin_sym_end, sym_closeParen, sym__endOfLine, - [349] = 2, - ACTIONS(670), 1, + [359] = 2, + ACTIONS(586), 1, ts_builtin_sym_end, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [357] = 2, - ACTIONS(5), 1, - sym_comment, - ACTIONS(672), 2, - ts_builtin_sym_end, - sym__endOfLine, - [365] = 2, + [367] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(674), 2, - ts_builtin_sym_end, + ACTIONS(650), 1, + sym_closeParen, + ACTIONS(710), 1, sym__endOfLine, - [373] = 3, + [377] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(646), 1, sym_closeParen, - ACTIONS(676), 1, - sym__endOfLine, - [383] = 2, - ACTIONS(678), 1, - aux_sym_signature_token1, - ACTIONS(5), 2, - sym_comment, + ACTIONS(712), 1, sym__endOfLine, - [391] = 3, + [387] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(644), 1, sym_closeParen, - ACTIONS(682), 1, + ACTIONS(714), 1, sym__endOfLine, - [401] = 3, + [397] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(546), 1, + ACTIONS(716), 2, ts_builtin_sym_end, - ACTIONS(684), 1, sym__endOfLine, - [411] = 3, + [405] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(718), 1, sym_closeParen, - ACTIONS(686), 1, + ACTIONS(720), 1, sym__endOfLine, - [421] = 3, + [415] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(614), 1, + ACTIONS(722), 1, sym_closeParen, - ACTIONS(688), 1, + ACTIONS(724), 1, sym__endOfLine, - [431] = 3, + [425] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(586), 1, + ACTIONS(636), 1, sym_closeParen, - ACTIONS(690), 1, + ACTIONS(726), 1, sym__endOfLine, - [441] = 2, - ACTIONS(546), 1, - ts_builtin_sym_end, + [435] = 2, + ACTIONS(728), 1, + aux_sym_signature_token1, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [449] = 3, + [443] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(692), 1, + ACTIONS(632), 1, sym_closeParen, - ACTIONS(694), 1, + ACTIONS(730), 1, sym__endOfLine, - [459] = 3, + [453] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(696), 1, + ACTIONS(666), 1, sym_closeParen, - ACTIONS(698), 1, + ACTIONS(732), 1, sym__endOfLine, - [469] = 3, + [463] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(734), 1, sym_closeParen, - ACTIONS(700), 1, + ACTIONS(736), 1, + sym__endOfLine, + [473] = 2, + ACTIONS(738), 1, + aux_sym_signature_token1, + ACTIONS(5), 2, + sym_comment, sym__endOfLine, - [479] = 2, + [481] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(702), 2, - ts_builtin_sym_end, + ACTIONS(640), 1, + sym_closeParen, + ACTIONS(740), 1, sym__endOfLine, - [487] = 3, + [491] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(598), 1, + ACTIONS(658), 1, sym_closeParen, - ACTIONS(704), 1, + ACTIONS(742), 1, sym__endOfLine, - [497] = 3, + [501] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(618), 1, + ACTIONS(642), 1, sym_closeParen, - ACTIONS(706), 1, + ACTIONS(744), 1, sym__endOfLine, - [507] = 2, - ACTIONS(708), 1, - aux_sym_signature_token1, + [511] = 2, + ACTIONS(602), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [515] = 2, - ACTIONS(710), 1, + [519] = 2, + ACTIONS(746), 1, aux_sym_signature_token1, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [523] = 3, + [527] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(748), 1, sym_closeParen, - ACTIONS(712), 1, + ACTIONS(750), 1, sym__endOfLine, - [533] = 3, + [537] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(656), 1, sym_closeParen, - ACTIONS(714), 1, + ACTIONS(752), 1, sym__endOfLine, - [543] = 2, - ACTIONS(716), 1, - aux_sym_signature_token1, - ACTIONS(5), 2, + [547] = 3, + ACTIONS(5), 1, sym_comment, + ACTIONS(754), 1, + sym_closeParen, + ACTIONS(756), 1, sym__endOfLine, - [551] = 2, + [557] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(718), 2, + ACTIONS(758), 2, ts_builtin_sym_end, sym__endOfLine, - [559] = 2, + [565] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(494), 2, + ACTIONS(586), 1, ts_builtin_sym_end, + ACTIONS(760), 1, sym__endOfLine, - [567] = 3, + [575] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(558), 1, + ACTIONS(598), 1, ts_builtin_sym_end, - ACTIONS(720), 1, + ACTIONS(762), 1, sym__endOfLine, - [577] = 2, - ACTIONS(722), 1, + [585] = 2, + ACTIONS(764), 1, ts_builtin_sym_end, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [585] = 3, - ACTIONS(5), 1, + [593] = 2, + ACTIONS(766), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, sym_comment, - ACTIONS(724), 1, - sym_closeParen, - ACTIONS(726), 1, sym__endOfLine, - [595] = 3, + [601] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(610), 1, - sym_closeParen, - ACTIONS(728), 1, + ACTIONS(768), 2, + ts_builtin_sym_end, sym__endOfLine, - [605] = 2, + [609] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(498), 2, + ACTIONS(770), 2, ts_builtin_sym_end, sym__endOfLine, - [613] = 2, + [617] = 2, + ACTIONS(772), 1, + aux_sym_signature_token1, + ACTIONS(5), 2, + sym_comment, + sym__endOfLine, + [625] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(458), 2, + ACTIONS(530), 2, ts_builtin_sym_end, sym__endOfLine, - [621] = 2, + [633] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(486), 2, + ACTIONS(534), 2, ts_builtin_sym_end, sym__endOfLine, - [629] = 2, - ACTIONS(562), 1, - ts_builtin_sym_end, - ACTIONS(5), 2, + [641] = 2, + ACTIONS(5), 1, sym_comment, + ACTIONS(538), 2, + ts_builtin_sym_end, sym__endOfLine, - [637] = 3, + [649] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(730), 1, - sym_closeParen, - ACTIONS(732), 1, + ACTIONS(522), 2, + ts_builtin_sym_end, sym__endOfLine, - [647] = 2, - ACTIONS(734), 1, + [657] = 2, + ACTIONS(774), 1, aux_sym_signature_token1, ACTIONS(5), 2, sym_comment, sym__endOfLine, - [655] = 2, + [665] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(736), 1, + ACTIONS(776), 1, sym__endOfLine, - [662] = 2, + [672] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(738), 1, + ACTIONS(778), 1, sym__endOfLine, - [669] = 2, + [679] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(740), 1, + ACTIONS(780), 1, sym__endOfLine, - [676] = 2, + [686] = 2, ACTIONS(5), 1, sym_comment, - ACTIONS(742), 1, + ACTIONS(782), 1, sym__endOfLine, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(178)] = 0, - [SMALL_STATE(179)] = 17, - [SMALL_STATE(180)] = 34, - [SMALL_STATE(181)] = 51, - [SMALL_STATE(182)] = 68, - [SMALL_STATE(183)] = 85, - [SMALL_STATE(184)] = 102, - [SMALL_STATE(185)] = 112, - [SMALL_STATE(186)] = 122, - [SMALL_STATE(187)] = 136, - [SMALL_STATE(188)] = 146, - [SMALL_STATE(189)] = 156, - [SMALL_STATE(190)] = 170, - [SMALL_STATE(191)] = 180, - [SMALL_STATE(192)] = 190, - [SMALL_STATE(193)] = 200, - [SMALL_STATE(194)] = 210, - [SMALL_STATE(195)] = 220, - [SMALL_STATE(196)] = 230, - [SMALL_STATE(197)] = 240, - [SMALL_STATE(198)] = 250, - [SMALL_STATE(199)] = 260, - [SMALL_STATE(200)] = 270, - [SMALL_STATE(201)] = 280, - [SMALL_STATE(202)] = 290, - [SMALL_STATE(203)] = 300, - [SMALL_STATE(204)] = 310, - [SMALL_STATE(205)] = 320, - [SMALL_STATE(206)] = 330, - [SMALL_STATE(207)] = 340, - [SMALL_STATE(208)] = 349, - [SMALL_STATE(209)] = 357, - [SMALL_STATE(210)] = 365, - [SMALL_STATE(211)] = 373, - [SMALL_STATE(212)] = 383, - [SMALL_STATE(213)] = 391, - [SMALL_STATE(214)] = 401, - [SMALL_STATE(215)] = 411, - [SMALL_STATE(216)] = 421, - [SMALL_STATE(217)] = 431, - [SMALL_STATE(218)] = 441, - [SMALL_STATE(219)] = 449, - [SMALL_STATE(220)] = 459, - [SMALL_STATE(221)] = 469, - [SMALL_STATE(222)] = 479, - [SMALL_STATE(223)] = 487, - [SMALL_STATE(224)] = 497, - [SMALL_STATE(225)] = 507, - [SMALL_STATE(226)] = 515, - [SMALL_STATE(227)] = 523, - [SMALL_STATE(228)] = 533, - [SMALL_STATE(229)] = 543, - [SMALL_STATE(230)] = 551, - [SMALL_STATE(231)] = 559, - [SMALL_STATE(232)] = 567, - [SMALL_STATE(233)] = 577, - [SMALL_STATE(234)] = 585, - [SMALL_STATE(235)] = 595, - [SMALL_STATE(236)] = 605, - [SMALL_STATE(237)] = 613, - [SMALL_STATE(238)] = 621, - [SMALL_STATE(239)] = 629, - [SMALL_STATE(240)] = 637, - [SMALL_STATE(241)] = 647, - [SMALL_STATE(242)] = 655, - [SMALL_STATE(243)] = 662, - [SMALL_STATE(244)] = 669, - [SMALL_STATE(245)] = 676, + [SMALL_STATE(180)] = 0, + [SMALL_STATE(181)] = 17, + [SMALL_STATE(182)] = 34, + [SMALL_STATE(183)] = 51, + [SMALL_STATE(184)] = 68, + [SMALL_STATE(185)] = 85, + [SMALL_STATE(186)] = 102, + [SMALL_STATE(187)] = 112, + [SMALL_STATE(188)] = 122, + [SMALL_STATE(189)] = 132, + [SMALL_STATE(190)] = 142, + [SMALL_STATE(191)] = 152, + [SMALL_STATE(192)] = 162, + [SMALL_STATE(193)] = 172, + [SMALL_STATE(194)] = 182, + [SMALL_STATE(195)] = 192, + [SMALL_STATE(196)] = 202, + [SMALL_STATE(197)] = 212, + [SMALL_STATE(198)] = 222, + [SMALL_STATE(199)] = 232, + [SMALL_STATE(200)] = 242, + [SMALL_STATE(201)] = 252, + [SMALL_STATE(202)] = 262, + [SMALL_STATE(203)] = 272, + [SMALL_STATE(204)] = 282, + [SMALL_STATE(205)] = 296, + [SMALL_STATE(206)] = 306, + [SMALL_STATE(207)] = 316, + [SMALL_STATE(208)] = 326, + [SMALL_STATE(209)] = 340, + [SMALL_STATE(210)] = 350, + [SMALL_STATE(211)] = 359, + [SMALL_STATE(212)] = 367, + [SMALL_STATE(213)] = 377, + [SMALL_STATE(214)] = 387, + [SMALL_STATE(215)] = 397, + [SMALL_STATE(216)] = 405, + [SMALL_STATE(217)] = 415, + [SMALL_STATE(218)] = 425, + [SMALL_STATE(219)] = 435, + [SMALL_STATE(220)] = 443, + [SMALL_STATE(221)] = 453, + [SMALL_STATE(222)] = 463, + [SMALL_STATE(223)] = 473, + [SMALL_STATE(224)] = 481, + [SMALL_STATE(225)] = 491, + [SMALL_STATE(226)] = 501, + [SMALL_STATE(227)] = 511, + [SMALL_STATE(228)] = 519, + [SMALL_STATE(229)] = 527, + [SMALL_STATE(230)] = 537, + [SMALL_STATE(231)] = 547, + [SMALL_STATE(232)] = 557, + [SMALL_STATE(233)] = 565, + [SMALL_STATE(234)] = 575, + [SMALL_STATE(235)] = 585, + [SMALL_STATE(236)] = 593, + [SMALL_STATE(237)] = 601, + [SMALL_STATE(238)] = 609, + [SMALL_STATE(239)] = 617, + [SMALL_STATE(240)] = 625, + [SMALL_STATE(241)] = 633, + [SMALL_STATE(242)] = 641, + [SMALL_STATE(243)] = 649, + [SMALL_STATE(244)] = 657, + [SMALL_STATE(245)] = 665, + [SMALL_STATE(246)] = 672, + [SMALL_STATE(247)] = 679, + [SMALL_STATE(248)] = 686, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -49445,333 +49849,349 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(91), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(91), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(90), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(90), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(89), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(88), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(131), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(88), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(51), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(67), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(19), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(23), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(25), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(226), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(107), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(107), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(97), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(97), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(98), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(99), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(99), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(100), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(2), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 1), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(91), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(91), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(90), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(90), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(89), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(88), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(88), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(49), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(19), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(23), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(25), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(226), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(107), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(107), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(97), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(97), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(98), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(99), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(99), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(100), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(188), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(188), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(190), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(190), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(191), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(193), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(225), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(193), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(42), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(46), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(45), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(212), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(195), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(195), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(185), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(185), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(171), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(173), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(173), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(202), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(90), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(90), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(89), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(88), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(88), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(51), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(19), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(23), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(25), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(226), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(107), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(107), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(97), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(97), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(98), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(99), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(99), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(100), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 2), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 2), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive, 1), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 1), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeHolder, 2), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeHolder, 2), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 4), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 4), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 3), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 3), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 1), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_otherConstant, 1), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_otherConstant, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 3), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 3), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 5), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 5), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 6), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 6), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 5), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 5), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier1, 1), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier1, 1), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier2, 1), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier2, 1), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated, 1), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 4), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 4), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(92), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(92), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(91), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(91), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(90), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(89), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(131), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(89), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(54), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(63), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(48), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(18), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(19), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(239), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(87), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(87), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(107), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(107), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(98), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(98), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(99), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(100), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(100), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(101), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), SHIFT_REPEAT(2), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 1), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(92), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(92), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(91), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(91), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(90), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(89), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(89), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(49), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(48), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(18), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(19), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(239), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(87), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(87), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(107), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(107), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(98), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(98), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(99), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(100), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(100), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 2), SHIFT_REPEAT(101), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(188), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(188), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(189), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(189), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(190), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(191), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(228), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(191), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(25), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(46), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(45), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(223), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(193), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(193), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(194), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(194), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(195), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(195), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(174), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(173), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(173), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), SHIFT_REPEAT(202), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(92), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(92), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(90), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(89), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(89), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(54), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(48), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(18), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(19), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(239), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(107), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(107), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(98), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(98), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(99), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(100), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(100), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(101), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 2), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 2), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive, 1), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive, 1), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeHolder, 2), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeHolder, 2), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 4), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 4), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formatter, 1), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formatter, 1), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switchFunctions, 5), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switchFunctions, 5), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 1), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 1), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_otherConstant, 1), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_otherConstant, 1), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 3), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 3), [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 2), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 1), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 1), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 1), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 3), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_segment, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 1), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 1), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 3), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branchSeparator, 1), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branchSeparator, 1), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [670] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding, 4), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding, 3), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 6), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 6), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 5), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 5), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineFunction, 4), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineFunction, 4), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier1, 1), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier1, 1), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier2, 1), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier2, 1), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated, 1), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound, 3), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 2), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 1), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PROGRAM_repeat1, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 1), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PROGRAM, 3), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 1), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat2, 1), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_segment, 2), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_segment, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat2, 2), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 2), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_branchSeparator, 1), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_branchSeparator, 1), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switchFunctions_repeat1, 3), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switchFunctions_repeat1, 3), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [766] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding, 4), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding, 3), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), }; #ifdef __cplusplus