From 1ce2178af5da19962fc350c1a12a5f4fffaa5db5 Mon Sep 17 00:00:00 2001 From: Jeff Date: Fri, 16 Feb 2024 10:38:51 -0500 Subject: [PATCH] Move return syntax node to option for statements --- tree-sitter-dust/corpus/blocks.txt | 8 +- tree-sitter-dust/grammar.js | 7 +- tree-sitter-dust/src/grammar.json | 54 +- tree-sitter-dust/src/node-types.json | 23 - tree-sitter-dust/src/parser.c | 48395 +++++++++++++------------ 5 files changed, 24500 insertions(+), 23987 deletions(-) diff --git a/tree-sitter-dust/corpus/blocks.txt b/tree-sitter-dust/corpus/blocks.txt index fe9faf2..bd0bf1d 100644 --- a/tree-sitter-dust/corpus/blocks.txt +++ b/tree-sitter-dust/corpus/blocks.txt @@ -40,11 +40,9 @@ Block with Return (value (integer)))) (statement - (return - (statement - (expression - (value - (integer)))))) + (expression + (value + (integer)))) (statement (expression (value diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 3d0dc84..ad3ed34 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -14,6 +14,7 @@ module.exports = grammar({ statement: $ => prec.left( seq( + optional('return'), choice( $.assignment, $.block, @@ -22,7 +23,6 @@ module.exports = grammar({ $.if_else, $.index_assignment, $.match, - $.return, $.pipe, $.while, $.type_definition, @@ -336,11 +336,6 @@ module.exports = grammar({ $.block, ), - return: $ => - prec.right( - seq('return', $.statement), - ), - type_specification: $ => seq('<', $.type, '>'), diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 6c4a878..06c1fb9 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -23,6 +23,18 @@ "content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -54,10 +66,6 @@ "type": "SYMBOL", "name": "match" }, - { - "type": "SYMBOL", - "name": "return" - }, { "type": "SYMBOL", "name": "pipe" @@ -1004,23 +1012,6 @@ } ] }, - "return": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "return" - }, - { - "type": "SYMBOL", - "name": "statement" - } - ] - } - }, "type_specification": { "type": "SEQ", "members": [ @@ -1199,27 +1190,6 @@ ] } ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "option" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "type" - }, - { - "type": "STRING", - "value": ")" - } - ] } ] } diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index d63b3a1..0ea920e 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -587,21 +587,6 @@ ] } }, - { - "type": "return", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "statement", - "named": true - } - ] - } - }, { "type": "root", "named": true, @@ -657,10 +642,6 @@ "type": "pipe", "named": true }, - { - "type": "return", - "named": true - }, { "type": "type_definition", "named": true @@ -1054,10 +1035,6 @@ "type": "num", "named": false }, - { - "type": "option", - "named": false - }, { "type": "range", "named": true diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index ff2dee6..93fd6ff 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 828 +#define STATE_COUNT 829 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 126 +#define SYMBOL_COUNT 124 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 69 +#define TOKEN_COUNT 68 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -19,58 +19,58 @@ enum { sym_identifier = 1, sym__comment = 2, - anon_sym_SEMI = 3, - anon_sym_LPAREN = 4, - anon_sym_RPAREN = 5, - anon_sym_COMMA = 6, - anon_sym_as = 7, - anon_sym_PIPE = 8, - anon_sym_CARET = 9, - sym_command_text = 10, - aux_sym_command_argument_token1 = 11, - aux_sym_command_argument_token2 = 12, - anon_sym_async = 13, - anon_sym_LBRACE = 14, - anon_sym_RBRACE = 15, - sym_range = 16, - sym_integer = 17, - aux_sym_float_token1 = 18, - anon_sym_Infinity = 19, - anon_sym_infinity = 20, - anon_sym_NaN = 21, - anon_sym_nan = 22, - anon_sym_true = 23, - anon_sym_false = 24, - anon_sym_LBRACK = 25, - anon_sym_RBRACK = 26, - anon_sym_EQ = 27, - anon_sym_COLON = 28, - anon_sym_PLUS = 29, - anon_sym_DASH = 30, - anon_sym_STAR = 31, - anon_sym_SLASH = 32, - anon_sym_PERCENT = 33, - anon_sym_EQ_EQ = 34, - anon_sym_BANG_EQ = 35, - anon_sym_AMP_AMP = 36, - anon_sym_PIPE_PIPE = 37, - anon_sym_GT = 38, - anon_sym_LT = 39, - anon_sym_GT_EQ = 40, - anon_sym_LT_EQ = 41, - anon_sym_PLUS_EQ = 42, - anon_sym_DASH_EQ = 43, - anon_sym_if = 44, - anon_sym_elseif = 45, - anon_sym_else = 46, - anon_sym_match = 47, - anon_sym_EQ_GT = 48, - anon_sym_COLON_COLON = 49, - anon_sym_while = 50, - anon_sym_for = 51, - anon_sym_asyncfor = 52, - anon_sym_in = 53, - anon_sym_return = 54, + anon_sym_return = 3, + anon_sym_SEMI = 4, + anon_sym_LPAREN = 5, + anon_sym_RPAREN = 6, + anon_sym_COMMA = 7, + anon_sym_as = 8, + anon_sym_PIPE = 9, + anon_sym_CARET = 10, + sym_command_text = 11, + aux_sym_command_argument_token1 = 12, + aux_sym_command_argument_token2 = 13, + anon_sym_async = 14, + anon_sym_LBRACE = 15, + anon_sym_RBRACE = 16, + sym_range = 17, + sym_integer = 18, + aux_sym_float_token1 = 19, + anon_sym_Infinity = 20, + anon_sym_infinity = 21, + anon_sym_NaN = 22, + anon_sym_nan = 23, + anon_sym_true = 24, + anon_sym_false = 25, + anon_sym_LBRACK = 26, + anon_sym_RBRACK = 27, + anon_sym_EQ = 28, + anon_sym_COLON = 29, + anon_sym_PLUS = 30, + anon_sym_DASH = 31, + anon_sym_STAR = 32, + anon_sym_SLASH = 33, + anon_sym_PERCENT = 34, + anon_sym_EQ_EQ = 35, + anon_sym_BANG_EQ = 36, + anon_sym_AMP_AMP = 37, + anon_sym_PIPE_PIPE = 38, + anon_sym_GT = 39, + anon_sym_LT = 40, + anon_sym_GT_EQ = 41, + anon_sym_LT_EQ = 42, + anon_sym_PLUS_EQ = 43, + anon_sym_DASH_EQ = 44, + anon_sym_if = 45, + anon_sym_elseif = 46, + anon_sym_else = 47, + anon_sym_match = 48, + anon_sym_EQ_GT = 49, + anon_sym_COLON_COLON = 50, + anon_sym_while = 51, + anon_sym_for = 52, + anon_sym_asyncfor = 53, + anon_sym_in = 54, anon_sym_any = 55, anon_sym_bool = 56, anon_sym_collection = 57, @@ -81,73 +81,72 @@ enum { anon_sym_num = 62, anon_sym_str = 63, anon_sym_DASH_GT = 64, - anon_sym_option = 65, - anon_sym_enum = 66, - anon_sym_struct = 67, - anon_sym_new = 68, - sym_root = 69, - sym_statement = 70, - sym_expression = 71, - sym__expression_kind = 72, - aux_sym__expression_list = 73, - sym_as = 74, - sym_pipe = 75, - sym_command = 76, - sym_command_argument = 77, - sym_block = 78, - sym_value = 79, - sym_float = 80, - sym_string = 81, - sym_boolean = 82, - sym_list = 83, - sym_map = 84, - sym_index = 85, - sym_index_expression = 86, - sym_math = 87, - sym_math_operator = 88, - sym_logic = 89, - sym_logic_operator = 90, - sym_assignment = 91, - sym_index_assignment = 92, - sym_assignment_operator = 93, - sym_if_else = 94, - sym_if = 95, - sym_else_if = 96, - sym_else = 97, - sym_match = 98, - sym_match_pattern = 99, - sym_enum_pattern = 100, - sym_while = 101, - sym_for = 102, - sym_return = 103, - sym_type_specification = 104, - sym_type = 105, - sym_function = 106, - sym_function_expression = 107, - sym__function_expression_kind = 108, - sym_function_call = 109, - sym_type_definition = 110, - sym_enum_definition = 111, - sym_enum_instance = 112, - sym_struct_definition = 113, - sym_struct_instance = 114, - aux_sym_root_repeat1 = 115, - aux_sym_command_repeat1 = 116, - aux_sym_list_repeat1 = 117, - aux_sym_map_repeat1 = 118, - aux_sym_if_else_repeat1 = 119, - aux_sym_match_repeat1 = 120, - aux_sym_type_repeat1 = 121, - aux_sym_function_repeat1 = 122, - aux_sym_enum_definition_repeat1 = 123, - aux_sym_enum_definition_repeat2 = 124, - aux_sym_struct_definition_repeat1 = 125, + anon_sym_enum = 65, + anon_sym_struct = 66, + anon_sym_new = 67, + sym_root = 68, + sym_statement = 69, + sym_expression = 70, + sym__expression_kind = 71, + aux_sym__expression_list = 72, + sym_as = 73, + sym_pipe = 74, + sym_command = 75, + sym_command_argument = 76, + sym_block = 77, + sym_value = 78, + sym_float = 79, + sym_string = 80, + sym_boolean = 81, + sym_list = 82, + sym_map = 83, + sym_index = 84, + sym_index_expression = 85, + sym_math = 86, + sym_math_operator = 87, + sym_logic = 88, + sym_logic_operator = 89, + sym_assignment = 90, + sym_index_assignment = 91, + sym_assignment_operator = 92, + sym_if_else = 93, + sym_if = 94, + sym_else_if = 95, + sym_else = 96, + sym_match = 97, + sym_match_pattern = 98, + sym_enum_pattern = 99, + sym_while = 100, + sym_for = 101, + sym_type_specification = 102, + sym_type = 103, + sym_function = 104, + sym_function_expression = 105, + sym__function_expression_kind = 106, + sym_function_call = 107, + sym_type_definition = 108, + sym_enum_definition = 109, + sym_enum_instance = 110, + sym_struct_definition = 111, + sym_struct_instance = 112, + aux_sym_root_repeat1 = 113, + aux_sym_command_repeat1 = 114, + aux_sym_list_repeat1 = 115, + aux_sym_map_repeat1 = 116, + aux_sym_if_else_repeat1 = 117, + aux_sym_match_repeat1 = 118, + aux_sym_type_repeat1 = 119, + aux_sym_function_repeat1 = 120, + aux_sym_enum_definition_repeat1 = 121, + aux_sym_enum_definition_repeat2 = 122, + aux_sym_struct_definition_repeat1 = 123, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [sym__comment] = "_comment", + [anon_sym_return] = "return", [anon_sym_SEMI] = ";", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", @@ -199,7 +198,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_for] = "for", [anon_sym_asyncfor] = "async for", [anon_sym_in] = "in", - [anon_sym_return] = "return", [anon_sym_any] = "any", [anon_sym_bool] = "bool", [anon_sym_collection] = "collection", @@ -210,7 +208,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_num] = "num", [anon_sym_str] = "str", [anon_sym_DASH_GT] = "->", - [anon_sym_option] = "option", [anon_sym_enum] = "enum", [anon_sym_struct] = "struct", [anon_sym_new] = "new", @@ -248,7 +245,6 @@ static const char * const ts_symbol_names[] = { [sym_enum_pattern] = "enum_pattern", [sym_while] = "while", [sym_for] = "for", - [sym_return] = "return", [sym_type_specification] = "type_specification", [sym_type] = "type", [sym_function] = "function", @@ -277,6 +273,7 @@ static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [sym__comment] = sym__comment, + [anon_sym_return] = anon_sym_return, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, @@ -328,7 +325,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_for] = anon_sym_for, [anon_sym_asyncfor] = anon_sym_asyncfor, [anon_sym_in] = anon_sym_in, - [anon_sym_return] = anon_sym_return, [anon_sym_any] = anon_sym_any, [anon_sym_bool] = anon_sym_bool, [anon_sym_collection] = anon_sym_collection, @@ -339,7 +335,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_num] = anon_sym_num, [anon_sym_str] = anon_sym_str, [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_option] = anon_sym_option, [anon_sym_enum] = anon_sym_enum, [anon_sym_struct] = anon_sym_struct, [anon_sym_new] = anon_sym_new, @@ -377,7 +372,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_enum_pattern] = sym_enum_pattern, [sym_while] = sym_while, [sym_for] = sym_for, - [sym_return] = sym_return, [sym_type_specification] = sym_type_specification, [sym_type] = sym_type, [sym_function] = sym_function, @@ -415,6 +409,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -619,10 +617,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_return] = { - .visible = true, - .named = false, - }, [anon_sym_any] = { .visible = true, .named = false, @@ -663,10 +657,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_option] = { - .visible = true, - .named = false, - }, [anon_sym_enum] = { .visible = true, .named = false, @@ -815,10 +805,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_return] = { - .visible = true, - .named = true, - }, [sym_type_specification] = { .visible = true, .named = true, @@ -925,85 +911,85 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 2, [5] = 5, [6] = 6, - [7] = 7, + [7] = 5, [8] = 5, - [9] = 6, - [10] = 5, + [9] = 9, + [10] = 9, [11] = 11, - [12] = 5, - [13] = 7, - [14] = 6, - [15] = 5, - [16] = 11, - [17] = 5, - [18] = 7, - [19] = 6, + [12] = 12, + [13] = 9, + [14] = 11, + [15] = 6, + [16] = 6, + [17] = 6, + [18] = 5, + [19] = 9, [20] = 11, - [21] = 7, - [22] = 22, - [23] = 7, - [24] = 7, - [25] = 11, - [26] = 5, - [27] = 7, - [28] = 22, - [29] = 6, - [30] = 11, - [31] = 5, - [32] = 7, - [33] = 6, + [21] = 6, + [22] = 5, + [23] = 9, + [24] = 11, + [25] = 6, + [26] = 6, + [27] = 5, + [28] = 9, + [29] = 11, + [30] = 12, + [31] = 9, + [32] = 6, + [33] = 11, [34] = 34, - [35] = 11, - [36] = 11, + [35] = 6, + [36] = 9, [37] = 5, - [38] = 7, - [39] = 6, - [40] = 6, - [41] = 11, - [42] = 6, - [43] = 5, + [38] = 5, + [39] = 11, + [40] = 11, + [41] = 9, + [42] = 5, + [43] = 6, [44] = 11, [45] = 45, [46] = 46, - [47] = 47, - [48] = 45, - [49] = 45, - [50] = 46, - [51] = 46, + [47] = 45, + [48] = 48, + [49] = 49, + [50] = 45, + [51] = 51, [52] = 52, - [53] = 53, - [54] = 54, - [55] = 53, - [56] = 46, - [57] = 57, - [58] = 45, - [59] = 53, - [60] = 46, - [61] = 54, - [62] = 54, - [63] = 54, - [64] = 53, + [53] = 51, + [54] = 51, + [55] = 52, + [56] = 56, + [57] = 45, + [58] = 58, + [59] = 52, + [60] = 45, + [61] = 61, + [62] = 51, + [63] = 52, + [64] = 52, [65] = 65, - [66] = 45, + [66] = 51, [67] = 67, - [68] = 53, - [69] = 54, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, + [68] = 67, + [69] = 67, + [70] = 67, + [71] = 67, + [72] = 67, + [73] = 67, + [74] = 67, + [75] = 67, + [76] = 67, [77] = 77, - [78] = 74, + [78] = 78, [79] = 79, [80] = 80, [81] = 81, [82] = 82, [83] = 83, [84] = 84, - [85] = 85, + [85] = 84, [86] = 86, [87] = 87, [88] = 88, @@ -1012,740 +998,741 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 93, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, [98] = 98, - [99] = 98, + [99] = 97, [100] = 100, - [101] = 100, + [101] = 101, [102] = 102, - [103] = 102, - [104] = 104, - [105] = 87, + [103] = 103, + [104] = 103, + [105] = 105, [106] = 106, - [107] = 107, - [108] = 108, + [107] = 106, + [108] = 105, [109] = 109, - [110] = 108, + [110] = 110, [111] = 111, - [112] = 111, - [113] = 108, + [112] = 93, + [113] = 113, [114] = 114, [115] = 115, - [116] = 116, - [117] = 109, + [116] = 114, + [117] = 117, [118] = 118, - [119] = 119, - [120] = 108, - [121] = 119, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, + [119] = 113, + [120] = 120, + [121] = 121, + [122] = 115, + [123] = 114, + [124] = 120, + [125] = 121, + [126] = 121, + [127] = 121, [128] = 128, - [129] = 124, + [129] = 114, [130] = 130, [131] = 131, [132] = 132, - [133] = 123, + [133] = 133, [134] = 134, - [135] = 80, - [136] = 88, - [137] = 87, - [138] = 89, - [139] = 77, - [140] = 76, - [141] = 75, - [142] = 91, - [143] = 72, - [144] = 90, - [145] = 86, - [146] = 79, - [147] = 97, - [148] = 95, - [149] = 92, - [150] = 74, - [151] = 81, - [152] = 82, - [153] = 73, - [154] = 83, - [155] = 85, - [156] = 96, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 158, - [161] = 161, - [162] = 158, - [163] = 159, - [164] = 164, - [165] = 159, - [166] = 157, - [167] = 161, - [168] = 159, - [169] = 161, - [170] = 164, - [171] = 157, - [172] = 164, - [173] = 157, - [174] = 159, - [175] = 159, - [176] = 157, + [135] = 131, + [136] = 136, + [137] = 132, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 78, + [145] = 81, + [146] = 77, + [147] = 87, + [148] = 89, + [149] = 82, + [150] = 92, + [151] = 95, + [152] = 91, + [153] = 88, + [154] = 96, + [155] = 90, + [156] = 93, + [157] = 98, + [158] = 83, + [159] = 84, + [160] = 80, + [161] = 100, + [162] = 102, + [163] = 79, + [164] = 101, + [165] = 94, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 168, + [170] = 168, + [171] = 171, + [172] = 171, + [173] = 171, + [174] = 166, + [175] = 167, + [176] = 168, [177] = 177, - [178] = 157, - [179] = 158, - [180] = 161, - [181] = 181, - [182] = 159, - [183] = 164, - [184] = 159, - [185] = 164, - [186] = 158, - [187] = 157, - [188] = 161, - [189] = 157, - [190] = 104, - [191] = 93, - [192] = 98, - [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 195, - [198] = 102, - [199] = 100, - [200] = 196, - [201] = 201, + [178] = 166, + [179] = 167, + [180] = 180, + [181] = 171, + [182] = 180, + [183] = 167, + [184] = 180, + [185] = 166, + [186] = 180, + [187] = 167, + [188] = 168, + [189] = 167, + [190] = 180, + [191] = 180, + [192] = 171, + [193] = 166, + [194] = 167, + [195] = 180, + [196] = 167, + [197] = 180, + [198] = 198, + [199] = 111, + [200] = 97, + [201] = 118, [202] = 202, - [203] = 106, - [204] = 204, - [205] = 205, - [206] = 204, - [207] = 87, - [208] = 195, - [209] = 194, - [210] = 201, - [211] = 201, - [212] = 196, - [213] = 213, - [214] = 195, - [215] = 195, - [216] = 201, - [217] = 201, - [218] = 201, - [219] = 195, - [220] = 205, - [221] = 193, - [222] = 118, - [223] = 196, - [224] = 202, - [225] = 107, - [226] = 114, - [227] = 195, - [228] = 115, - [229] = 201, - [230] = 201, - [231] = 195, - [232] = 201, - [233] = 195, - [234] = 201, - [235] = 195, - [236] = 196, - [237] = 125, - [238] = 102, - [239] = 132, - [240] = 98, - [241] = 100, - [242] = 130, - [243] = 126, - [244] = 127, - [245] = 102, - [246] = 100, - [247] = 98, - [248] = 122, - [249] = 134, - [250] = 131, - [251] = 128, - [252] = 119, - [253] = 253, - [254] = 254, - [255] = 109, - [256] = 108, - [257] = 119, - [258] = 109, - [259] = 119, - [260] = 109, - [261] = 111, - [262] = 108, - [263] = 124, - [264] = 96, - [265] = 116, - [266] = 123, + [203] = 203, + [204] = 110, + [205] = 109, + [206] = 206, + [207] = 206, + [208] = 117, + [209] = 209, + [210] = 206, + [211] = 211, + [212] = 212, + [213] = 211, + [214] = 211, + [215] = 206, + [216] = 216, + [217] = 206, + [218] = 218, + [219] = 206, + [220] = 211, + [221] = 209, + [222] = 203, + [223] = 202, + [224] = 211, + [225] = 211, + [226] = 128, + [227] = 206, + [228] = 211, + [229] = 206, + [230] = 93, + [231] = 211, + [232] = 202, + [233] = 211, + [234] = 206, + [235] = 105, + [236] = 202, + [237] = 103, + [238] = 202, + [239] = 218, + [240] = 240, + [241] = 216, + [242] = 106, + [243] = 240, + [244] = 211, + [245] = 206, + [246] = 142, + [247] = 103, + [248] = 106, + [249] = 138, + [250] = 143, + [251] = 105, + [252] = 136, + [253] = 133, + [254] = 141, + [255] = 139, + [256] = 140, + [257] = 106, + [258] = 103, + [259] = 134, + [260] = 105, + [261] = 120, + [262] = 120, + [263] = 121, + [264] = 113, + [265] = 265, + [266] = 114, [267] = 267, - [268] = 111, - [269] = 269, - [270] = 111, - [271] = 271, - [272] = 271, - [273] = 271, - [274] = 271, - [275] = 271, - [276] = 276, - [277] = 277, - [278] = 102, - [279] = 277, - [280] = 98, - [281] = 97, + [268] = 113, + [269] = 115, + [270] = 114, + [271] = 120, + [272] = 121, + [273] = 113, + [274] = 131, + [275] = 115, + [276] = 102, + [277] = 132, + [278] = 278, + [279] = 115, + [280] = 130, + [281] = 281, [282] = 282, - [283] = 277, - [284] = 92, - [285] = 277, - [286] = 100, - [287] = 277, - [288] = 277, - [289] = 100, - [290] = 98, - [291] = 102, - [292] = 92, - [293] = 97, - [294] = 294, + [283] = 282, + [284] = 282, + [285] = 282, + [286] = 282, + [287] = 287, + [288] = 103, + [289] = 105, + [290] = 103, + [291] = 106, + [292] = 292, + [293] = 100, + [294] = 292, [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 107, - [300] = 300, - [301] = 301, - [302] = 111, - [303] = 303, + [296] = 106, + [297] = 98, + [298] = 292, + [299] = 292, + [300] = 105, + [301] = 292, + [302] = 292, + [303] = 98, [304] = 304, - [305] = 305, - [306] = 111, + [305] = 100, + [306] = 306, [307] = 307, - [308] = 106, - [309] = 305, - [310] = 310, + [308] = 308, + [309] = 309, + [310] = 109, [311] = 311, - [312] = 312, + [312] = 115, [313] = 313, [314] = 314, - [315] = 315, - [316] = 316, - [317] = 312, - [318] = 318, + [315] = 115, + [316] = 110, + [317] = 317, + [318] = 314, [319] = 319, [320] = 320, [321] = 321, - [322] = 96, + [322] = 322, [323] = 323, [324] = 324, [325] = 325, [326] = 326, - [327] = 315, + [327] = 327, [328] = 328, - [329] = 319, - [330] = 313, + [329] = 329, + [330] = 330, [331] = 331, - [332] = 74, - [333] = 331, - [334] = 331, - [335] = 331, - [336] = 331, - [337] = 331, - [338] = 338, - [339] = 74, - [340] = 80, - [341] = 267, - [342] = 269, - [343] = 93, - [344] = 102, - [345] = 87, - [346] = 86, - [347] = 73, - [348] = 93, - [349] = 276, - [350] = 91, - [351] = 89, - [352] = 98, - [353] = 77, - [354] = 76, - [355] = 88, - [356] = 72, - [357] = 79, - [358] = 90, - [359] = 95, - [360] = 100, - [361] = 82, - [362] = 75, - [363] = 85, - [364] = 83, - [365] = 81, - [366] = 100, - [367] = 96, - [368] = 97, + [332] = 332, + [333] = 333, + [334] = 327, + [335] = 328, + [336] = 336, + [337] = 337, + [338] = 330, + [339] = 102, + [340] = 329, + [341] = 341, + [342] = 342, + [343] = 324, + [344] = 344, + [345] = 344, + [346] = 344, + [347] = 344, + [348] = 84, + [349] = 344, + [350] = 344, + [351] = 351, + [352] = 84, + [353] = 278, + [354] = 78, + [355] = 281, + [356] = 97, + [357] = 105, + [358] = 83, + [359] = 97, + [360] = 89, + [361] = 90, + [362] = 91, + [363] = 88, + [364] = 82, + [365] = 287, + [366] = 101, + [367] = 92, + [368] = 93, [369] = 102, - [370] = 92, - [371] = 98, - [372] = 102, - [373] = 98, - [374] = 100, - [375] = 104, - [376] = 97, - [377] = 298, - [378] = 296, - [379] = 96, - [380] = 92, - [381] = 111, - [382] = 111, - [383] = 124, - [384] = 119, - [385] = 109, - [386] = 118, - [387] = 108, - [388] = 98, - [389] = 313, - [390] = 111, - [391] = 100, - [392] = 107, - [393] = 297, - [394] = 107, - [395] = 116, - [396] = 108, - [397] = 294, - [398] = 315, - [399] = 102, - [400] = 106, - [401] = 106, - [402] = 295, - [403] = 87, - [404] = 325, - [405] = 100, - [406] = 316, - [407] = 98, - [408] = 97, - [409] = 409, - [410] = 109, - [411] = 115, - [412] = 114, - [413] = 413, - [414] = 324, - [415] = 108, - [416] = 318, - [417] = 319, - [418] = 104, - [419] = 80, - [420] = 328, - [421] = 310, - [422] = 119, - [423] = 102, - [424] = 424, - [425] = 413, - [426] = 300, - [427] = 303, - [428] = 134, - [429] = 323, - [430] = 301, - [431] = 409, - [432] = 321, - [433] = 123, - [434] = 434, - [435] = 98, - [436] = 80, - [437] = 100, - [438] = 92, - [439] = 311, - [440] = 424, - [441] = 319, - [442] = 104, - [443] = 108, - [444] = 314, - [445] = 96, + [370] = 98, + [371] = 106, + [372] = 94, + [373] = 79, + [374] = 80, + [375] = 96, + [376] = 100, + [377] = 95, + [378] = 87, + [379] = 103, + [380] = 106, + [381] = 77, + [382] = 103, + [383] = 105, + [384] = 81, + [385] = 103, + [386] = 105, + [387] = 106, + [388] = 308, + [389] = 98, + [390] = 115, + [391] = 307, + [392] = 111, + [393] = 100, + [394] = 115, + [395] = 102, + [396] = 132, + [397] = 327, + [398] = 120, + [399] = 113, + [400] = 110, + [401] = 121, + [402] = 93, + [403] = 110, + [404] = 103, + [405] = 304, + [406] = 306, + [407] = 109, + [408] = 328, + [409] = 114, + [410] = 105, + [411] = 130, + [412] = 109, + [413] = 121, + [414] = 309, + [415] = 128, + [416] = 114, + [417] = 115, + [418] = 106, + [419] = 100, + [420] = 342, + [421] = 321, + [422] = 422, + [423] = 423, + [424] = 78, + [425] = 333, + [426] = 336, + [427] = 326, + [428] = 332, + [429] = 101, + [430] = 106, + [431] = 325, + [432] = 141, + [433] = 433, + [434] = 320, + [435] = 330, + [436] = 337, + [437] = 113, + [438] = 98, + [439] = 120, + [440] = 111, + [441] = 331, + [442] = 341, + [443] = 323, + [444] = 319, + [445] = 311, [446] = 446, - [447] = 124, - [448] = 326, - [449] = 449, - [450] = 102, - [451] = 320, - [452] = 95, + [447] = 78, + [448] = 105, + [449] = 313, + [450] = 103, + [451] = 131, + [452] = 452, [453] = 446, - [454] = 307, - [455] = 75, - [456] = 87, - [457] = 97, - [458] = 115, - [459] = 114, - [460] = 460, - [461] = 131, - [462] = 462, - [463] = 79, - [464] = 122, - [465] = 87, - [466] = 87, - [467] = 72, - [468] = 81, - [469] = 83, - [470] = 85, - [471] = 92, - [472] = 111, - [473] = 131, - [474] = 132, - [475] = 130, - [476] = 118, - [477] = 128, - [478] = 82, - [479] = 96, - [480] = 90, - [481] = 72, - [482] = 76, - [483] = 86, - [484] = 127, - [485] = 126, - [486] = 77, - [487] = 125, - [488] = 89, - [489] = 91, - [490] = 96, - [491] = 73, - [492] = 92, - [493] = 73, - [494] = 79, - [495] = 97, - [496] = 91, - [497] = 75, - [498] = 89, - [499] = 119, - [500] = 109, - [501] = 86, - [502] = 77, - [503] = 76, - [504] = 88, - [505] = 88, - [506] = 90, - [507] = 123, - [508] = 87, - [509] = 82, - [510] = 118, - [511] = 95, - [512] = 85, - [513] = 83, - [514] = 81, - [515] = 107, - [516] = 118, - [517] = 127, - [518] = 518, - [519] = 519, - [520] = 519, - [521] = 519, - [522] = 522, - [523] = 126, - [524] = 519, - [525] = 115, - [526] = 526, - [527] = 132, - [528] = 125, - [529] = 115, - [530] = 530, - [531] = 114, + [454] = 324, + [455] = 330, + [456] = 111, + [457] = 423, + [458] = 422, + [459] = 452, + [460] = 105, + [461] = 118, + [462] = 103, + [463] = 322, + [464] = 102, + [465] = 121, + [466] = 132, + [467] = 106, + [468] = 121, + [469] = 117, + [470] = 114, + [471] = 114, + [472] = 324, + [473] = 91, + [474] = 79, + [475] = 92, + [476] = 81, + [477] = 96, + [478] = 95, + [479] = 77, + [480] = 134, + [481] = 89, + [482] = 80, + [483] = 140, + [484] = 93, + [485] = 89, + [486] = 486, + [487] = 88, + [488] = 81, + [489] = 115, + [490] = 136, + [491] = 143, + [492] = 128, + [493] = 87, + [494] = 102, + [495] = 100, + [496] = 142, + [497] = 138, + [498] = 79, + [499] = 133, + [500] = 95, + [501] = 90, + [502] = 91, + [503] = 88, + [504] = 100, + [505] = 96, + [506] = 93, + [507] = 98, + [508] = 82, + [509] = 139, + [510] = 120, + [511] = 94, + [512] = 77, + [513] = 113, + [514] = 128, + [515] = 83, + [516] = 80, + [517] = 94, + [518] = 93, + [519] = 87, + [520] = 90, + [521] = 98, + [522] = 93, + [523] = 92, + [524] = 102, + [525] = 525, + [526] = 83, + [527] = 527, + [528] = 131, + [529] = 101, + [530] = 82, + [531] = 118, [532] = 532, - [533] = 119, - [534] = 134, - [535] = 109, - [536] = 519, - [537] = 107, - [538] = 111, - [539] = 119, - [540] = 109, - [541] = 114, - [542] = 532, - [543] = 106, - [544] = 111, - [545] = 106, - [546] = 134, - [547] = 131, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 122, - [552] = 130, - [553] = 128, - [554] = 554, - [555] = 549, - [556] = 549, - [557] = 550, - [558] = 125, - [559] = 554, - [560] = 550, - [561] = 554, - [562] = 554, - [563] = 126, - [564] = 564, - [565] = 549, - [566] = 127, - [567] = 122, - [568] = 568, - [569] = 554, - [570] = 549, - [571] = 127, - [572] = 550, - [573] = 550, - [574] = 126, - [575] = 550, - [576] = 576, - [577] = 130, - [578] = 132, - [579] = 554, - [580] = 128, - [581] = 549, - [582] = 131, - [583] = 132, - [584] = 125, - [585] = 585, + [533] = 110, + [534] = 117, + [535] = 535, + [536] = 113, + [537] = 537, + [538] = 118, + [539] = 117, + [540] = 532, + [541] = 118, + [542] = 141, + [543] = 115, + [544] = 109, + [545] = 545, + [546] = 532, + [547] = 109, + [548] = 120, + [549] = 117, + [550] = 113, + [551] = 110, + [552] = 128, + [553] = 532, + [554] = 136, + [555] = 115, + [556] = 141, + [557] = 120, + [558] = 535, + [559] = 532, + [560] = 560, + [561] = 140, + [562] = 562, + [563] = 138, + [564] = 133, + [565] = 565, + [566] = 143, + [567] = 139, + [568] = 136, + [569] = 134, + [570] = 570, + [571] = 136, + [572] = 143, + [573] = 143, + [574] = 134, + [575] = 138, + [576] = 139, + [577] = 142, + [578] = 142, + [579] = 138, + [580] = 580, + [581] = 133, + [582] = 133, + [583] = 140, + [584] = 584, + [585] = 142, [586] = 586, - [587] = 587, - [588] = 587, - [589] = 586, - [590] = 587, + [587] = 586, + [588] = 588, + [589] = 589, + [590] = 586, [591] = 586, - [592] = 586, + [592] = 589, [593] = 593, - [594] = 587, - [595] = 586, + [594] = 586, + [595] = 593, [596] = 586, - [597] = 587, + [597] = 589, [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 600, - [603] = 603, - [604] = 603, - [605] = 605, - [606] = 605, - [607] = 598, - [608] = 603, - [609] = 601, - [610] = 598, - [611] = 598, - [612] = 605, - [613] = 601, - [614] = 605, - [615] = 605, - [616] = 600, - [617] = 605, - [618] = 600, - [619] = 600, - [620] = 599, - [621] = 600, - [622] = 603, - [623] = 603, - [624] = 598, - [625] = 603, - [626] = 601, - [627] = 598, - [628] = 601, - [629] = 102, - [630] = 100, - [631] = 98, - [632] = 100, - [633] = 102, - [634] = 98, - [635] = 111, - [636] = 111, - [637] = 107, - [638] = 313, - [639] = 639, - [640] = 106, - [641] = 641, - [642] = 641, - [643] = 315, - [644] = 313, - [645] = 645, - [646] = 645, - [647] = 647, - [648] = 315, - [649] = 649, - [650] = 645, - [651] = 645, - [652] = 645, - [653] = 653, + [599] = 593, + [600] = 589, + [601] = 588, + [602] = 589, + [603] = 593, + [604] = 588, + [605] = 589, + [606] = 588, + [607] = 588, + [608] = 588, + [609] = 593, + [610] = 610, + [611] = 610, + [612] = 610, + [613] = 610, + [614] = 610, + [615] = 610, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 620, + [622] = 619, + [623] = 618, + [624] = 620, + [625] = 625, + [626] = 625, + [627] = 618, + [628] = 625, + [629] = 625, + [630] = 617, + [631] = 620, + [632] = 625, + [633] = 620, + [634] = 620, + [635] = 618, + [636] = 617, + [637] = 618, + [638] = 618, + [639] = 625, + [640] = 617, + [641] = 617, + [642] = 105, + [643] = 103, + [644] = 106, + [645] = 106, + [646] = 103, + [647] = 105, + [648] = 115, + [649] = 115, + [650] = 327, + [651] = 651, + [652] = 110, + [653] = 109, [654] = 654, - [655] = 655, - [656] = 656, - [657] = 655, + [655] = 327, + [656] = 328, + [657] = 654, [658] = 658, [659] = 659, - [660] = 655, - [661] = 655, - [662] = 655, - [663] = 663, - [664] = 664, - [665] = 664, - [666] = 663, + [660] = 659, + [661] = 661, + [662] = 328, + [663] = 659, + [664] = 659, + [665] = 659, + [666] = 666, [667] = 667, - [668] = 663, - [669] = 664, - [670] = 659, + [668] = 668, + [669] = 669, + [670] = 668, [671] = 671, - [672] = 659, + [672] = 672, [673] = 673, [674] = 674, - [675] = 653, - [676] = 653, - [677] = 655, - [678] = 664, - [679] = 679, + [675] = 674, + [676] = 669, + [677] = 677, + [678] = 678, + [679] = 666, [680] = 680, - [681] = 681, - [682] = 680, - [683] = 679, - [684] = 663, - [685] = 667, - [686] = 659, + [681] = 669, + [682] = 682, + [683] = 683, + [684] = 669, + [685] = 685, + [686] = 677, [687] = 687, - [688] = 688, + [688] = 674, [689] = 689, [690] = 690, - [691] = 691, - [692] = 674, + [691] = 674, + [692] = 668, [693] = 693, - [694] = 653, - [695] = 663, - [696] = 659, - [697] = 653, - [698] = 664, - [699] = 653, - [700] = 659, - [701] = 701, - [702] = 663, + [694] = 668, + [695] = 668, + [696] = 696, + [697] = 666, + [698] = 677, + [699] = 677, + [700] = 700, + [701] = 666, + [702] = 669, [703] = 703, - [704] = 704, - [705] = 705, + [704] = 696, + [705] = 700, [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 709, - [711] = 704, - [712] = 709, - [713] = 713, - [714] = 709, - [715] = 715, - [716] = 715, - [717] = 706, - [718] = 715, - [719] = 706, - [720] = 720, + [707] = 666, + [708] = 674, + [709] = 669, + [710] = 671, + [711] = 711, + [712] = 674, + [713] = 690, + [714] = 677, + [715] = 666, + [716] = 668, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 718, [721] = 721, - [722] = 704, - [723] = 715, + [722] = 718, + [723] = 723, [724] = 724, - [725] = 704, - [726] = 726, - [727] = 706, - [728] = 715, - [729] = 704, - [730] = 715, + [725] = 725, + [726] = 724, + [727] = 727, + [728] = 724, + [729] = 729, + [730] = 730, [731] = 731, [732] = 732, - [733] = 733, - [734] = 709, - [735] = 704, - [736] = 706, - [737] = 706, - [738] = 721, - [739] = 739, - [740] = 740, + [733] = 724, + [734] = 718, + [735] = 735, + [736] = 719, + [737] = 718, + [738] = 719, + [739] = 718, + [740] = 719, [741] = 741, - [742] = 739, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 747, - [750] = 750, - [751] = 751, - [752] = 740, + [742] = 735, + [743] = 735, + [744] = 724, + [745] = 735, + [746] = 719, + [747] = 721, + [748] = 735, + [749] = 749, + [750] = 735, + [751] = 719, + [752] = 752, [753] = 753, - [754] = 743, - [755] = 746, + [754] = 754, + [755] = 755, [756] = 756, - [757] = 740, - [758] = 758, - [759] = 747, - [760] = 760, - [761] = 741, - [762] = 744, - [763] = 753, - [764] = 739, - [765] = 765, - [766] = 740, - [767] = 753, - [768] = 739, - [769] = 739, - [770] = 760, - [771] = 741, - [772] = 744, - [773] = 773, - [774] = 753, - [775] = 760, - [776] = 773, - [777] = 740, - [778] = 747, - [779] = 743, - [780] = 760, - [781] = 741, - [782] = 744, - [783] = 740, + [757] = 754, + [758] = 753, + [759] = 759, + [760] = 752, + [761] = 761, + [762] = 754, + [763] = 759, + [764] = 752, + [765] = 761, + [766] = 754, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 759, + [772] = 770, + [773] = 752, + [774] = 774, + [775] = 761, + [776] = 776, + [777] = 768, + [778] = 769, + [779] = 770, + [780] = 761, + [781] = 761, + [782] = 754, + [783] = 754, [784] = 784, - [785] = 740, - [786] = 747, - [787] = 753, - [788] = 740, - [789] = 760, - [790] = 741, - [791] = 744, - [792] = 739, - [793] = 743, - [794] = 794, - [795] = 760, - [796] = 744, - [797] = 760, - [798] = 744, - [799] = 760, - [800] = 800, - [801] = 801, - [802] = 744, - [803] = 740, - [804] = 740, - [805] = 740, - [806] = 756, - [807] = 740, - [808] = 784, - [809] = 743, + [785] = 769, + [786] = 768, + [787] = 769, + [788] = 770, + [789] = 761, + [790] = 776, + [791] = 761, + [792] = 792, + [793] = 793, + [794] = 768, + [795] = 769, + [796] = 770, + [797] = 797, + [798] = 798, + [799] = 768, + [800] = 770, + [801] = 768, + [802] = 770, + [803] = 768, + [804] = 793, + [805] = 756, + [806] = 806, + [807] = 761, + [808] = 761, + [809] = 759, [810] = 810, - [811] = 740, - [812] = 741, - [813] = 800, - [814] = 814, - [815] = 740, - [816] = 794, - [817] = 817, - [818] = 753, - [819] = 784, - [820] = 820, - [821] = 784, - [822] = 743, - [823] = 784, - [824] = 784, - [825] = 760, - [826] = 817, - [827] = 740, + [811] = 761, + [812] = 752, + [813] = 761, + [814] = 761, + [815] = 815, + [816] = 770, + [817] = 752, + [818] = 759, + [819] = 819, + [820] = 761, + [821] = 769, + [822] = 810, + [823] = 761, + [824] = 761, + [825] = 825, + [826] = 768, + [827] = 806, + [828] = 768, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3631,322 +3618,303 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(8); if (lookahead == 'm') ADVANCE(9); if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'w') ADVANCE(15); + if (lookahead == 'r') ADVANCE(11); + if (lookahead == 's') ADVANCE(12); + if (lookahead == 't') ADVANCE(13); + if (lookahead == 'w') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'n') ADVANCE(16); + if (lookahead == 'n') ADVANCE(15); END_STATE(); case 2: - if (lookahead == 'a') ADVANCE(17); + if (lookahead == 'a') ADVANCE(16); END_STATE(); case 3: - if (lookahead == 'n') ADVANCE(18); + if (lookahead == 'n') ADVANCE(17); END_STATE(); case 4: - if (lookahead == 'o') ADVANCE(19); + if (lookahead == 'o') ADVANCE(18); END_STATE(); case 5: - if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'o') ADVANCE(19); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'n') ADVANCE(21); END_STATE(); case 7: - if (lookahead == 'a') ADVANCE(23); - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'a') ADVANCE(22); + if (lookahead == 'l') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); END_STATE(); case 8: - if (lookahead == 'f') ADVANCE(26); - if (lookahead == 'n') ADVANCE(27); + if (lookahead == 'f') ADVANCE(25); + if (lookahead == 'n') ADVANCE(26); END_STATE(); case 9: - if (lookahead == 'a') ADVANCE(28); + if (lookahead == 'a') ADVANCE(27); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'e') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'a') ADVANCE(28); + if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); case 11: - if (lookahead == 'p') ADVANCE(33); + if (lookahead == 'e') ADVANCE(32); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == 't') ADVANCE(33); END_STATE(); case 13: - if (lookahead == 't') ADVANCE(35); + if (lookahead == 'r') ADVANCE(34); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(36); + if (lookahead == 'h') ADVANCE(35); END_STATE(); case 15: - if (lookahead == 'h') ADVANCE(37); + if (lookahead == 'f') ADVANCE(36); END_STATE(); case 16: - if (lookahead == 'f') ADVANCE(38); + if (lookahead == 'N') ADVANCE(37); END_STATE(); case 17: - if (lookahead == 'N') ADVANCE(39); + if (lookahead == 'y') ADVANCE(38); END_STATE(); case 18: - if (lookahead == 'y') ADVANCE(40); + if (lookahead == 'o') ADVANCE(39); END_STATE(); case 19: - if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'l') ADVANCE(40); END_STATE(); case 20: - if (lookahead == 'l') ADVANCE(42); + if (lookahead == 's') ADVANCE(41); END_STATE(); case 21: - if (lookahead == 's') ADVANCE(43); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 22: - if (lookahead == 'u') ADVANCE(44); + if (lookahead == 'l') ADVANCE(43); END_STATE(); case 23: - if (lookahead == 'l') ADVANCE(45); + if (lookahead == 'o') ADVANCE(44); END_STATE(); case 24: - if (lookahead == 'o') ADVANCE(46); + if (lookahead == 'r') ADVANCE(45); END_STATE(); case 25: - if (lookahead == 'r') ADVANCE(47); - END_STATE(); - case 26: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 27: + case 26: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'f') ADVANCE(48); + if (lookahead == 'f') ADVANCE(46); + if (lookahead == 't') ADVANCE(47); + END_STATE(); + case 27: + if (lookahead == 'p') ADVANCE(48); if (lookahead == 't') ADVANCE(49); END_STATE(); case 28: - if (lookahead == 'p') ADVANCE(50); - if (lookahead == 't') ADVANCE(51); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(52); + if (lookahead == 'w') ADVANCE(51); END_STATE(); case 30: - if (lookahead == 'w') ADVANCE(53); + if (lookahead == 'n') ADVANCE(52); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(54); + if (lookahead == 'm') ADVANCE(53); END_STATE(); case 32: - if (lookahead == 'm') ADVANCE(55); + if (lookahead == 't') ADVANCE(54); END_STATE(); case 33: - if (lookahead == 't') ADVANCE(56); + if (lookahead == 'r') ADVANCE(55); END_STATE(); case 34: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 'u') ADVANCE(56); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 37: - if (lookahead == 'i') ADVANCE(60); - END_STATE(); - case 38: - if (lookahead == 'i') ADVANCE(61); - END_STATE(); - case 39: ACCEPT_TOKEN(anon_sym_NaN); END_STATE(); - case 40: + case 38: ACCEPT_TOKEN(anon_sym_any); END_STATE(); + case 39: + if (lookahead == 'l') ADVANCE(59); + END_STATE(); + case 40: + if (lookahead == 'l') ADVANCE(60); + END_STATE(); case 41: - if (lookahead == 'l') ADVANCE(62); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 42: - if (lookahead == 'l') ADVANCE(63); + if (lookahead == 'm') ADVANCE(62); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 44: - if (lookahead == 'm') ADVANCE(65); + if (lookahead == 'a') ADVANCE(64); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(66); - END_STATE(); - case 46: - if (lookahead == 'a') ADVANCE(67); - END_STATE(); - case 47: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 48: - if (lookahead == 'i') ADVANCE(68); + case 46: + if (lookahead == 'i') ADVANCE(65); END_STATE(); - case 49: + case 47: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 50: + case 48: ACCEPT_TOKEN(anon_sym_map); END_STATE(); - case 51: - if (lookahead == 'c') ADVANCE(69); + case 49: + if (lookahead == 'c') ADVANCE(66); END_STATE(); - case 52: + case 50: ACCEPT_TOKEN(anon_sym_nan); END_STATE(); - case 53: + case 51: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 54: - if (lookahead == 'e') ADVANCE(70); + case 52: + if (lookahead == 'e') ADVANCE(67); END_STATE(); - case 55: + case 53: ACCEPT_TOKEN(anon_sym_num); END_STATE(); + case 54: + if (lookahead == 'u') ADVANCE(68); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(69); + END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'e') ADVANCE(70); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'l') ADVANCE(71); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(73); + if (lookahead == 'n') ADVANCE(72); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(74); - END_STATE(); - case 60: - if (lookahead == 'l') ADVANCE(75); - END_STATE(); - case 61: - if (lookahead == 'n') ADVANCE(76); - END_STATE(); - case 62: ACCEPT_TOKEN(anon_sym_bool); END_STATE(); - case 63: - if (lookahead == 'e') ADVANCE(77); + case 60: + if (lookahead == 'e') ADVANCE(73); END_STATE(); - case 64: + case 61: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 65: + case 62: ACCEPT_TOKEN(anon_sym_enum); END_STATE(); + case 63: + if (lookahead == 'e') ADVANCE(74); + END_STATE(); + case 64: + if (lookahead == 't') ADVANCE(75); + END_STATE(); + case 65: + if (lookahead == 'n') ADVANCE(76); + END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == 'h') ADVANCE(77); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(79); - END_STATE(); - case 68: - if (lookahead == 'n') ADVANCE(80); - END_STATE(); - case 69: - if (lookahead == 'h') ADVANCE(81); - END_STATE(); - case 70: ACCEPT_TOKEN(anon_sym_none); END_STATE(); - case 71: - if (lookahead == 'o') ADVANCE(82); + case 68: + if (lookahead == 'r') ADVANCE(78); END_STATE(); - case 72: - if (lookahead == 'r') ADVANCE(83); + case 69: + if (lookahead == 'c') ADVANCE(79); END_STATE(); - case 73: - if (lookahead == 'c') ADVANCE(84); - END_STATE(); - case 74: + case 70: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 75: - if (lookahead == 'e') ADVANCE(85); + case 71: + if (lookahead == 'e') ADVANCE(80); END_STATE(); - case 76: - if (lookahead == 'i') ADVANCE(86); + case 72: + if (lookahead == 'i') ADVANCE(81); END_STATE(); - case 77: - if (lookahead == 'c') ADVANCE(87); + case 73: + if (lookahead == 'c') ADVANCE(82); END_STATE(); - case 78: + case 74: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 79: + case 75: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 80: - if (lookahead == 'i') ADVANCE(88); + case 76: + if (lookahead == 'i') ADVANCE(83); END_STATE(); - case 81: + case 77: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 82: - if (lookahead == 'n') ADVANCE(89); + case 78: + if (lookahead == 'n') ADVANCE(84); END_STATE(); - case 83: - if (lookahead == 'n') ADVANCE(90); + case 79: + if (lookahead == 't') ADVANCE(85); END_STATE(); - case 84: - if (lookahead == 't') ADVANCE(91); - END_STATE(); - case 85: + case 80: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 86: - if (lookahead == 't') ADVANCE(92); + case 81: + if (lookahead == 't') ADVANCE(86); END_STATE(); - case 87: - if (lookahead == 't') ADVANCE(93); + case 82: + if (lookahead == 't') ADVANCE(87); END_STATE(); - case 88: - if (lookahead == 't') ADVANCE(94); + case 83: + if (lookahead == 't') ADVANCE(88); END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_option); - END_STATE(); - case 90: + case 84: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 91: + case 85: ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 92: - if (lookahead == 'y') ADVANCE(95); + case 86: + if (lookahead == 'y') ADVANCE(89); END_STATE(); - case 93: - if (lookahead == 'i') ADVANCE(96); + case 87: + if (lookahead == 'i') ADVANCE(90); END_STATE(); - case 94: - if (lookahead == 'y') ADVANCE(97); + case 88: + if (lookahead == 'y') ADVANCE(91); END_STATE(); - case 95: + case 89: ACCEPT_TOKEN(anon_sym_Infinity); END_STATE(); - case 96: - if (lookahead == 'o') ADVANCE(98); + case 90: + if (lookahead == 'o') ADVANCE(92); END_STATE(); - case 97: + case 91: ACCEPT_TOKEN(anon_sym_infinity); END_STATE(); - case 98: - if (lookahead == 'n') ADVANCE(99); + case 92: + if (lookahead == 'n') ADVANCE(93); END_STATE(); - case 99: + case 93: ACCEPT_TOKEN(anon_sym_collection); END_STATE(); default: @@ -4027,57 +3995,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 48}, [70] = {.lex_state = 48}, [71] = {.lex_state = 48}, - [72] = {.lex_state = 45}, - [73] = {.lex_state = 45}, - [74] = {.lex_state = 46}, - [75] = {.lex_state = 45}, - [76] = {.lex_state = 45}, + [72] = {.lex_state = 48}, + [73] = {.lex_state = 48}, + [74] = {.lex_state = 48}, + [75] = {.lex_state = 48}, + [76] = {.lex_state = 48}, [77] = {.lex_state = 45}, [78] = {.lex_state = 46}, [79] = {.lex_state = 45}, - [80] = {.lex_state = 46}, + [80] = {.lex_state = 45}, [81] = {.lex_state = 45}, [82] = {.lex_state = 45}, [83] = {.lex_state = 45}, [84] = {.lex_state = 46}, - [85] = {.lex_state = 45}, - [86] = {.lex_state = 45}, - [87] = {.lex_state = 46}, - [88] = {.lex_state = 46}, - [89] = {.lex_state = 46}, - [90] = {.lex_state = 46}, - [91] = {.lex_state = 46}, + [85] = {.lex_state = 46}, + [86] = {.lex_state = 46}, + [87] = {.lex_state = 45}, + [88] = {.lex_state = 45}, + [89] = {.lex_state = 45}, + [90] = {.lex_state = 45}, + [91] = {.lex_state = 45}, [92] = {.lex_state = 46}, [93] = {.lex_state = 46}, [94] = {.lex_state = 46}, [95] = {.lex_state = 46}, [96] = {.lex_state = 46}, [97] = {.lex_state = 46}, - [98] = {.lex_state = 47}, - [99] = {.lex_state = 8}, - [100] = {.lex_state = 8}, - [101] = {.lex_state = 47}, - [102] = {.lex_state = 47}, - [103] = {.lex_state = 8}, - [104] = {.lex_state = 45}, - [105] = {.lex_state = 45}, - [106] = {.lex_state = 45}, - [107] = {.lex_state = 45}, - [108] = {.lex_state = 45}, + [98] = {.lex_state = 46}, + [99] = {.lex_state = 46}, + [100] = {.lex_state = 46}, + [101] = {.lex_state = 46}, + [102] = {.lex_state = 46}, + [103] = {.lex_state = 47}, + [104] = {.lex_state = 8}, + [105] = {.lex_state = 47}, + [106] = {.lex_state = 8}, + [107] = {.lex_state = 47}, + [108] = {.lex_state = 8}, [109] = {.lex_state = 45}, [110] = {.lex_state = 45}, - [111] = {.lex_state = 47}, - [112] = {.lex_state = 8}, + [111] = {.lex_state = 45}, + [112] = {.lex_state = 45}, [113] = {.lex_state = 45}, [114] = {.lex_state = 45}, - [115] = {.lex_state = 45}, + [115] = {.lex_state = 8}, [116] = {.lex_state = 45}, [117] = {.lex_state = 45}, [118] = {.lex_state = 45}, [119] = {.lex_state = 45}, [120] = {.lex_state = 45}, [121] = {.lex_state = 45}, - [122] = {.lex_state = 45}, + [122] = {.lex_state = 47}, [123] = {.lex_state = 45}, [124] = {.lex_state = 45}, [125] = {.lex_state = 45}, @@ -4090,15 +4058,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 45}, [133] = {.lex_state = 45}, [134] = {.lex_state = 45}, - [135] = {.lex_state = 1}, - [136] = {.lex_state = 1}, - [137] = {.lex_state = 1}, - [138] = {.lex_state = 1}, - [139] = {.lex_state = 1}, - [140] = {.lex_state = 1}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 1}, - [143] = {.lex_state = 1}, + [135] = {.lex_state = 45}, + [136] = {.lex_state = 45}, + [137] = {.lex_state = 45}, + [138] = {.lex_state = 45}, + [139] = {.lex_state = 45}, + [140] = {.lex_state = 45}, + [141] = {.lex_state = 45}, + [142] = {.lex_state = 45}, + [143] = {.lex_state = 45}, [144] = {.lex_state = 1}, [145] = {.lex_state = 1}, [146] = {.lex_state = 1}, @@ -4112,15 +4080,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 1}, [155] = {.lex_state = 1}, [156] = {.lex_state = 1}, - [157] = {.lex_state = 14}, - [158] = {.lex_state = 14}, - [159] = {.lex_state = 14}, - [160] = {.lex_state = 14}, - [161] = {.lex_state = 14}, - [162] = {.lex_state = 14}, - [163] = {.lex_state = 14}, - [164] = {.lex_state = 14}, - [165] = {.lex_state = 14}, + [157] = {.lex_state = 1}, + [158] = {.lex_state = 1}, + [159] = {.lex_state = 1}, + [160] = {.lex_state = 1}, + [161] = {.lex_state = 1}, + [162] = {.lex_state = 1}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 1}, + [165] = {.lex_state = 1}, [166] = {.lex_state = 14}, [167] = {.lex_state = 14}, [168] = {.lex_state = 14}, @@ -4145,25 +4113,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 14}, [188] = {.lex_state = 14}, [189] = {.lex_state = 14}, - [190] = {.lex_state = 1}, - [191] = {.lex_state = 1}, - [192] = {.lex_state = 6}, + [190] = {.lex_state = 14}, + [191] = {.lex_state = 14}, + [192] = {.lex_state = 14}, [193] = {.lex_state = 14}, [194] = {.lex_state = 14}, [195] = {.lex_state = 14}, [196] = {.lex_state = 14}, [197] = {.lex_state = 14}, - [198] = {.lex_state = 6}, - [199] = {.lex_state = 6}, - [200] = {.lex_state = 14}, - [201] = {.lex_state = 14}, + [198] = {.lex_state = 14}, + [199] = {.lex_state = 1}, + [200] = {.lex_state = 1}, + [201] = {.lex_state = 1}, [202] = {.lex_state = 14}, - [203] = {.lex_state = 1}, - [204] = {.lex_state = 14}, - [205] = {.lex_state = 14}, + [203] = {.lex_state = 14}, + [204] = {.lex_state = 1}, + [205] = {.lex_state = 1}, [206] = {.lex_state = 14}, - [207] = {.lex_state = 1}, - [208] = {.lex_state = 14}, + [207] = {.lex_state = 14}, + [208] = {.lex_state = 1}, [209] = {.lex_state = 14}, [210] = {.lex_state = 14}, [211] = {.lex_state = 14}, @@ -4177,103 +4145,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 14}, [220] = {.lex_state = 14}, [221] = {.lex_state = 14}, - [222] = {.lex_state = 1}, + [222] = {.lex_state = 14}, [223] = {.lex_state = 14}, [224] = {.lex_state = 14}, - [225] = {.lex_state = 1}, + [225] = {.lex_state = 14}, [226] = {.lex_state = 1}, [227] = {.lex_state = 14}, - [228] = {.lex_state = 1}, + [228] = {.lex_state = 14}, [229] = {.lex_state = 14}, - [230] = {.lex_state = 14}, + [230] = {.lex_state = 1}, [231] = {.lex_state = 14}, [232] = {.lex_state = 14}, [233] = {.lex_state = 14}, [234] = {.lex_state = 14}, - [235] = {.lex_state = 14}, + [235] = {.lex_state = 6}, [236] = {.lex_state = 14}, - [237] = {.lex_state = 1}, - [238] = {.lex_state = 7}, - [239] = {.lex_state = 1}, - [240] = {.lex_state = 5}, - [241] = {.lex_state = 5}, - [242] = {.lex_state = 1}, - [243] = {.lex_state = 1}, - [244] = {.lex_state = 1}, - [245] = {.lex_state = 5}, - [246] = {.lex_state = 7}, + [237] = {.lex_state = 6}, + [238] = {.lex_state = 14}, + [239] = {.lex_state = 14}, + [240] = {.lex_state = 14}, + [241] = {.lex_state = 14}, + [242] = {.lex_state = 6}, + [243] = {.lex_state = 14}, + [244] = {.lex_state = 14}, + [245] = {.lex_state = 14}, + [246] = {.lex_state = 1}, [247] = {.lex_state = 7}, - [248] = {.lex_state = 1}, + [248] = {.lex_state = 7}, [249] = {.lex_state = 1}, [250] = {.lex_state = 1}, - [251] = {.lex_state = 1}, + [251] = {.lex_state = 7}, [252] = {.lex_state = 1}, [253] = {.lex_state = 1}, [254] = {.lex_state = 1}, [255] = {.lex_state = 1}, [256] = {.lex_state = 1}, - [257] = {.lex_state = 1}, - [258] = {.lex_state = 1}, + [257] = {.lex_state = 5}, + [258] = {.lex_state = 5}, [259] = {.lex_state = 1}, - [260] = {.lex_state = 1}, - [261] = {.lex_state = 6}, + [260] = {.lex_state = 5}, + [261] = {.lex_state = 1}, [262] = {.lex_state = 1}, [263] = {.lex_state = 1}, - [264] = {.lex_state = 49}, + [264] = {.lex_state = 1}, [265] = {.lex_state = 1}, [266] = {.lex_state = 1}, - [267] = {.lex_state = 49}, - [268] = {.lex_state = 7}, - [269] = {.lex_state = 49}, - [270] = {.lex_state = 5}, - [271] = {.lex_state = 14}, - [272] = {.lex_state = 14}, - [273] = {.lex_state = 14}, - [274] = {.lex_state = 14}, - [275] = {.lex_state = 14}, + [267] = {.lex_state = 1}, + [268] = {.lex_state = 1}, + [269] = {.lex_state = 6}, + [270] = {.lex_state = 1}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 1}, + [273] = {.lex_state = 1}, + [274] = {.lex_state = 1}, + [275] = {.lex_state = 5}, [276] = {.lex_state = 49}, - [277] = {.lex_state = 14}, - [278] = {.lex_state = 50}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 50}, - [281] = {.lex_state = 48}, + [277] = {.lex_state = 1}, + [278] = {.lex_state = 49}, + [279] = {.lex_state = 7}, + [280] = {.lex_state = 1}, + [281] = {.lex_state = 49}, [282] = {.lex_state = 14}, [283] = {.lex_state = 14}, - [284] = {.lex_state = 48}, + [284] = {.lex_state = 14}, [285] = {.lex_state = 14}, - [286] = {.lex_state = 50}, - [287] = {.lex_state = 14}, - [288] = {.lex_state = 14}, + [286] = {.lex_state = 14}, + [287] = {.lex_state = 49}, + [288] = {.lex_state = 50}, [289] = {.lex_state = 18}, [290] = {.lex_state = 18}, [291] = {.lex_state = 18}, - [292] = {.lex_state = 49}, - [293] = {.lex_state = 49}, - [294] = {.lex_state = 48}, - [295] = {.lex_state = 48}, - [296] = {.lex_state = 49}, + [292] = {.lex_state = 14}, + [293] = {.lex_state = 48}, + [294] = {.lex_state = 14}, + [295] = {.lex_state = 14}, + [296] = {.lex_state = 50}, [297] = {.lex_state = 48}, - [298] = {.lex_state = 49}, - [299] = {.lex_state = 48}, - [300] = {.lex_state = 48}, - [301] = {.lex_state = 48}, - [302] = {.lex_state = 18}, - [303] = {.lex_state = 48}, - [304] = {.lex_state = 14}, - [305] = {.lex_state = 14}, - [306] = {.lex_state = 50}, - [307] = {.lex_state = 48}, - [308] = {.lex_state = 48}, - [309] = {.lex_state = 14}, + [298] = {.lex_state = 14}, + [299] = {.lex_state = 14}, + [300] = {.lex_state = 50}, + [301] = {.lex_state = 14}, + [302] = {.lex_state = 14}, + [303] = {.lex_state = 49}, + [304] = {.lex_state = 48}, + [305] = {.lex_state = 49}, + [306] = {.lex_state = 48}, + [307] = {.lex_state = 49}, + [308] = {.lex_state = 49}, + [309] = {.lex_state = 48}, [310] = {.lex_state = 48}, [311] = {.lex_state = 48}, - [312] = {.lex_state = 14}, + [312] = {.lex_state = 50}, [313] = {.lex_state = 48}, - [314] = {.lex_state = 48}, - [315] = {.lex_state = 48}, + [314] = {.lex_state = 14}, + [315] = {.lex_state = 18}, [316] = {.lex_state = 48}, [317] = {.lex_state = 14}, - [318] = {.lex_state = 48}, + [318] = {.lex_state = 14}, [319] = {.lex_state = 48}, [320] = {.lex_state = 48}, [321] = {.lex_state = 48}, @@ -4284,287 +4252,287 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 48}, [327] = {.lex_state = 48}, [328] = {.lex_state = 48}, - [329] = {.lex_state = 48}, + [329] = {.lex_state = 14}, [330] = {.lex_state = 48}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 3}, - [333] = {.lex_state = 14}, - [334] = {.lex_state = 14}, - [335] = {.lex_state = 14}, - [336] = {.lex_state = 14}, - [337] = {.lex_state = 14}, + [331] = {.lex_state = 48}, + [332] = {.lex_state = 48}, + [333] = {.lex_state = 48}, + [334] = {.lex_state = 48}, + [335] = {.lex_state = 48}, + [336] = {.lex_state = 48}, + [337] = {.lex_state = 48}, [338] = {.lex_state = 48}, - [339] = {.lex_state = 3}, - [340] = {.lex_state = 3}, - [341] = {.lex_state = 15}, - [342] = {.lex_state = 15}, - [343] = {.lex_state = 3}, - [344] = {.lex_state = 17}, - [345] = {.lex_state = 3}, - [346] = {.lex_state = 3}, - [347] = {.lex_state = 3}, + [339] = {.lex_state = 48}, + [340] = {.lex_state = 14}, + [341] = {.lex_state = 48}, + [342] = {.lex_state = 48}, + [343] = {.lex_state = 48}, + [344] = {.lex_state = 14}, + [345] = {.lex_state = 14}, + [346] = {.lex_state = 14}, + [347] = {.lex_state = 14}, [348] = {.lex_state = 3}, - [349] = {.lex_state = 15}, - [350] = {.lex_state = 3}, - [351] = {.lex_state = 3}, - [352] = {.lex_state = 17}, - [353] = {.lex_state = 3}, + [349] = {.lex_state = 14}, + [350] = {.lex_state = 14}, + [351] = {.lex_state = 48}, + [352] = {.lex_state = 3}, + [353] = {.lex_state = 15}, [354] = {.lex_state = 3}, - [355] = {.lex_state = 3}, + [355] = {.lex_state = 15}, [356] = {.lex_state = 3}, - [357] = {.lex_state = 3}, + [357] = {.lex_state = 17}, [358] = {.lex_state = 3}, [359] = {.lex_state = 3}, - [360] = {.lex_state = 17}, + [360] = {.lex_state = 3}, [361] = {.lex_state = 3}, [362] = {.lex_state = 3}, [363] = {.lex_state = 3}, [364] = {.lex_state = 3}, - [365] = {.lex_state = 3}, - [366] = {.lex_state = 10}, + [365] = {.lex_state = 15}, + [366] = {.lex_state = 3}, [367] = {.lex_state = 3}, [368] = {.lex_state = 3}, - [369] = {.lex_state = 10}, + [369] = {.lex_state = 3}, [370] = {.lex_state = 3}, [371] = {.lex_state = 10}, - [372] = {.lex_state = 11}, - [373] = {.lex_state = 11}, - [374] = {.lex_state = 11}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 3}, [375] = {.lex_state = 3}, - [376] = {.lex_state = 15}, - [377] = {.lex_state = 15}, - [378] = {.lex_state = 15}, - [379] = {.lex_state = 15}, - [380] = {.lex_state = 15}, - [381] = {.lex_state = 10}, + [376] = {.lex_state = 3}, + [377] = {.lex_state = 3}, + [378] = {.lex_state = 3}, + [379] = {.lex_state = 10}, + [380] = {.lex_state = 17}, + [381] = {.lex_state = 3}, [382] = {.lex_state = 17}, - [383] = {.lex_state = 3}, + [383] = {.lex_state = 10}, [384] = {.lex_state = 3}, - [385] = {.lex_state = 3}, - [386] = {.lex_state = 3}, - [387] = {.lex_state = 3}, - [388] = {.lex_state = 12}, - [389] = {.lex_state = 14}, - [390] = {.lex_state = 11}, - [391] = {.lex_state = 12}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 14}, - [394] = {.lex_state = 3}, - [395] = {.lex_state = 3}, + [385] = {.lex_state = 11}, + [386] = {.lex_state = 11}, + [387] = {.lex_state = 11}, + [388] = {.lex_state = 15}, + [389] = {.lex_state = 15}, + [390] = {.lex_state = 10}, + [391] = {.lex_state = 15}, + [392] = {.lex_state = 3}, + [393] = {.lex_state = 15}, + [394] = {.lex_state = 17}, + [395] = {.lex_state = 15}, [396] = {.lex_state = 3}, [397] = {.lex_state = 14}, - [398] = {.lex_state = 14}, - [399] = {.lex_state = 12}, + [398] = {.lex_state = 3}, + [399] = {.lex_state = 3}, [400] = {.lex_state = 3}, - [401] = {.lex_state = 14}, - [402] = {.lex_state = 14}, - [403] = {.lex_state = 3}, - [404] = {.lex_state = 14}, - [405] = {.lex_state = 9}, + [401] = {.lex_state = 3}, + [402] = {.lex_state = 3}, + [403] = {.lex_state = 14}, + [404] = {.lex_state = 12}, + [405] = {.lex_state = 14}, [406] = {.lex_state = 14}, - [407] = {.lex_state = 9}, + [407] = {.lex_state = 3}, [408] = {.lex_state = 14}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 3}, + [409] = {.lex_state = 3}, + [410] = {.lex_state = 12}, [411] = {.lex_state = 3}, - [412] = {.lex_state = 3}, - [413] = {.lex_state = 4}, + [412] = {.lex_state = 14}, + [413] = {.lex_state = 3}, [414] = {.lex_state = 14}, [415] = {.lex_state = 3}, - [416] = {.lex_state = 14}, - [417] = {.lex_state = 14}, - [418] = {.lex_state = 4}, - [419] = {.lex_state = 4}, + [416] = {.lex_state = 3}, + [417] = {.lex_state = 11}, + [418] = {.lex_state = 12}, + [419] = {.lex_state = 14}, [420] = {.lex_state = 14}, [421] = {.lex_state = 14}, - [422] = {.lex_state = 3}, - [423] = {.lex_state = 13}, - [424] = {.lex_state = 4}, - [425] = {.lex_state = 4}, + [422] = {.lex_state = 4}, + [423] = {.lex_state = 4}, + [424] = {.lex_state = 2}, + [425] = {.lex_state = 14}, [426] = {.lex_state = 14}, [427] = {.lex_state = 14}, - [428] = {.lex_state = 3}, - [429] = {.lex_state = 14}, - [430] = {.lex_state = 14}, - [431] = {.lex_state = 4}, - [432] = {.lex_state = 14}, - [433] = {.lex_state = 3}, - [434] = {.lex_state = 2}, - [435] = {.lex_state = 13}, - [436] = {.lex_state = 2}, - [437] = {.lex_state = 13}, + [428] = {.lex_state = 14}, + [429] = {.lex_state = 2}, + [430] = {.lex_state = 9}, + [431] = {.lex_state = 14}, + [432] = {.lex_state = 3}, + [433] = {.lex_state = 2}, + [434] = {.lex_state = 14}, + [435] = {.lex_state = 14}, + [436] = {.lex_state = 14}, + [437] = {.lex_state = 3}, [438] = {.lex_state = 14}, - [439] = {.lex_state = 14}, + [439] = {.lex_state = 3}, [440] = {.lex_state = 4}, [441] = {.lex_state = 14}, - [442] = {.lex_state = 2}, - [443] = {.lex_state = 3}, + [442] = {.lex_state = 14}, + [443] = {.lex_state = 14}, [444] = {.lex_state = 14}, [445] = {.lex_state = 14}, [446] = {.lex_state = 4}, - [447] = {.lex_state = 3}, - [448] = {.lex_state = 14}, + [447] = {.lex_state = 4}, + [448] = {.lex_state = 9}, [449] = {.lex_state = 14}, [450] = {.lex_state = 9}, - [451] = {.lex_state = 14}, - [452] = {.lex_state = 2}, + [451] = {.lex_state = 3}, + [452] = {.lex_state = 4}, [453] = {.lex_state = 4}, [454] = {.lex_state = 14}, - [455] = {.lex_state = 4}, - [456] = {.lex_state = 4}, - [457] = {.lex_state = 2}, - [458] = {.lex_state = 14}, - [459] = {.lex_state = 14}, - [460] = {.lex_state = 14}, - [461] = {.lex_state = 14}, - [462] = {.lex_state = 2}, - [463] = {.lex_state = 2}, - [464] = {.lex_state = 3}, - [465] = {.lex_state = 2}, - [466] = {.lex_state = 2}, - [467] = {.lex_state = 4}, - [468] = {.lex_state = 2}, - [469] = {.lex_state = 2}, - [470] = {.lex_state = 2}, - [471] = {.lex_state = 2}, - [472] = {.lex_state = 12}, - [473] = {.lex_state = 3}, - [474] = {.lex_state = 3}, - [475] = {.lex_state = 3}, - [476] = {.lex_state = 2}, - [477] = {.lex_state = 3}, + [455] = {.lex_state = 14}, + [456] = {.lex_state = 2}, + [457] = {.lex_state = 4}, + [458] = {.lex_state = 4}, + [459] = {.lex_state = 4}, + [460] = {.lex_state = 13}, + [461] = {.lex_state = 3}, + [462] = {.lex_state = 13}, + [463] = {.lex_state = 14}, + [464] = {.lex_state = 14}, + [465] = {.lex_state = 3}, + [466] = {.lex_state = 3}, + [467] = {.lex_state = 13}, + [468] = {.lex_state = 3}, + [469] = {.lex_state = 3}, + [470] = {.lex_state = 3}, + [471] = {.lex_state = 3}, + [472] = {.lex_state = 14}, + [473] = {.lex_state = 2}, + [474] = {.lex_state = 4}, + [475] = {.lex_state = 4}, + [476] = {.lex_state = 4}, + [477] = {.lex_state = 2}, [478] = {.lex_state = 2}, [479] = {.lex_state = 4}, - [480] = {.lex_state = 2}, + [480] = {.lex_state = 3}, [481] = {.lex_state = 2}, [482] = {.lex_state = 2}, - [483] = {.lex_state = 4}, - [484] = {.lex_state = 3}, - [485] = {.lex_state = 3}, - [486] = {.lex_state = 2}, - [487] = {.lex_state = 3}, + [483] = {.lex_state = 3}, + [484] = {.lex_state = 2}, + [485] = {.lex_state = 4}, + [486] = {.lex_state = 14}, + [487] = {.lex_state = 2}, [488] = {.lex_state = 2}, - [489] = {.lex_state = 2}, - [490] = {.lex_state = 2}, - [491] = {.lex_state = 4}, + [489] = {.lex_state = 12}, + [490] = {.lex_state = 3}, + [491] = {.lex_state = 3}, [492] = {.lex_state = 4}, - [493] = {.lex_state = 2}, + [493] = {.lex_state = 4}, [494] = {.lex_state = 4}, - [495] = {.lex_state = 4}, - [496] = {.lex_state = 4}, - [497] = {.lex_state = 2}, - [498] = {.lex_state = 4}, - [499] = {.lex_state = 4}, + [495] = {.lex_state = 2}, + [496] = {.lex_state = 3}, + [497] = {.lex_state = 3}, + [498] = {.lex_state = 2}, + [499] = {.lex_state = 3}, [500] = {.lex_state = 4}, - [501] = {.lex_state = 2}, + [501] = {.lex_state = 4}, [502] = {.lex_state = 4}, [503] = {.lex_state = 4}, [504] = {.lex_state = 4}, - [505] = {.lex_state = 2}, + [505] = {.lex_state = 4}, [506] = {.lex_state = 4}, - [507] = {.lex_state = 3}, + [507] = {.lex_state = 4}, [508] = {.lex_state = 4}, - [509] = {.lex_state = 4}, + [509] = {.lex_state = 3}, [510] = {.lex_state = 4}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 4}, + [511] = {.lex_state = 2}, + [512] = {.lex_state = 2}, [513] = {.lex_state = 4}, - [514] = {.lex_state = 4}, + [514] = {.lex_state = 2}, [515] = {.lex_state = 2}, - [516] = {.lex_state = 2}, - [517] = {.lex_state = 14}, - [518] = {.lex_state = 14}, + [516] = {.lex_state = 4}, + [517] = {.lex_state = 4}, + [518] = {.lex_state = 4}, [519] = {.lex_state = 2}, [520] = {.lex_state = 2}, [521] = {.lex_state = 2}, - [522] = {.lex_state = 14}, - [523] = {.lex_state = 14}, + [522] = {.lex_state = 2}, + [523] = {.lex_state = 2}, [524] = {.lex_state = 2}, - [525] = {.lex_state = 4}, - [526] = {.lex_state = 14}, - [527] = {.lex_state = 14}, - [528] = {.lex_state = 14}, - [529] = {.lex_state = 2}, - [530] = {.lex_state = 14}, - [531] = {.lex_state = 2}, + [525] = {.lex_state = 14}, + [526] = {.lex_state = 4}, + [527] = {.lex_state = 2}, + [528] = {.lex_state = 3}, + [529] = {.lex_state = 4}, + [530] = {.lex_state = 2}, + [531] = {.lex_state = 14}, [532] = {.lex_state = 2}, - [533] = {.lex_state = 2}, + [533] = {.lex_state = 4}, [534] = {.lex_state = 2}, [535] = {.lex_state = 2}, [536] = {.lex_state = 2}, - [537] = {.lex_state = 4}, - [538] = {.lex_state = 13}, - [539] = {.lex_state = 2}, + [537] = {.lex_state = 14}, + [538] = {.lex_state = 4}, + [539] = {.lex_state = 14}, [540] = {.lex_state = 2}, - [541] = {.lex_state = 4}, - [542] = {.lex_state = 2}, - [543] = {.lex_state = 2}, - [544] = {.lex_state = 9}, - [545] = {.lex_state = 4}, - [546] = {.lex_state = 4}, + [541] = {.lex_state = 2}, + [542] = {.lex_state = 4}, + [543] = {.lex_state = 9}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 14}, + [546] = {.lex_state = 2}, [547] = {.lex_state = 4}, - [548] = {.lex_state = 14}, - [549] = {.lex_state = 14}, - [550] = {.lex_state = 14}, - [551] = {.lex_state = 4}, - [552] = {.lex_state = 4}, + [548] = {.lex_state = 2}, + [549] = {.lex_state = 4}, + [550] = {.lex_state = 2}, + [551] = {.lex_state = 2}, + [552] = {.lex_state = 2}, [553] = {.lex_state = 2}, [554] = {.lex_state = 14}, - [555] = {.lex_state = 14}, - [556] = {.lex_state = 14}, - [557] = {.lex_state = 14}, + [555] = {.lex_state = 13}, + [556] = {.lex_state = 2}, + [557] = {.lex_state = 2}, [558] = {.lex_state = 2}, - [559] = {.lex_state = 14}, + [559] = {.lex_state = 2}, [560] = {.lex_state = 14}, - [561] = {.lex_state = 14}, - [562] = {.lex_state = 14}, - [563] = {.lex_state = 2}, - [564] = {.lex_state = 2}, - [565] = {.lex_state = 14}, - [566] = {.lex_state = 2}, + [561] = {.lex_state = 2}, + [562] = {.lex_state = 2}, + [563] = {.lex_state = 14}, + [564] = {.lex_state = 4}, + [565] = {.lex_state = 2}, + [566] = {.lex_state = 14}, [567] = {.lex_state = 2}, - [568] = {.lex_state = 14}, - [569] = {.lex_state = 14}, + [568] = {.lex_state = 2}, + [569] = {.lex_state = 2}, [570] = {.lex_state = 14}, [571] = {.lex_state = 4}, - [572] = {.lex_state = 14}, - [573] = {.lex_state = 14}, + [572] = {.lex_state = 4}, + [573] = {.lex_state = 2}, [574] = {.lex_state = 4}, - [575] = {.lex_state = 14}, - [576] = {.lex_state = 2}, + [575] = {.lex_state = 4}, + [576] = {.lex_state = 4}, [577] = {.lex_state = 2}, - [578] = {.lex_state = 2}, - [579] = {.lex_state = 14}, - [580] = {.lex_state = 4}, + [578] = {.lex_state = 4}, + [579] = {.lex_state = 2}, + [580] = {.lex_state = 14}, [581] = {.lex_state = 14}, [582] = {.lex_state = 2}, [583] = {.lex_state = 4}, - [584] = {.lex_state = 4}, + [584] = {.lex_state = 14}, [585] = {.lex_state = 14}, [586] = {.lex_state = 14}, - [587] = {.lex_state = 2}, - [588] = {.lex_state = 2}, + [587] = {.lex_state = 14}, + [588] = {.lex_state = 14}, [589] = {.lex_state = 14}, - [590] = {.lex_state = 2}, + [590] = {.lex_state = 14}, [591] = {.lex_state = 14}, [592] = {.lex_state = 14}, - [593] = {.lex_state = 14}, - [594] = {.lex_state = 2}, - [595] = {.lex_state = 14}, + [593] = {.lex_state = 2}, + [594] = {.lex_state = 14}, + [595] = {.lex_state = 2}, [596] = {.lex_state = 14}, - [597] = {.lex_state = 2}, + [597] = {.lex_state = 14}, [598] = {.lex_state = 14}, - [599] = {.lex_state = 14}, + [599] = {.lex_state = 2}, [600] = {.lex_state = 14}, [601] = {.lex_state = 14}, [602] = {.lex_state = 14}, - [603] = {.lex_state = 14}, + [603] = {.lex_state = 2}, [604] = {.lex_state = 14}, [605] = {.lex_state = 14}, [606] = {.lex_state = 14}, [607] = {.lex_state = 14}, [608] = {.lex_state = 14}, - [609] = {.lex_state = 14}, + [609] = {.lex_state = 2}, [610] = {.lex_state = 14}, [611] = {.lex_state = 14}, [612] = {.lex_state = 14}, @@ -4584,118 +4552,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 14}, [627] = {.lex_state = 14}, [628] = {.lex_state = 14}, - [629] = {.lex_state = 19}, - [630] = {.lex_state = 19}, - [631] = {.lex_state = 19}, - [632] = {.lex_state = 20}, - [633] = {.lex_state = 20}, - [634] = {.lex_state = 20}, - [635] = {.lex_state = 19}, - [636] = {.lex_state = 20}, - [637] = {.lex_state = 21}, - [638] = {.lex_state = 21}, - [639] = {.lex_state = 0}, - [640] = {.lex_state = 21}, - [641] = {.lex_state = 4}, - [642] = {.lex_state = 14}, - [643] = {.lex_state = 21}, - [644] = {.lex_state = 21}, - [645] = {.lex_state = 46}, - [646] = {.lex_state = 46}, - [647] = {.lex_state = 14}, - [648] = {.lex_state = 21}, - [649] = {.lex_state = 46}, - [650] = {.lex_state = 46}, - [651] = {.lex_state = 46}, - [652] = {.lex_state = 46}, - [653] = {.lex_state = 4}, - [654] = {.lex_state = 0}, - [655] = {.lex_state = 14}, - [656] = {.lex_state = 14}, + [629] = {.lex_state = 14}, + [630] = {.lex_state = 14}, + [631] = {.lex_state = 14}, + [632] = {.lex_state = 14}, + [633] = {.lex_state = 14}, + [634] = {.lex_state = 14}, + [635] = {.lex_state = 14}, + [636] = {.lex_state = 14}, + [637] = {.lex_state = 14}, + [638] = {.lex_state = 14}, + [639] = {.lex_state = 14}, + [640] = {.lex_state = 14}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 19}, + [643] = {.lex_state = 19}, + [644] = {.lex_state = 19}, + [645] = {.lex_state = 20}, + [646] = {.lex_state = 20}, + [647] = {.lex_state = 20}, + [648] = {.lex_state = 19}, + [649] = {.lex_state = 20}, + [650] = {.lex_state = 21}, + [651] = {.lex_state = 0}, + [652] = {.lex_state = 21}, + [653] = {.lex_state = 21}, + [654] = {.lex_state = 4}, + [655] = {.lex_state = 21}, + [656] = {.lex_state = 21}, [657] = {.lex_state = 14}, - [658] = {.lex_state = 14}, - [659] = {.lex_state = 4}, - [660] = {.lex_state = 14}, + [658] = {.lex_state = 46}, + [659] = {.lex_state = 46}, + [660] = {.lex_state = 46}, [661] = {.lex_state = 14}, - [662] = {.lex_state = 14}, - [663] = {.lex_state = 14}, - [664] = {.lex_state = 14}, - [665] = {.lex_state = 14}, + [662] = {.lex_state = 21}, + [663] = {.lex_state = 46}, + [664] = {.lex_state = 46}, + [665] = {.lex_state = 46}, [666] = {.lex_state = 14}, - [667] = {.lex_state = 4}, - [668] = {.lex_state = 14}, - [669] = {.lex_state = 14}, + [667] = {.lex_state = 14}, + [668] = {.lex_state = 4}, + [669] = {.lex_state = 4}, [670] = {.lex_state = 4}, [671] = {.lex_state = 14}, - [672] = {.lex_state = 4}, - [673] = {.lex_state = 14}, + [672] = {.lex_state = 14}, + [673] = {.lex_state = 46}, [674] = {.lex_state = 14}, - [675] = {.lex_state = 4}, + [675] = {.lex_state = 14}, [676] = {.lex_state = 4}, [677] = {.lex_state = 14}, - [678] = {.lex_state = 14}, + [678] = {.lex_state = 0}, [679] = {.lex_state = 14}, [680] = {.lex_state = 14}, - [681] = {.lex_state = 46}, - [682] = {.lex_state = 14}, + [681] = {.lex_state = 4}, + [682] = {.lex_state = 0}, [683] = {.lex_state = 14}, - [684] = {.lex_state = 14}, - [685] = {.lex_state = 4}, - [686] = {.lex_state = 4}, - [687] = {.lex_state = 46}, + [684] = {.lex_state = 4}, + [685] = {.lex_state = 14}, + [686] = {.lex_state = 14}, + [687] = {.lex_state = 14}, [688] = {.lex_state = 14}, [689] = {.lex_state = 14}, - [690] = {.lex_state = 14}, + [690] = {.lex_state = 4}, [691] = {.lex_state = 14}, - [692] = {.lex_state = 14}, - [693] = {.lex_state = 14}, + [692] = {.lex_state = 4}, + [693] = {.lex_state = 46}, [694] = {.lex_state = 4}, - [695] = {.lex_state = 14}, - [696] = {.lex_state = 4}, - [697] = {.lex_state = 4}, + [695] = {.lex_state = 4}, + [696] = {.lex_state = 14}, + [697] = {.lex_state = 14}, [698] = {.lex_state = 14}, - [699] = {.lex_state = 4}, - [700] = {.lex_state = 4}, + [699] = {.lex_state = 14}, + [700] = {.lex_state = 14}, [701] = {.lex_state = 14}, - [702] = {.lex_state = 14}, - [703] = {.lex_state = 0}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 0}, + [702] = {.lex_state = 4}, + [703] = {.lex_state = 14}, + [704] = {.lex_state = 14}, + [705] = {.lex_state = 14}, + [706] = {.lex_state = 14}, [707] = {.lex_state = 14}, [708] = {.lex_state = 14}, - [709] = {.lex_state = 0}, - [710] = {.lex_state = 0}, - [711] = {.lex_state = 0}, - [712] = {.lex_state = 0}, - [713] = {.lex_state = 14}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 0}, - [717] = {.lex_state = 0}, + [709] = {.lex_state = 4}, + [710] = {.lex_state = 14}, + [711] = {.lex_state = 14}, + [712] = {.lex_state = 14}, + [713] = {.lex_state = 4}, + [714] = {.lex_state = 14}, + [715] = {.lex_state = 14}, + [716] = {.lex_state = 4}, + [717] = {.lex_state = 48}, [718] = {.lex_state = 0}, [719] = {.lex_state = 0}, - [720] = {.lex_state = 14}, + [720] = {.lex_state = 0}, [721] = {.lex_state = 14}, [722] = {.lex_state = 0}, [723] = {.lex_state = 0}, [724] = {.lex_state = 0}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 14}, - [727] = {.lex_state = 0}, + [725] = {.lex_state = 14}, + [726] = {.lex_state = 0}, + [727] = {.lex_state = 14}, [728] = {.lex_state = 0}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 48}, + [729] = {.lex_state = 14}, + [730] = {.lex_state = 14}, + [731] = {.lex_state = 14}, [732] = {.lex_state = 14}, - [733] = {.lex_state = 14}, + [733] = {.lex_state = 0}, [734] = {.lex_state = 0}, [735] = {.lex_state = 0}, [736] = {.lex_state = 0}, [737] = {.lex_state = 0}, - [738] = {.lex_state = 14}, + [738] = {.lex_state = 0}, [739] = {.lex_state = 0}, - [740] = {.lex_state = 22}, + [740] = {.lex_state = 0}, [741] = {.lex_state = 14}, [742] = {.lex_state = 0}, [743] = {.lex_state = 0}, @@ -4704,85 +4672,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 0}, [747] = {.lex_state = 14}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 14}, + [749] = {.lex_state = 0}, [750] = {.lex_state = 0}, - [751] = {.lex_state = 48}, - [752] = {.lex_state = 22}, - [753] = {.lex_state = 0}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 48}, [754] = {.lex_state = 0}, [755] = {.lex_state = 0}, [756] = {.lex_state = 14}, - [757] = {.lex_state = 22}, + [757] = {.lex_state = 0}, [758] = {.lex_state = 48}, [759] = {.lex_state = 14}, [760] = {.lex_state = 0}, - [761] = {.lex_state = 14}, + [761] = {.lex_state = 22}, [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, + [763] = {.lex_state = 14}, [764] = {.lex_state = 0}, - [765] = {.lex_state = 48}, - [766] = {.lex_state = 22}, + [765] = {.lex_state = 22}, + [766] = {.lex_state = 0}, [767] = {.lex_state = 0}, [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, + [769] = {.lex_state = 14}, [770] = {.lex_state = 0}, [771] = {.lex_state = 14}, [772] = {.lex_state = 0}, - [773] = {.lex_state = 48}, - [774] = {.lex_state = 0}, - [775] = {.lex_state = 0}, - [776] = {.lex_state = 48}, - [777] = {.lex_state = 22}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 46}, + [775] = {.lex_state = 22}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 0}, [778] = {.lex_state = 14}, [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 14}, + [780] = {.lex_state = 22}, + [781] = {.lex_state = 22}, [782] = {.lex_state = 0}, - [783] = {.lex_state = 22}, + [783] = {.lex_state = 0}, [784] = {.lex_state = 0}, - [785] = {.lex_state = 22}, - [786] = {.lex_state = 14}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 22}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 14}, - [791] = {.lex_state = 0}, + [785] = {.lex_state = 14}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 14}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 22}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 22}, [792] = {.lex_state = 0}, - [793] = {.lex_state = 0}, - [794] = {.lex_state = 14}, - [795] = {.lex_state = 0}, + [793] = {.lex_state = 14}, + [794] = {.lex_state = 0}, + [795] = {.lex_state = 14}, [796] = {.lex_state = 0}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0}, + [797] = {.lex_state = 48}, + [798] = {.lex_state = 48}, [799] = {.lex_state = 0}, - [800] = {.lex_state = 14}, + [800] = {.lex_state = 0}, [801] = {.lex_state = 0}, [802] = {.lex_state = 0}, - [803] = {.lex_state = 22}, - [804] = {.lex_state = 22}, - [805] = {.lex_state = 22}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 14}, + [805] = {.lex_state = 14}, [806] = {.lex_state = 14}, [807] = {.lex_state = 22}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, + [808] = {.lex_state = 22}, + [809] = {.lex_state = 14}, + [810] = {.lex_state = 14}, [811] = {.lex_state = 22}, - [812] = {.lex_state = 14}, - [813] = {.lex_state = 14}, - [814] = {.lex_state = 46}, - [815] = {.lex_state = 22}, - [816] = {.lex_state = 14}, - [817] = {.lex_state = 14}, - [818] = {.lex_state = 0}, + [812] = {.lex_state = 0}, + [813] = {.lex_state = 22}, + [814] = {.lex_state = 22}, + [815] = {.lex_state = 48}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 14}, [819] = {.lex_state = 0}, - [820] = {.lex_state = 14}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 14}, - [827] = {.lex_state = 22}, + [820] = {.lex_state = 22}, + [821] = {.lex_state = 14}, + [822] = {.lex_state = 14}, + [823] = {.lex_state = 22}, + [824] = {.lex_state = 22}, + [825] = {.lex_state = 14}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 14}, + [828] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4790,6 +4759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym__comment] = ACTIONS(3), + [anon_sym_return] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), @@ -4839,7 +4809,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1), [anon_sym_asyncfor] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), [anon_sym_any] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_collection] = ACTIONS(1), @@ -4850,71 +4819,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_num] = ACTIONS(1), [anon_sym_str] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_option] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(810), + [sym_root] = STATE(784), [sym_statement] = STATE(34), - [sym_expression] = STATE(110), - [sym__expression_kind] = STATE(128), - [sym_as] = STATE(128), - [sym_pipe] = STATE(329), - [sym_command] = STATE(133), - [sym_block] = STATE(329), - [sym_value] = STATE(118), - [sym_float] = STATE(81), - [sym_string] = STATE(81), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_index] = STATE(94), - [sym_index_expression] = STATE(809), - [sym_math] = STATE(128), - [sym_logic] = STATE(128), - [sym_assignment] = STATE(329), - [sym_index_assignment] = STATE(329), - [sym_if_else] = STATE(329), - [sym_if] = STATE(269), - [sym_match] = STATE(329), - [sym_while] = STATE(329), - [sym_for] = STATE(329), - [sym_return] = STATE(329), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(802), - [sym__function_expression_kind] = STATE(801), - [sym_function_call] = STATE(124), - [sym_type_definition] = STATE(329), - [sym_enum_definition] = STATE(301), - [sym_enum_instance] = STATE(81), - [sym_struct_definition] = STATE(301), - [sym_struct_instance] = STATE(81), + [sym_expression] = STATE(126), + [sym__expression_kind] = STATE(134), + [sym_as] = STATE(134), + [sym_pipe] = STATE(324), + [sym_command] = STATE(135), + [sym_block] = STATE(324), + [sym_value] = STATE(128), + [sym_float] = STATE(88), + [sym_string] = STATE(88), + [sym_boolean] = STATE(88), + [sym_list] = STATE(88), + [sym_map] = STATE(88), + [sym_index] = STATE(99), + [sym_index_expression] = STATE(773), + [sym_math] = STATE(134), + [sym_logic] = STATE(134), + [sym_assignment] = STATE(324), + [sym_index_assignment] = STATE(324), + [sym_if_else] = STATE(324), + [sym_if] = STATE(278), + [sym_match] = STATE(324), + [sym_while] = STATE(324), + [sym_for] = STATE(324), + [sym_function] = STATE(88), + [sym_function_expression] = STATE(772), + [sym__function_expression_kind] = STATE(767), + [sym_function_call] = STATE(132), + [sym_type_definition] = STATE(324), + [sym_enum_definition] = STATE(313), + [sym_enum_instance] = STATE(88), + [sym_struct_definition] = STATE(313), + [sym_struct_instance] = STATE(88), [aux_sym_root_repeat1] = STATE(34), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(9), - [aux_sym_command_argument_token2] = ACTIONS(11), - [anon_sym_async] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [sym_range] = ACTIONS(17), - [sym_integer] = ACTIONS(19), - [aux_sym_float_token1] = ACTIONS(21), - [anon_sym_Infinity] = ACTIONS(21), - [anon_sym_infinity] = ACTIONS(21), - [anon_sym_NaN] = ACTIONS(21), - [anon_sym_nan] = ACTIONS(21), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_match] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_for] = ACTIONS(33), - [anon_sym_asyncfor] = ACTIONS(35), - [anon_sym_return] = ACTIONS(37), + [anon_sym_return] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_CARET] = ACTIONS(11), + [aux_sym_command_argument_token2] = ACTIONS(13), + [anon_sym_async] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [sym_range] = ACTIONS(19), + [sym_integer] = ACTIONS(21), + [aux_sym_float_token1] = ACTIONS(23), + [anon_sym_Infinity] = ACTIONS(23), + [anon_sym_infinity] = ACTIONS(23), + [anon_sym_NaN] = ACTIONS(23), + [anon_sym_nan] = ACTIONS(23), + [anon_sym_true] = ACTIONS(25), + [anon_sym_false] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), [anon_sym_enum] = ACTIONS(39), [anon_sym_struct] = ACTIONS(41), [anon_sym_new] = ACTIONS(43), @@ -4925,29 +4892,29 @@ static const uint16_t ts_small_parse_table[] = { [0] = 37, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -4958,52 +4925,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, sym_identifier, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(49), 1, - anon_sym_RBRACE, - ACTIONS(51), 1, anon_sym_return, - STATE(93), 1, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(51), 1, + anon_sym_RBRACE, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(678), 1, + STATE(686), 1, aux_sym_map_repeat1, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(39), 2, + STATE(41), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -5012,7 +4979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -5021,34 +4988,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [138] = 37, + [137] = 37, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -5059,2529 +5025,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 1, sym_identifier, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(53), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(669), 1, + STATE(699), 1, aux_sym_map_repeat1, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(29), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [276] = 37, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(45), 1, - sym_identifier, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(55), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(698), 1, - aux_sym_map_repeat1, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(29), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [414] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(19), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [549] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(61), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [684] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(63), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [819] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(65), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(39), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [954] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1089] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(69), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1224] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(67), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(24), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1359] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(71), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(9), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1494] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(73), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1629] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(75), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1764] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(65), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(42), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [1899] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(75), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(13), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2034] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(77), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(14), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2169] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(79), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2304] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(81), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2439] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(81), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(18), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2574] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(83), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2709] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(85), 1, - sym_identifier, - ACTIONS(88), 1, - anon_sym_LPAREN, - ACTIONS(91), 1, - anon_sym_CARET, - ACTIONS(94), 1, - aux_sym_command_argument_token2, - ACTIONS(97), 1, - anon_sym_async, - ACTIONS(100), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_RBRACE, - ACTIONS(105), 1, - sym_range, - ACTIONS(108), 1, - sym_integer, - ACTIONS(117), 1, - anon_sym_LBRACK, - ACTIONS(120), 1, - anon_sym_if, - ACTIONS(123), 1, - anon_sym_match, - ACTIONS(126), 1, - anon_sym_while, - ACTIONS(129), 1, - anon_sym_for, - ACTIONS(132), 1, - anon_sym_asyncfor, - ACTIONS(135), 1, - anon_sym_return, - ACTIONS(138), 1, - anon_sym_enum, - ACTIONS(141), 1, - anon_sym_struct, - ACTIONS(144), 1, - anon_sym_new, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(114), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(111), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2844] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(147), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [2979] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(149), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [3114] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(61), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(23), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [3249] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(151), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(6), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [3384] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [3519] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(88), 1, - anon_sym_LPAREN, - ACTIONS(94), 1, - aux_sym_command_argument_token2, - ACTIONS(97), 1, - anon_sym_async, - ACTIONS(100), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - ts_builtin_sym_end, - ACTIONS(105), 1, - sym_range, - ACTIONS(108), 1, - sym_integer, - ACTIONS(117), 1, - anon_sym_LBRACK, - ACTIONS(120), 1, - anon_sym_if, - ACTIONS(123), 1, - anon_sym_match, - ACTIONS(126), 1, - anon_sym_while, - ACTIONS(129), 1, - anon_sym_for, - ACTIONS(132), 1, - anon_sym_asyncfor, - ACTIONS(138), 1, - anon_sym_enum, - ACTIONS(141), 1, - anon_sym_struct, - ACTIONS(144), 1, - anon_sym_new, - ACTIONS(155), 1, - sym_identifier, - ACTIONS(158), 1, - anon_sym_CARET, - ACTIONS(161), 1, - anon_sym_return, - STATE(94), 1, - sym_index, - STATE(110), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(124), 1, - sym_function_call, - STATE(133), 1, - sym_command, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(114), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, STATE(28), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(111), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -7590,7 +5079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -7599,34 +5088,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [3654] = 36, + [274] = 37, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -7634,53 +5122,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(43), 1, anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, + ACTIONS(45), 1, sym_identifier, - ACTIONS(164), 1, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(55), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(698), 1, + aux_sym_map_repeat1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(28), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -7689,7 +5179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -7698,34 +5188,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [3789] = 36, + [411] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -7734,52 +5223,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, - ACTIONS(164), 1, + ACTIONS(59), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(27), 2, + STATE(11), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -7788,7 +5277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -7797,34 +5286,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [3924] = 36, + [545] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -7833,52 +5321,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(61), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(33), 2, + STATE(13), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -7887,7 +5375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -7896,34 +5384,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4059] = 36, + [679] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -7932,52 +5419,2502 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(63), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [813] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(65), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(39), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [947] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(65), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1081] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(63), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1215] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(67), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1349] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(69), 1, + sym_identifier, + ACTIONS(72), 1, + anon_sym_return, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(78), 1, + anon_sym_CARET, + ACTIONS(81), 1, + aux_sym_command_argument_token2, + ACTIONS(84), 1, + anon_sym_async, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(90), 1, + anon_sym_RBRACE, + ACTIONS(92), 1, + sym_range, + ACTIONS(95), 1, + sym_integer, + ACTIONS(104), 1, + anon_sym_LBRACK, + ACTIONS(107), 1, + anon_sym_if, + ACTIONS(110), 1, + anon_sym_match, + ACTIONS(113), 1, + anon_sym_while, + ACTIONS(116), 1, + anon_sym_for, + ACTIONS(119), 1, + anon_sym_asyncfor, + ACTIONS(122), 1, + anon_sym_enum, + ACTIONS(125), 1, + anon_sym_struct, + ACTIONS(128), 1, + anon_sym_new, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(101), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(98), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1483] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(131), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1617] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(133), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1751] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(135), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(28), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [1885] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(137), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(10), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2019] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(139), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(41), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2153] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(141), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(20), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2287] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(141), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2421] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(143), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2555] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(145), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(41), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2689] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(147), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(24), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2823] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(147), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [2957] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(149), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3091] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(151), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(23), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3225] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(153), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(19), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3359] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(155), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(29), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3493] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(155), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3627] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(157), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3761] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(81), 1, + aux_sym_command_argument_token2, + ACTIONS(84), 1, + anon_sym_async, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(90), 1, + ts_builtin_sym_end, + ACTIONS(92), 1, + sym_range, + ACTIONS(95), 1, + sym_integer, + ACTIONS(104), 1, + anon_sym_LBRACK, + ACTIONS(107), 1, + anon_sym_if, + ACTIONS(110), 1, + anon_sym_match, + ACTIONS(113), 1, + anon_sym_while, + ACTIONS(116), 1, + anon_sym_for, + ACTIONS(119), 1, + anon_sym_asyncfor, + ACTIONS(122), 1, + anon_sym_enum, + ACTIONS(125), 1, + anon_sym_struct, + ACTIONS(128), 1, + anon_sym_new, + ACTIONS(159), 1, + sym_identifier, + ACTIONS(162), 1, + anon_sym_return, + ACTIONS(165), 1, + anon_sym_CARET, + STATE(99), 1, + sym_index, + STATE(126), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(132), 1, + sym_function_call, + STATE(135), 1, + sym_command, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(101), 2, + anon_sym_true, + anon_sym_false, + STATE(30), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(98), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [3895] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(59), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [4029] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(168), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(31), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -7986,7 +7923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -7995,34 +7932,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4194] = 36, + [4163] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8031,52 +7967,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(170), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8085,7 +8021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8094,41 +8030,40 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4329] = 36, + [4297] = 36, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - anon_sym_CARET, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(37), 1, anon_sym_return, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, ACTIONS(41), 1, @@ -8137,45 +8072,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(172), 1, ts_builtin_sym_end, - STATE(94), 1, + STATE(99), 1, sym_index, - STATE(110), 1, + STATE(126), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(124), 1, + STATE(132), 1, sym_function_call, - STATE(133), 1, + STATE(135), 1, sym_command, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(28), 2, + STATE(30), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8184,7 +8119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8193,34 +8128,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4464] = 36, + [4431] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8229,52 +8163,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(145), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [4565] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(174), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(7), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8283,7 +8315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8292,34 +8324,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4599] = 36, + [4699] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8328,52 +8359,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, - ACTIONS(170), 1, + ACTIONS(174), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(32), 2, + STATE(33), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8382,7 +8413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8391,34 +8422,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4734] = 36, + [4833] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8427,52 +8457,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(131), 1, + anon_sym_RBRACE, + STATE(97), 1, + sym_index, + STATE(125), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(44), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(324), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [4967] = 36, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(47), 1, + anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(176), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(29), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8481,7 +8609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8490,34 +8618,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [4869] = 36, + [5101] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8526,52 +8653,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(178), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8580,7 +8707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8589,34 +8716,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5004] = 36, + [5235] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8625,52 +8751,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(180), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8679,7 +8805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8688,34 +8814,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5139] = 36, + [5369] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8724,52 +8849,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, - ACTIONS(174), 1, + ACTIONS(180), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(22), 2, + STATE(40), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8778,7 +8903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8787,34 +8912,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5274] = 36, + [5503] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8823,52 +8947,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, + ACTIONS(49), 1, + anon_sym_CARET, ACTIONS(57), 1, sym_identifier, ACTIONS(182), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(38), 2, + STATE(36), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -8877,7 +9001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -8886,34 +9010,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5409] = 36, + [5637] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -8922,151 +9045,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 1, anon_sym_new, ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(182), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [5544] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, + ACTIONS(49), 1, anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, ACTIONS(57), 1, sym_identifier, ACTIONS(184), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(97), 1, sym_index, - STATE(113), 1, + STATE(125), 1, sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, + STATE(131), 1, sym_command, - STATE(129), 1, + STATE(137), 1, sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(39), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -9075,7 +9099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(329), 10, + STATE(324), 9, sym_pipe, sym_block, sym_assignment, @@ -9084,184 +9108,84 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5679] = 36, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(180), 1, - anon_sym_RBRACE, - STATE(93), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(21), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(329), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [5814] = 35, + [5771] = 35, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, sym_identifier, ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(196), 1, - anon_sym_LBRACE, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(218), 1, anon_sym_return, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, ACTIONS(220), 1, anon_sym_enum, ACTIONS(222), 1, anon_sym_struct, ACTIONS(224), 1, anon_sym_new, - STATE(191), 1, - sym_index, - STATE(222), 1, - sym_value, - STATE(256), 1, - sym_expression, - STATE(263), 1, - sym_function_call, - STATE(266), 1, - sym_command, - STATE(342), 1, + STATE(353), 1, sym_if, - STATE(416), 1, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(421), 1, sym_statement, - STATE(754), 1, + STATE(465), 1, + sym_expression, + STATE(466), 1, + sym_function_call, + STATE(528), 1, + sym_command, + STATE(760), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(449), 2, sym_enum_definition, sym_struct_definition, - STATE(251), 4, + STATE(480), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(202), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(151), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -9270,7 +9194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(417), 10, + STATE(472), 9, sym_pipe, sym_block, sym_assignment, @@ -9279,85 +9203,84 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [5945] = 35, + [5901] = 35, ACTIONS(3), 1, sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, ACTIONS(208), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(210), 1, - anon_sym_match, + anon_sym_if, ACTIONS(212), 1, - anon_sym_while, + anon_sym_match, ACTIONS(214), 1, - anon_sym_for, + anon_sym_while, ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, anon_sym_asyncfor, ACTIONS(220), 1, anon_sym_enum, ACTIONS(222), 1, anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, ACTIONS(226), 1, sym_identifier, ACTIONS(228), 1, - anon_sym_LPAREN, + anon_sym_return, ACTIONS(230), 1, anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, + STATE(353), 1, sym_if, - STATE(348), 1, + STATE(356), 1, sym_index, - STATE(386), 1, - sym_value, + STATE(396), 1, + sym_function_call, + STATE(413), 1, + sym_expression, STATE(415), 1, - sym_expression, - STATE(447), 1, - sym_function_call, + sym_value, STATE(451), 1, - sym_statement, - STATE(507), 1, sym_command, - STATE(779), 1, + STATE(689), 1, + sym_statement, + STATE(760), 1, sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(449), 2, sym_enum_definition, sym_struct_definition, - STATE(477), 4, + STATE(480), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(240), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(365), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -9366,7 +9289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(417), 10, + STATE(454), 9, sym_pipe, sym_block, sym_assignment, @@ -9375,757 +9298,84 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [6076] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, - anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, - sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(387), 1, - sym_expression, - STATE(433), 1, - sym_command, - STATE(671), 1, - sym_statement, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(441), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6207] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - STATE(93), 1, - sym_index, - STATE(108), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(318), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6338] = 35, + [6031] = 35, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, ACTIONS(9), 1, - anon_sym_CARET, + anon_sym_LPAREN, ACTIONS(11), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(37), 1, - anon_sym_return, + anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, ACTIONS(41), 1, anon_sym_struct, ACTIONS(43), 1, anon_sym_new, - STATE(94), 1, - sym_index, - STATE(118), 1, - sym_value, - STATE(120), 1, - sym_expression, - STATE(124), 1, - sym_function_call, - STATE(133), 1, - sym_command, - STATE(269), 1, - sym_if, - STATE(318), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6469] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - anon_sym_CARET, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(37), 1, - anon_sym_return, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - STATE(94), 1, - sym_index, - STATE(118), 1, - sym_value, - STATE(120), 1, - sym_expression, - STATE(124), 1, - sym_function_call, - STATE(133), 1, - sym_command, - STATE(269), 1, - sym_if, - STATE(320), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6600] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(186), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(196), 1, - anon_sym_LBRACE, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(218), 1, - anon_sym_return, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(224), 1, - anon_sym_new, - STATE(191), 1, - sym_index, - STATE(222), 1, - sym_value, - STATE(256), 1, - sym_expression, - STATE(263), 1, - sym_function_call, - STATE(266), 1, - sym_command, - STATE(342), 1, - sym_if, - STATE(451), 1, - sym_statement, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(251), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6731] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, + STATE(99), 1, sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(387), 1, + STATE(127), 1, sym_expression, - STATE(433), 1, - sym_command, - STATE(673), 1, - sym_statement, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(441), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6862] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - STATE(93), 1, - sym_index, - STATE(108), 1, - sym_expression, - STATE(118), 1, + STATE(128), 1, sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, + STATE(132), 1, sym_function_call, - STATE(269), 1, - sym_if, - STATE(316), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [6993] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(13), 1, - anon_sym_async, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_match, - ACTIONS(31), 1, - anon_sym_while, - ACTIONS(33), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(57), 1, - sym_identifier, - STATE(93), 1, - sym_index, - STATE(108), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, + STATE(135), 1, sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, + STATE(278), 1, sym_if, STATE(321), 1, sym_statement, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -10134,7 +9384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(319), 10, + STATE(343), 9, sym_pipe, sym_block, sym_assignment, @@ -10143,181 +9393,464 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [7124] = 35, + [6161] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(228), 1, + anon_sym_return, + ACTIONS(230), 1, + anon_sym_CARET, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(413), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(451), 1, + sym_command, + STATE(703), 1, + sym_statement, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(454), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [6291] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(228), 1, + anon_sym_return, + ACTIONS(230), 1, + anon_sym_CARET, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(413), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(451), 1, + sym_command, + STATE(689), 1, + sym_statement, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(454), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [6421] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_return, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + STATE(200), 1, + sym_index, + STATE(226), 1, + sym_value, + STATE(272), 1, + sym_expression, + STATE(274), 1, + sym_command, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(421), 1, + sym_statement, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(259), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [6551] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(188), 1, + anon_sym_return, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(442), 1, + sym_statement, + STATE(465), 1, + sym_expression, + STATE(466), 1, + sym_function_call, + STATE(528), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [6681] = 35, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, ACTIONS(9), 1, - anon_sym_CARET, + anon_sym_LPAREN, ACTIONS(11), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(37), 1, - anon_sym_return, + anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, ACTIONS(41), 1, anon_sym_struct, ACTIONS(43), 1, anon_sym_new, - STATE(94), 1, - sym_index, - STATE(118), 1, - sym_value, - STATE(120), 1, - sym_expression, - STATE(124), 1, - sym_function_call, - STATE(133), 1, - sym_command, - STATE(269), 1, - sym_if, - STATE(316), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [7255] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, + STATE(99), 1, sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(396), 1, + STATE(127), 1, sym_expression, - STATE(433), 1, + STATE(128), 1, + sym_value, + STATE(132), 1, + sym_function_call, + STATE(135), 1, sym_command, - STATE(451), 1, + STATE(278), 1, + sym_if, + STATE(325), 1, sym_statement, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(477), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(240), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(365), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -10326,7 +9859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(417), 10, + STATE(343), 9, sym_pipe, sym_block, sym_assignment, @@ -10335,322 +9868,33 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [7386] = 35, + [6811] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, - anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, - sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(387), 1, - sym_expression, - STATE(433), 1, - sym_command, - STATE(671), 1, - sym_statement, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(441), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [7517] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, - sym_if, - STATE(348), 1, - sym_index, - STATE(386), 1, - sym_value, - STATE(415), 1, - sym_expression, - STATE(416), 1, - sym_statement, - STATE(447), 1, - sym_function_call, - STATE(507), 1, - sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [7648] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, - sym_if, - STATE(348), 1, - sym_index, - STATE(386), 1, - sym_value, - STATE(406), 1, - sym_statement, - STATE(415), 1, - sym_expression, - STATE(447), 1, - sym_function_call, - STATE(507), 1, - sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [7779] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - aux_sym_command_argument_token2, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, @@ -10658,146 +9902,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(43), 1, anon_sym_new, - ACTIONS(47), 1, + ACTIONS(49), 1, anon_sym_CARET, - ACTIONS(51), 1, - anon_sym_return, ACTIONS(57), 1, sym_identifier, - STATE(93), 1, - sym_index, - STATE(108), 1, - sym_expression, - STATE(118), 1, - sym_value, - STATE(123), 1, - sym_command, - STATE(129), 1, - sym_function_call, - STATE(269), 1, - sym_if, - STATE(320), 1, - sym_statement, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(128), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(319), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [7910] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, + ACTIONS(258), 1, anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, + STATE(97), 1, sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(396), 1, + STATE(121), 1, sym_expression, - STATE(432), 1, - sym_statement, - STATE(433), 1, + STATE(128), 1, + sym_value, + STATE(131), 1, sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(341), 1, + sym_statement, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(477), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(240), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(365), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -10806,7 +9954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(417), 10, + STATE(343), 9, sym_pipe, sym_block, sym_assignment, @@ -10815,757 +9963,369 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [8041] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, - sym_if, - STATE(348), 1, - sym_index, - STATE(386), 1, - sym_value, - STATE(415), 1, - sym_expression, - STATE(432), 1, - sym_statement, - STATE(447), 1, - sym_function_call, - STATE(507), 1, - sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8172] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(186), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(196), 1, - anon_sym_LBRACE, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(218), 1, - anon_sym_return, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(224), 1, - anon_sym_new, - STATE(191), 1, - sym_index, - STATE(222), 1, - sym_value, - STATE(256), 1, - sym_expression, - STATE(263), 1, - sym_function_call, - STATE(266), 1, - sym_command, - STATE(342), 1, - sym_if, - STATE(432), 1, - sym_statement, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(251), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8303] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, - anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, - sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(396), 1, - sym_expression, - STATE(406), 1, - sym_statement, - STATE(433), 1, - sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8434] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(186), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(196), 1, - anon_sym_LBRACE, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(218), 1, - anon_sym_return, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(224), 1, - anon_sym_new, - STATE(191), 1, - sym_index, - STATE(222), 1, - sym_value, - STATE(262), 1, - sym_expression, - STATE(263), 1, - sym_function_call, - STATE(266), 1, - sym_command, - STATE(342), 1, - sym_if, - STATE(460), 1, - sym_statement, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(251), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(441), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8565] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, - sym_identifier, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(254), 1, - anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, - sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, - sym_value, - STATE(396), 1, - sym_expression, - STATE(416), 1, - sym_statement, - STATE(433), 1, - sym_command, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8696] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, - sym_if, - STATE(348), 1, - sym_index, - STATE(386), 1, - sym_value, - STATE(443), 1, - sym_expression, - STATE(447), 1, - sym_function_call, - STATE(507), 1, - sym_command, - STATE(726), 1, - sym_statement, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(477), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(441), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8827] = 35, - ACTIONS(3), 1, - sym__comment, - ACTIONS(186), 1, - sym_identifier, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(194), 1, - anon_sym_async, - ACTIONS(196), 1, - anon_sym_LBRACE, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(208), 1, - anon_sym_if, - ACTIONS(210), 1, - anon_sym_match, - ACTIONS(212), 1, - anon_sym_while, - ACTIONS(214), 1, - anon_sym_for, - ACTIONS(216), 1, - anon_sym_asyncfor, - ACTIONS(218), 1, - anon_sym_return, - ACTIONS(220), 1, - anon_sym_enum, - ACTIONS(222), 1, - anon_sym_struct, - ACTIONS(224), 1, - anon_sym_new, - STATE(191), 1, - sym_index, - STATE(222), 1, - sym_value, - STATE(256), 1, - sym_expression, - STATE(263), 1, - sym_function_call, - STATE(266), 1, - sym_command, - STATE(342), 1, - sym_if, - STATE(406), 1, - sym_statement, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(430), 2, - sym_enum_definition, - sym_struct_definition, - STATE(251), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(417), 10, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_return, - sym_type_definition, - [8958] = 35, + [6941] = 35, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, ACTIONS(9), 1, - anon_sym_CARET, + anon_sym_LPAREN, ACTIONS(11), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(13), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(15), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(17), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, ACTIONS(27), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(29), 1, - anon_sym_match, + anon_sym_if, ACTIONS(31), 1, - anon_sym_while, + anon_sym_match, ACTIONS(33), 1, - anon_sym_for, + anon_sym_while, ACTIONS(35), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(37), 1, - anon_sym_return, + anon_sym_asyncfor, ACTIONS(39), 1, anon_sym_enum, ACTIONS(41), 1, anon_sym_struct, ACTIONS(43), 1, anon_sym_new, - STATE(94), 1, + ACTIONS(232), 1, + anon_sym_return, + STATE(99), 1, sym_index, - STATE(118), 1, - sym_value, - STATE(120), 1, + STATE(127), 1, sym_expression, - STATE(124), 1, + STATE(128), 1, + sym_value, + STATE(132), 1, sym_function_call, - STATE(133), 1, + STATE(135), 1, sym_command, - STATE(269), 1, + STATE(278), 1, + sym_if, + STATE(341), 1, + sym_statement, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(343), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7071] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_return, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + STATE(200), 1, + sym_index, + STATE(226), 1, + sym_value, + STATE(272), 1, + sym_expression, + STATE(274), 1, + sym_command, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(431), 1, + sym_statement, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(259), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7201] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(260), 1, + anon_sym_return, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(466), 1, + sym_function_call, + STATE(468), 1, + sym_expression, + STATE(528), 1, + sym_command, + STATE(731), 1, + sym_statement, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(454), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7331] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(258), 1, + anon_sym_return, + STATE(97), 1, + sym_index, + STATE(121), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, sym_if, STATE(321), 1, sym_statement, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, + STATE(772), 1, sym_function_expression, - STATE(809), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(301), 2, + STATE(313), 2, sym_enum_definition, sym_struct_definition, - STATE(128), 4, + STATE(134), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(21), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -11574,7 +10334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(319), 10, + STATE(343), 9, sym_pipe, sym_block, sym_assignment, @@ -11583,85 +10343,84 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [9089] = 35, + [7461] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(194), 1, + ACTIONS(196), 1, anon_sym_async, - ACTIONS(208), 1, - anon_sym_if, ACTIONS(210), 1, - anon_sym_match, + anon_sym_if, ACTIONS(212), 1, - anon_sym_while, + anon_sym_match, ACTIONS(214), 1, - anon_sym_for, + anon_sym_while, ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, anon_sym_asyncfor, ACTIONS(220), 1, anon_sym_enum, ACTIONS(222), 1, anon_sym_struct, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(250), 1, sym_identifier, - ACTIONS(252), 1, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(262), 1, anon_sym_return, - STATE(342), 1, - sym_if, - STATE(343), 1, + STATE(200), 1, sym_index, - STATE(383), 1, - sym_function_call, - STATE(386), 1, + STATE(226), 1, sym_value, - STATE(387), 1, + STATE(263), 1, sym_expression, - STATE(433), 1, + STATE(274), 1, sym_command, - STATE(673), 1, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(525), 1, sym_statement, - STATE(779), 1, + STATE(752), 1, sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(449), 2, sym_enum_definition, sym_struct_definition, - STATE(477), 4, + STATE(259), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(240), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(365), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -11670,7 +10429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(441), 10, + STATE(454), 9, sym_pipe, sym_block, sym_assignment, @@ -11679,85 +10438,654 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [9220] = 35, + [7591] = 35, ACTIONS(3), 1, sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(188), 1, + anon_sym_return, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, ACTIONS(208), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(210), 1, - anon_sym_match, + anon_sym_if, ACTIONS(212), 1, - anon_sym_while, + anon_sym_match, ACTIONS(214), 1, - anon_sym_for, + anon_sym_while, ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, anon_sym_asyncfor, ACTIONS(220), 1, anon_sym_enum, ACTIONS(222), 1, anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(431), 1, + sym_statement, + STATE(465), 1, + sym_expression, + STATE(466), 1, + sym_function_call, + STATE(528), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7721] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_CARET, + ACTIONS(264), 1, + anon_sym_return, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(401), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(421), 1, + sym_statement, + STATE(451), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7851] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(260), 1, + anon_sym_return, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(466), 1, + sym_function_call, + STATE(468), 1, + sym_expression, + STATE(528), 1, + sym_command, + STATE(730), 1, + sym_statement, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(454), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [7981] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_return, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + STATE(200), 1, + sym_index, + STATE(226), 1, + sym_value, + STATE(272), 1, + sym_expression, + STATE(274), 1, + sym_command, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(442), 1, + sym_statement, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(259), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8111] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_CARET, + ACTIONS(264), 1, + anon_sym_return, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(401), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(431), 1, + sym_statement, + STATE(451), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8241] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(258), 1, + anon_sym_return, + STATE(97), 1, + sym_index, + STATE(121), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(325), 1, + sym_statement, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(343), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8371] = 35, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, ACTIONS(226), 1, sym_identifier, ACTIONS(228), 1, - anon_sym_LPAREN, + anon_sym_return, ACTIONS(230), 1, anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(234), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(246), 1, - anon_sym_return, - ACTIONS(248), 1, - anon_sym_new, - STATE(342), 1, + STATE(353), 1, sym_if, - STATE(348), 1, + STATE(356), 1, sym_index, - STATE(386), 1, - sym_value, - STATE(443), 1, - sym_expression, - STATE(447), 1, + STATE(396), 1, sym_function_call, - STATE(507), 1, + STATE(413), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(451), 1, sym_command, - STATE(733), 1, + STATE(703), 1, sym_statement, - STATE(779), 1, + STATE(760), 1, sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(430), 2, + STATE(449), 2, sym_enum_definition, sym_struct_definition, - STATE(477), 4, + STATE(480), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(240), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(365), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -11766,7 +11094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(441), 10, + STATE(454), 9, sym_pipe, sym_block, sym_assignment, @@ -11775,12 +11103,1016 @@ static const uint16_t ts_small_parse_table[] = { sym_match, sym_while, sym_for, - sym_return, sym_type_definition, - [9351] = 3, + [8501] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(256), 24, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_CARET, + ACTIONS(264), 1, + anon_sym_return, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(401), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(442), 1, + sym_statement, + STATE(451), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(472), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8631] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(466), 1, + sym_function_call, + STATE(471), 1, + sym_expression, + STATE(528), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(435), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8755] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_CARET, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(415), 1, + sym_value, + STATE(416), 1, + sym_expression, + STATE(451), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(455), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [8879] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + STATE(99), 1, + sym_index, + STATE(116), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(132), 1, + sym_function_call, + STATE(135), 1, + sym_command, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(338), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9003] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + STATE(97), 1, + sym_index, + STATE(114), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(330), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9127] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + STATE(200), 1, + sym_index, + STATE(226), 1, + sym_value, + STATE(270), 1, + sym_expression, + STATE(274), 1, + sym_command, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(259), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(435), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9251] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(226), 1, + sym_identifier, + ACTIONS(230), 1, + anon_sym_CARET, + STATE(353), 1, + sym_if, + STATE(356), 1, + sym_index, + STATE(396), 1, + sym_function_call, + STATE(409), 1, + sym_expression, + STATE(415), 1, + sym_value, + STATE(451), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(435), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9375] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(186), 1, + sym_identifier, + ACTIONS(190), 1, + anon_sym_LPAREN, + ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(198), 1, + anon_sym_LBRACE, + ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(224), 1, + anon_sym_new, + STATE(353), 1, + sym_if, + STATE(359), 1, + sym_index, + STATE(415), 1, + sym_value, + STATE(466), 1, + sym_function_call, + STATE(470), 1, + sym_expression, + STATE(528), 1, + sym_command, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(480), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(455), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9499] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(57), 1, + sym_identifier, + STATE(97), 1, + sym_index, + STATE(128), 1, + sym_value, + STATE(129), 1, + sym_expression, + STATE(131), 1, + sym_command, + STATE(137), 1, + sym_function_call, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(338), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9623] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(196), 1, + anon_sym_async, + ACTIONS(210), 1, + anon_sym_if, + ACTIONS(212), 1, + anon_sym_match, + ACTIONS(214), 1, + anon_sym_while, + ACTIONS(216), 1, + anon_sym_for, + ACTIONS(218), 1, + anon_sym_asyncfor, + ACTIONS(220), 1, + anon_sym_enum, + ACTIONS(222), 1, + anon_sym_struct, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(244), 1, + anon_sym_LBRACE, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + STATE(200), 1, + sym_index, + STATE(226), 1, + sym_value, + STATE(266), 1, + sym_expression, + STATE(274), 1, + sym_command, + STATE(277), 1, + sym_function_call, + STATE(353), 1, + sym_if, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(449), 2, + sym_enum_definition, + sym_struct_definition, + STATE(259), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(455), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9747] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(43), 1, + anon_sym_new, + STATE(99), 1, + sym_index, + STATE(123), 1, + sym_expression, + STATE(128), 1, + sym_value, + STATE(132), 1, + sym_function_call, + STATE(135), 1, + sym_command, + STATE(278), 1, + sym_if, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(134), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(330), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9871] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(266), 24, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -11805,7 +12137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(258), 24, + ACTIONS(268), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -11826,89 +12159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9407] = 3, + [9927] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(260), 24, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(262), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [9463] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(272), 1, - anon_sym_COLON, ACTIONS(274), 1, - anon_sym_LT, - ACTIONS(278), 1, anon_sym_COLON_COLON, - STATE(55), 1, - sym_assignment_operator, - STATE(645), 1, - sym_type_specification, - ACTIONS(276), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(264), 17, + ACTIONS(270), 22, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, @@ -11920,8 +12187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_asyncfor, - ACTIONS(266), 22, + ACTIONS(272), 25, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -11933,18 +12203,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, + anon_sym_EQ, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9535] = 3, + [9985] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 24, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_asyncfor, + ACTIONS(278), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10041] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(280), 24, @@ -11973,6 +12298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(282), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -11993,11 +12319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9591] = 3, + [10097] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(284), 24, @@ -12026,6 +12351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(286), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12046,11 +12372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9647] = 3, + [10153] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(288), 24, @@ -12079,6 +12404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(290), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12099,72 +12425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9703] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(274), 1, - anon_sym_LT, - ACTIONS(278), 1, - anon_sym_COLON_COLON, - STATE(53), 1, - sym_assignment_operator, - STATE(651), 1, - sym_type_specification, - ACTIONS(276), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(264), 17, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(266), 22, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [9775] = 3, + [10209] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 24, @@ -12193,6 +12457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(294), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12213,244 +12478,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [9831] = 4, + [10265] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(278), 1, - anon_sym_COLON_COLON, - ACTIONS(296), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - ACTIONS(272), 25, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [9889] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 24, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(300), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [9945] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(302), 24, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(304), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10001] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(306), 24, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(308), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10057] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, ACTIONS(272), 1, anon_sym_COLON, ACTIONS(274), 1, - anon_sym_LT, - ACTIONS(278), 1, anon_sym_COLON_COLON, - ACTIONS(310), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(304), 1, + anon_sym_LT, + STATE(54), 1, + sym_assignment_operator, + STATE(660), 1, + sym_type_specification, + ACTIONS(306), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(296), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(298), 22, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10337] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(274), 1, + anon_sym_COLON_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(304), 1, + anon_sym_LT, + STATE(53), 1, + sym_assignment_operator, + STATE(664), 1, + sym_type_specification, + ACTIONS(306), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(296), 17, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(298), 22, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10409] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(274), 1, + anon_sym_COLON_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(304), 1, + anon_sym_LT, + ACTIONS(308), 1, anon_sym_EQ, STATE(53), 1, sym_assignment_operator, - STATE(649), 1, + STATE(658), 1, sym_type_specification, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(264), 17, + ACTIONS(296), 17, anon_sym_SEMI, anon_sym_CARET, aux_sym_command_argument_token2, @@ -12468,7 +12641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 22, + ACTIONS(298), 22, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12487,67 +12661,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10129] = 3, + [10481] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(310), 24, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_asyncfor, ACTIONS(312), 24, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10537] = 3, + ACTIONS(3), 1, + sym__comment, ACTIONS(314), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10185] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(316), 24, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -12572,35 +12745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_asyncfor, + ACTIONS(316), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10593] = 3, + ACTIONS(3), 1, + sym__comment, ACTIONS(318), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10241] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 23, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -12623,8 +12796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(272), 24, + ACTIONS(320), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12645,67 +12820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10296] = 4, + [10649] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(324), 1, - anon_sym_LPAREN, - ACTIONS(320), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, ACTIONS(322), 24, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10353] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 23, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -12728,8 +12849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(272), 24, + ACTIONS(324), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12750,14 +12873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10408] = 3, + [10705] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(326), 23, + ACTIONS(326), 24, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -12780,8 +12902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + anon_sym_EQ_GT, anon_sym_asyncfor, ACTIONS(328), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12802,11 +12926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10463] = 3, + [10761] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(330), 23, @@ -12834,6 +12957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(332), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12854,17 +12978,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10518] = 3, + [10816] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(334), 22, + ACTIONS(270), 23, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(272), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10871] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(338), 1, + anon_sym_LPAREN, + ACTIONS(334), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, @@ -12885,6 +13062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(336), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12905,25 +13083,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10572] = 8, + [10928] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(340), 23, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(342), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [10983] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 23, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(272), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11038] = 8, + ACTIONS(3), 1, + sym__comment, ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(296), 1, anon_sym_COLON, - STATE(54), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + STATE(57), 1, sym_assignment_operator, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(264), 17, + ACTIONS(296), 17, anon_sym_SEMI, anon_sym_CARET, aux_sym_command_argument_token2, @@ -12941,7 +13222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -12961,25 +13243,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10636] = 8, + [11102] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(344), 22, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(346), 24, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11156] = 8, + ACTIONS(3), 1, + sym__comment, ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(296), 1, anon_sym_COLON, - STATE(69), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + STATE(47), 1, sym_assignment_operator, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(264), 17, + ACTIONS(296), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, @@ -12997,7 +13329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13017,14 +13350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10700] = 3, + [11220] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(338), 22, + ACTIONS(348), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -13047,7 +13379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, - ACTIONS(340), 24, + ACTIONS(350), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13068,14 +13401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10754] = 3, + [11274] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 22, + ACTIONS(352), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -13098,7 +13430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, - ACTIONS(344), 24, + ACTIONS(354), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13119,14 +13452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10808] = 3, + [11328] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(346), 22, + ACTIONS(356), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -13149,7 +13481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, - ACTIONS(348), 24, + ACTIONS(358), 24, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13170,26 +13503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10862] = 5, - ACTIONS(354), 1, + [11382] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(356), 2, + ACTIONS(366), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(102), 2, + STATE(107), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(350), 5, + ACTIONS(360), 5, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(352), 36, + ACTIONS(362), 36, + anon_sym_return, anon_sym_LPAREN, anon_sym_as, anon_sym_PIPE, @@ -13222,187 +13555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [10919] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(358), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(103), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(350), 4, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(352), 37, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [10976] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(358), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(99), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(362), 4, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(360), 37, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11033] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(356), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(98), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(362), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(360), 36, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11090] = 5, - ACTIONS(354), 1, + [11439] = 5, + ACTIONS(364), 1, sym__comment, ACTIONS(368), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(102), 2, + STATE(106), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(364), 5, - ts_builtin_sym_end, + ACTIONS(360), 4, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(366), 36, + ACTIONS(362), 37, + anon_sym_return, anon_sym_LPAREN, anon_sym_as, anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13430,25 +13607,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11147] = 5, - ACTIONS(354), 1, + [11496] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(371), 2, + ACTIONS(366), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(103), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(364), 4, + ACTIONS(370), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(366), 37, + ACTIONS(372), 36, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11553] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(378), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(106), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(376), 4, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(374), 37, + anon_sym_return, anon_sym_LPAREN, anon_sym_as, anon_sym_PIPE, @@ -13482,20 +13711,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11204] = 6, + [11610] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(381), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(107), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(376), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(374), 36, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11667] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(368), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(104), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(370), 4, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(372), 37, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11724] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(384), 20, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(386), 24, + anon_sym_return, + anon_sym_as, + anon_sym_PIPE, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11776] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(388), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(390), 24, + anon_sym_return, + anon_sym_as, + anon_sym_PIPE, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11828] = 6, + ACTIONS(3), 1, + sym__comment, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(278), 1, + ACTIONS(274), 1, anon_sym_COLON_COLON, - ACTIONS(264), 18, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(296), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, @@ -13514,7 +13944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13534,16 +13965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11262] = 4, + [11886] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(296), 1, + ACTIONS(270), 1, anon_sym_COLON, - ACTIONS(298), 20, + ACTIONS(314), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -13564,7 +13994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(300), 23, + ACTIONS(316), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -13584,135 +14015,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11316] = 3, + [11940] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(374), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(376), 24, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11368] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(378), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(380), 24, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11420] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(386), 1, - anon_sym_as, - STATE(208), 1, - sym_math_operator, STATE(210), 1, sym_logic_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, + STATE(211), 1, + sym_math_operator, + ACTIONS(392), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(384), 9, + anon_sym_asyncfor, + ACTIONS(394), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [11995] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(398), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, @@ -13722,113 +14104,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(382), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11485] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(211), 1, - sym_logic_operator, - STATE(214), 1, - sym_math_operator, ACTIONS(396), 18, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(398), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11540] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(386), 1, - anon_sym_as, - ACTIONS(400), 1, - anon_sym_SEMI, - STATE(211), 1, - sym_logic_operator, - STATE(214), 1, - sym_math_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(384), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(382), 18, anon_sym_async, sym_identifier, sym_integer, @@ -13843,67 +14120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11607] = 3, - ACTIONS(354), 1, + [12060] = 3, + ACTIONS(364), 1, sym__comment, - ACTIONS(402), 5, - ts_builtin_sym_end, + ACTIONS(412), 4, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(404), 38, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, + ACTIONS(410), 39, anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11658] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 4, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(404), 39, anon_sym_LPAREN, anon_sym_as, anon_sym_PIPE, @@ -13939,240 +14168,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11709] = 11, + [12111] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(386), 1, - anon_sym_as, ACTIONS(400), 1, + anon_sym_as, + ACTIONS(414), 1, anon_sym_SEMI, - STATE(208), 1, - sym_math_operator, STATE(210), 1, sym_logic_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(384), 8, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(382), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11776] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(410), 1, - anon_sym_DASH_GT, - ACTIONS(406), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(408), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11829] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(416), 1, - anon_sym_DASH_GT, - ACTIONS(412), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(414), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11882] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(338), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(340), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [11933] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(208), 1, + STATE(211), 1, sym_math_operator, - STATE(210), 1, - sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(398), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, ACTIONS(396), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(398), 23, - anon_sym_as, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -14183,76 +14220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [11988] = 5, + [12178] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(264), 18, + ACTIONS(420), 1, + anon_sym_DASH_GT, + ACTIONS(416), 19, ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(266), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12043] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(208), 1, - sym_math_operator, - STATE(210), 1, - sym_logic_operator, - ACTIONS(420), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, @@ -14272,6 +14253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, ACTIONS(418), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14291,118 +14273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12098] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(386), 1, - anon_sym_as, - STATE(211), 1, - sym_logic_operator, - STATE(214), 1, - sym_math_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(384), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(382), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12163] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(211), 1, - sym_logic_operator, - STATE(214), 1, - sym_math_operator, - ACTIONS(420), 18, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(418), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12218] = 3, + [12231] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(426), 1, + anon_sym_DASH_GT, ACTIONS(422), 19, ts_builtin_sym_end, anon_sym_SEMI, @@ -14424,6 +14302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, ACTIONS(424), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14443,22 +14322,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12268] = 4, + [12284] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(426), 1, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(392), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(394), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12339] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(430), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(428), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12394] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12459] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(410), 38, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_as, anon_sym_PIPE, - ACTIONS(264), 18, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12510] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + STATE(210), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(398), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(396), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12575] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(210), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(430), 18, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, @@ -14471,7 +14609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(428), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14491,64 +14630,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12320] = 5, + [12630] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(400), 1, + anon_sym_as, + ACTIONS(436), 1, + anon_sym_SEMI, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 8, anon_sym_LPAREN, - ACTIONS(428), 1, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12697] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + ACTIONS(436), 1, + anon_sym_SEMI, + STATE(210), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12764] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + STATE(210), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12829] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(296), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(298), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12884] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(400), 1, + anon_sym_as, + ACTIONS(414), 1, + anon_sym_SEMI, + STATE(213), 1, + sym_math_operator, + STATE(217), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(398), 8, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(396), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [12951] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(352), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(354), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13002] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(438), 1, anon_sym_PIPE, - ACTIONS(264), 17, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(266), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12374] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(430), 19, - ts_builtin_sym_end, + ACTIONS(296), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, @@ -14567,7 +14978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(432), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14587,164 +14999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12424] = 3, + [13054] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(434), 19, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(300), 1, anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(436), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12474] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(412), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(414), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12524] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(438), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(440), 23, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12574] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, + ACTIONS(440), 1, anon_sym_PIPE, - ACTIONS(264), 17, + ACTIONS(296), 17, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, @@ -14757,7 +15027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14777,11 +15048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12628] = 3, + [13108] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(442), 19, @@ -14805,6 +15075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, ACTIONS(444), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14824,59 +15095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12678] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(450), 1, - anon_sym_LT, - ACTIONS(446), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(448), 22, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [12730] = 3, + [13158] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(446), 19, @@ -14900,6 +15122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, ACTIONS(448), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14919,16 +15142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12780] = 4, + [13208] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(428), 1, + ACTIONS(440), 1, anon_sym_PIPE, - ACTIONS(264), 18, + ACTIONS(296), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -14947,7 +15169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -14967,16 +15190,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12832] = 4, + [13260] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(454), 1, + anon_sym_LT, + ACTIONS(450), 19, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(264), 18, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(452), 22, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13312] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, + anon_sym_PIPE, + ACTIONS(296), 17, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(298), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13366] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(456), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(458), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13416] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(460), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(462), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13466] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(464), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(466), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13516] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(296), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, @@ -14995,7 +15455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(266), 23, + ACTIONS(298), 23, + anon_sym_return, anon_sym_as, anon_sym_async, sym_identifier, @@ -15015,14 +15476,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [12884] = 4, + [13568] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(452), 1, + ACTIONS(422), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(424), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13618] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(450), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(452), 23, + anon_sym_return, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [13668] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(468), 1, anon_sym_COLON_COLON, ACTIONS(272), 17, anon_sym_as, @@ -15042,7 +15596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(296), 22, + ACTIONS(270), 22, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15065,184 +15619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [12934] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(454), 1, - anon_sym_LPAREN, - ACTIONS(322), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(320), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [12983] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(296), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13030] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(296), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13077] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(288), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13124] = 3, + [13718] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(286), 16, @@ -15286,10 +15663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13171] = 3, + [13765] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(282), 16, + ACTIONS(268), 16, anon_sym_as, sym_identifier, sym_integer, @@ -15306,7 +15683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(280), 23, + ACTIONS(266), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15330,7 +15707,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13218] = 3, + [13812] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(310), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13859] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(320), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(318), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13906] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(290), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(288), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13953] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(332), 16, @@ -15374,10 +15883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13265] = 3, + [14000] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(258), 16, + ACTIONS(342), 16, anon_sym_as, sym_identifier, sym_integer, @@ -15394,7 +15903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(256), 23, + ACTIONS(340), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15418,7 +15927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13312] = 3, + [14047] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(328), 16, @@ -15462,10 +15971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13359] = 3, + [14094] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 16, + ACTIONS(316), 16, anon_sym_as, sym_identifier, sym_integer, @@ -15482,7 +15991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(316), 23, + ACTIONS(314), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15506,7 +16015,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13406] = 3, + [14141] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(270), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14188] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(322), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14235] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(270), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14282] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(344), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14329] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(294), 16, @@ -15550,10 +16235,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13453] = 3, + [14376] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(348), 16, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(304), 1, + anon_sym_LT, + ACTIONS(468), 1, + anon_sym_COLON_COLON, + STATE(62), 1, + sym_assignment_operator, + STATE(663), 1, + sym_type_specification, + ACTIONS(306), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(298), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_new, + ACTIONS(296), 16, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14439] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 16, anon_sym_as, sym_identifier, sym_integer, @@ -15570,7 +16307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(346), 23, + ACTIONS(280), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15594,10 +16331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13500] = 3, + [14486] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(340), 16, + ACTIONS(350), 16, anon_sym_as, sym_identifier, sym_integer, @@ -15614,7 +16351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(338), 23, + ACTIONS(348), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -15638,9 +16375,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13547] = 3, + [14533] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(358), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(356), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14580] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(278), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(276), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14627] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(354), 16, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(352), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14674] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(470), 1, + anon_sym_LPAREN, ACTIONS(336), 16, anon_sym_as, sym_identifier, @@ -15658,9 +16529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(334), 23, + ACTIONS(334), 22, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_CARET, @@ -15682,748 +16552,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13594] = 11, + [14723] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(238), 1, anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(274), 1, - anon_sym_LT, - ACTIONS(452), 1, - anon_sym_COLON_COLON, - STATE(68), 1, - sym_assignment_operator, - STATE(652), 1, - sym_type_specification, - ACTIONS(276), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(266), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_new, - ACTIONS(264), 16, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(242), 1, aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(246), 1, sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13657] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(300), 16, - anon_sym_as, - sym_identifier, + ACTIONS(248), 1, sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(298), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, + ACTIONS(254), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13704] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(304), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, + ACTIONS(256), 1, anon_sym_new, - ACTIONS(302), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13751] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(260), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13798] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(308), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(306), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13845] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(312), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13892] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 16, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(342), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13939] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(458), 1, - anon_sym_RPAREN, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14023] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(466), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14107] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(468), 1, - anon_sym_RPAREN, - STATE(178), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14191] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(470), 1, - anon_sym_RBRACK, - STATE(172), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14275] = 22, - ACTIONS(3), 1, - sym__comment, ACTIONS(472), 1, sym_identifier, ACTIONS(474), 1, - anon_sym_LPAREN, + anon_sym_CARET, ACTIONS(476), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, ACTIONS(478), 1, - anon_sym_CARET, + anon_sym_RBRACK, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [14807] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, ACTIONS(480), 1, - aux_sym_command_argument_token2, + anon_sym_RPAREN, ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - STATE(564), 1, - sym_expression, - STATE(576), 1, - sym_function_call, - STATE(677), 1, - aux_sym_function_repeat1, - STATE(724), 1, - sym__function_expression_kind, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(587), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14359] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, anon_sym_CARET, - ACTIONS(496), 1, - anon_sym_RBRACK, - STATE(164), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, + STATE(182), 1, + aux_sym__expression_list, STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14443] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(498), 1, - anon_sym_RPAREN, - STATE(187), 1, - aux_sym__expression_list, - STATE(249), 1, sym_function_call, - STATE(253), 1, + STATE(265), 1, sym_expression, - STATE(754), 1, + STATE(752), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(222), 2, + STATE(226), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(251), 5, + STATE(259), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(151), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -16432,990 +16676,60 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [14527] = 22, + [14891] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(238), 1, anon_sym_LPAREN, - ACTIONS(192), 1, + ACTIONS(242), 1, aux_sym_command_argument_token2, - ACTIONS(198), 1, + ACTIONS(246), 1, sym_range, - ACTIONS(200), 1, + ACTIONS(248), 1, sym_integer, - ACTIONS(206), 1, + ACTIONS(254), 1, anon_sym_LBRACK, - ACTIONS(224), 1, + ACTIONS(256), 1, anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(500), 1, - anon_sym_RBRACK, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14611] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(502), 1, - anon_sym_RPAREN, - STATE(176), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14695] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(504), 1, - anon_sym_RPAREN, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14779] = 22, - ACTIONS(3), 1, - sym__comment, ACTIONS(472), 1, sym_identifier, ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, + ACTIONS(476), 1, anon_sym_LBRACE, ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(506), 1, - anon_sym_RPAREN, - STATE(564), 1, - sym_expression, - STATE(576), 1, - sym_function_call, - STATE(662), 1, - aux_sym_function_repeat1, - STATE(724), 1, - sym__function_expression_kind, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(590), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14863] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(508), 1, - anon_sym_RPAREN, - STATE(157), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14947] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(472), 1, - sym_identifier, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(510), 1, - anon_sym_RPAREN, - STATE(564), 1, - sym_expression, - STATE(576), 1, - sym_function_call, - STATE(657), 1, - aux_sym_function_repeat1, - STATE(724), 1, - sym__function_expression_kind, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(588), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15031] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(512), 1, - anon_sym_RBRACK, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15115] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(514), 1, - anon_sym_RPAREN, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15199] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(516), 1, - anon_sym_RBRACK, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15283] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(518), 1, - anon_sym_RPAREN, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15367] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(520), 1, - anon_sym_RPAREN, - STATE(171), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15451] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(522), 1, - anon_sym_RPAREN, - STATE(189), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15535] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(524), 1, - anon_sym_RPAREN, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15619] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(526), 1, - sym_identifier, - ACTIONS(529), 1, - anon_sym_LPAREN, - ACTIONS(532), 1, - anon_sym_RPAREN, - ACTIONS(534), 1, - anon_sym_CARET, - ACTIONS(537), 1, - aux_sym_command_argument_token2, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(543), 1, - sym_range, - ACTIONS(546), 1, - sym_integer, - ACTIONS(555), 1, - anon_sym_LBRACK, - ACTIONS(558), 1, - anon_sym_new, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(552), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(549), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15703] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(561), 1, - anon_sym_RPAREN, - STATE(177), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15787] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(563), 1, anon_sym_RBRACK, STATE(185), 1, aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, STATE(254), 1, + sym_function_call, + STATE(267), 1, sym_expression, - STATE(754), 1, + STATE(752), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(222), 2, + STATE(226), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(251), 5, + STATE(259), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(151), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -17424,60 +16738,804 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15871] = 22, + [14975] = 22, ACTIONS(3), 1, sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, ACTIONS(472), 1, sym_identifier, ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, + ACTIONS(476), 1, anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, ACTIONS(486), 1, + anon_sym_RBRACK, + STATE(178), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15059] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, sym_integer, - ACTIONS(492), 1, + ACTIONS(254), 1, anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(488), 1, + anon_sym_RBRACK, + STATE(166), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15143] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(490), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, ACTIONS(494), 1, + anon_sym_RPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + STATE(562), 1, + sym_expression, + STATE(565), 1, + sym_function_call, + STATE(712), 1, + aux_sym_function_repeat1, + STATE(749), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(593), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15227] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(490), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(514), 1, + anon_sym_RPAREN, + STATE(562), 1, + sym_expression, + STATE(565), 1, + sym_function_call, + STATE(674), 1, + aux_sym_function_repeat1, + STATE(749), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(603), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15311] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(490), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(516), 1, + anon_sym_RPAREN, + STATE(562), 1, + sym_expression, + STATE(565), 1, + sym_function_call, + STATE(675), 1, + aux_sym_function_repeat1, + STATE(749), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(609), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15395] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(518), 1, + anon_sym_RBRACK, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15479] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(520), 1, + anon_sym_RPAREN, + STATE(186), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15563] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(522), 1, + anon_sym_RBRACK, + STATE(174), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15647] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(527), 1, + anon_sym_LPAREN, + ACTIONS(530), 1, + anon_sym_RPAREN, + ACTIONS(532), 1, + anon_sym_CARET, + ACTIONS(535), 1, + aux_sym_command_argument_token2, + ACTIONS(538), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_range, + ACTIONS(544), 1, + sym_integer, + ACTIONS(553), 1, + anon_sym_LBRACK, + ACTIONS(556), 1, + anon_sym_new, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(550), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(547), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15731] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, + anon_sym_RBRACK, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15815] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(561), 1, + anon_sym_RPAREN, + STATE(190), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15899] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(563), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15983] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(490), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, anon_sym_new, ACTIONS(565), 1, anon_sym_RPAREN, - STATE(564), 1, + STATE(562), 1, sym_expression, - STATE(576), 1, + STATE(565), 1, sym_function_call, - STATE(661), 1, + STATE(688), 1, aux_sym_function_repeat1, - STATE(724), 1, + STATE(749), 1, sym__function_expression_kind, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, + STATE(812), 1, sym_index_expression, - ACTIONS(490), 2, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - STATE(476), 2, + STATE(514), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(597), 5, + STATE(599), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(487), 8, sym_float, sym_string, sym_boolean, @@ -17486,432 +17544,60 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15955] = 22, + [16067] = 22, ACTIONS(3), 1, sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, ACTIONS(567), 1, - sym_identifier, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(573), 1, - anon_sym_CARET, - ACTIONS(576), 1, - aux_sym_command_argument_token2, - ACTIONS(579), 1, - anon_sym_LBRACE, - ACTIONS(582), 1, - sym_range, - ACTIONS(585), 1, - sym_integer, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(597), 1, - anon_sym_RBRACK, - ACTIONS(599), 1, - anon_sym_new, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(591), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(588), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16039] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(602), 1, - anon_sym_RPAREN, - STATE(173), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16123] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(604), 1, - anon_sym_RBRACK, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16207] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, - anon_sym_RPAREN, - STATE(166), 1, - aux_sym__expression_list, - STATE(249), 1, - sym_function_call, - STATE(253), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16291] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(608), 1, - anon_sym_RBRACK, - STATE(181), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16375] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - ACTIONS(610), 1, - anon_sym_RBRACK, - STATE(183), 1, - aux_sym_list_repeat1, - STATE(249), 1, - sym_function_call, - STATE(254), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16459] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(612), 1, anon_sym_RPAREN, STATE(177), 1, aux_sym__expression_list, - STATE(249), 1, + STATE(254), 1, sym_function_call, - STATE(253), 1, + STATE(265), 1, sym_expression, - STATE(754), 1, + STATE(752), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(222), 2, + STATE(226), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(251), 5, + STATE(259), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(151), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -17920,60 +17606,184 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16543] = 22, + [16151] = 22, ACTIONS(3), 1, sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(569), 1, + anon_sym_RPAREN, + STATE(195), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16235] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(571), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16319] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, ACTIONS(472), 1, sym_identifier, ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, + ACTIONS(476), 1, anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(614), 1, - anon_sym_RPAREN, - STATE(564), 1, - sym_expression, - STATE(576), 1, + ACTIONS(573), 1, + anon_sym_RBRACK, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, sym_function_call, - STATE(660), 1, - aux_sym_function_repeat1, - STATE(724), 1, - sym__function_expression_kind, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, + STATE(267), 1, + sym_expression, + STATE(752), 1, sym_index_expression, - ACTIONS(490), 2, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(476), 2, + STATE(226), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(594), 5, + STATE(259), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -17982,60 +17792,60 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16627] = 22, + [16403] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(238), 1, anon_sym_LPAREN, - ACTIONS(192), 1, + ACTIONS(242), 1, aux_sym_command_argument_token2, - ACTIONS(198), 1, + ACTIONS(246), 1, sym_range, - ACTIONS(200), 1, + ACTIONS(248), 1, sym_integer, - ACTIONS(206), 1, + ACTIONS(254), 1, anon_sym_LBRACK, - ACTIONS(224), 1, + ACTIONS(256), 1, anon_sym_new, - ACTIONS(456), 1, + ACTIONS(472), 1, sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, + ACTIONS(476), 1, anon_sym_LBRACE, - ACTIONS(616), 1, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(575), 1, anon_sym_RPAREN, STATE(177), 1, aux_sym__expression_list, - STATE(249), 1, + STATE(254), 1, sym_function_call, - STATE(253), 1, + STATE(265), 1, sym_expression, - STATE(754), 1, + STATE(752), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, anon_sym_true, anon_sym_false, - STATE(222), 2, + STATE(226), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(251), 5, + STATE(259), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(151), 8, + STATE(153), 8, sym_float, sym_string, sym_boolean, @@ -18044,16 +17854,760 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16711] = 6, + [16487] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(238), 1, anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(577), 1, + anon_sym_RPAREN, + STATE(180), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16571] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(579), 1, + anon_sym_RBRACK, + STATE(193), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16655] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(581), 1, + anon_sym_RPAREN, + STATE(184), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16739] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(583), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16823] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(585), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16907] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(490), 1, + sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(587), 1, + anon_sym_RPAREN, + STATE(562), 1, + sym_expression, + STATE(565), 1, + sym_function_call, + STATE(691), 1, + aux_sym_function_repeat1, + STATE(749), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(595), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16991] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(589), 1, + anon_sym_RBRACK, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17075] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(591), 1, + anon_sym_RPAREN, + STATE(197), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17159] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(593), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17243] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(595), 1, + anon_sym_RPAREN, + STATE(191), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17327] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + ACTIONS(597), 1, + anon_sym_RPAREN, + STATE(177), 1, + aux_sym__expression_list, + STATE(254), 1, + sym_function_call, + STATE(265), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17411] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(599), 1, + sym_identifier, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(605), 1, + anon_sym_CARET, + ACTIONS(608), 1, + aux_sym_command_argument_token2, + ACTIONS(611), 1, + anon_sym_LBRACE, + ACTIONS(614), 1, + sym_range, + ACTIONS(617), 1, + sym_integer, + ACTIONS(626), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_RBRACK, + ACTIONS(631), 1, + anon_sym_new, + STATE(198), 1, + aux_sym_list_repeat1, + STATE(254), 1, + sym_function_call, + STATE(267), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(623), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(620), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17495] = 6, + ACTIONS(3), 1, + sym__comment, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(452), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(468), 1, anon_sym_COLON_COLON, - ACTIONS(266), 15, + ACTIONS(298), 15, anon_sym_as, sym_identifier, sym_integer, @@ -18069,7 +18623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(264), 19, + ACTIONS(296), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -18089,21 +18643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16762] = 8, + [17546] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(296), 1, anon_sym_COLON, - STATE(63), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + STATE(50), 1, sym_assignment_operator, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(266), 15, + ACTIONS(298), 15, anon_sym_as, sym_identifier, sym_integer, @@ -18119,7 +18673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(264), 16, + ACTIONS(296), 16, anon_sym_SEMI, anon_sym_COMMA, aux_sym_command_argument_token2, @@ -18136,27 +18690,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16817] = 5, - ACTIONS(354), 1, + [17601] = 4, + ACTIONS(3), 1, sym__comment, - ACTIONS(350), 2, + ACTIONS(634), 1, + anon_sym_DASH_GT, + ACTIONS(424), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(422), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(618), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(198), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 30, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [17647] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + STATE(546), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17725] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(459), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17803] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(390), 16, anon_sym_as, anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, - sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -18165,331 +18863,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(388), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_new, - [16865] = 20, + [17847] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - ACTIONS(622), 1, - anon_sym_CARET, - STATE(532), 1, - sym_expression, - STATE(534), 1, - sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16943] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(409), 1, - sym_expression, - STATE(546), 1, - sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17021] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(500), 1, - sym_expression, - STATE(546), 1, - sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17099] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - STATE(534), 1, - sym_function_call, - STATE(536), 1, - sym_expression, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(516), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17177] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_function_call, - STATE(258), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17255] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(646), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(198), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 30, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(386), 16, anon_sym_as, anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, - sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -18498,113 +18904,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_new, - [17303] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 2, + ACTIONS(384), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(618), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(192), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 30, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + anon_sym_CARET, + aux_sym_command_argument_token2, anon_sym_LBRACE, anon_sym_RBRACE, - sym_identifier, sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_new, - [17351] = 20, + [17891] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(512), 1, anon_sym_new, - ACTIONS(620), 1, + ACTIONS(636), 1, sym_identifier, - STATE(524), 1, - sym_expression, - STATE(534), 1, + ACTIONS(660), 1, + anon_sym_CARET, + STATE(556), 1, sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, + STATE(557), 1, + sym_expression, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(490), 2, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - STATE(516), 2, + STATE(514), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(553), 5, + STATE(569), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(487), 8, sym_float, sym_string, sym_boolean, @@ -18613,56 +18988,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17429] = 20, + [17969] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(624), 1, + ACTIONS(638), 1, sym_identifier, - ACTIONS(626), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, ACTIONS(642), 1, - anon_sym_LBRACK, + anon_sym_CARET, ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_new, - STATE(499), 1, + STATE(510), 1, sym_expression, - STATE(546), 1, + STATE(542), 1, sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, + STATE(764), 1, sym_index_expression, - ACTIONS(640), 2, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, anon_sym_true, anon_sym_false, - STATE(510), 2, + STATE(492), 2, sym_value, sym_index, - ACTIONS(638), 5, + ACTIONS(652), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(580), 5, + STATE(574), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(514), 8, + STATE(503), 8, sym_float, sym_string, sym_boolean, @@ -18671,56 +19046,98 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17507] = 20, + [18047] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(624), 1, + ACTIONS(662), 1, + anon_sym_DASH_GT, + ACTIONS(418), 15, + anon_sym_as, sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, sym_integer, - ACTIONS(642), 1, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(416), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18093] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_new, STATE(446), 1, sym_expression, - STATE(546), 1, + STATE(542), 1, sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, + STATE(764), 1, sym_index_expression, - ACTIONS(640), 2, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, anon_sym_true, anon_sym_false, - STATE(510), 2, + STATE(492), 2, sym_value, sym_index, - ACTIONS(638), 5, + ACTIONS(652), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(580), 5, + STATE(574), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(514), 8, + STATE(503), 8, sym_float, sym_string, sym_boolean, @@ -18729,371 +19146,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17585] = 3, + [18171] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(376), 16, - anon_sym_as, - anon_sym_PIPE, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(374), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17629] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(440), 1, - sym_expression, - STATE(546), 1, - sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17707] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(425), 1, - sym_expression, - STATE(546), 1, - sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17785] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(424), 1, - sym_expression, - STATE(546), 1, - sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17863] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(300), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(298), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17909] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, + ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(649), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(651), 1, + ACTIONS(666), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(124), 1, sym_expression, - STATE(134), 1, + STATE(141), 1, sym_function_call, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(118), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(128), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17987] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(431), 1, - sym_expression, - STATE(546), 1, - sym_function_call, STATE(772), 1, sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(640), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(510), 2, + STATE(128), 2, sym_value, sym_index, - ACTIONS(638), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(580), 5, + STATE(134), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(514), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -19102,636 +19204,172 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18065] = 20, + [18249] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(7), 1, + ACTIONS(9), 1, anon_sym_LPAREN, ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, sym_integer, - ACTIONS(25), 1, + ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_new, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(649), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(651), 1, + ACTIONS(666), 1, + anon_sym_LBRACE, + STATE(113), 1, + sym_expression, + STATE(141), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(128), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(134), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18327] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(668), 1, + sym_identifier, + STATE(546), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18405] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, anon_sym_LBRACE, STATE(119), 1, sym_expression, - STATE(134), 1, + STATE(141), 1, sym_function_call, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(118), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(128), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18143] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - anon_sym_CARET, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(649), 1, - sym_identifier, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(121), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(118), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(128), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18221] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - STATE(519), 1, - sym_expression, - STATE(534), 1, - sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(516), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18299] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(653), 1, - sym_identifier, - STATE(520), 1, - sym_expression, - STATE(534), 1, - sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(516), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18377] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(9), 1, - anon_sym_CARET, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(649), 1, - sym_identifier, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(109), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - STATE(809), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(118), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(128), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18455] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18533] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(190), 1, - anon_sym_CARET, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_function_call, - STATE(259), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18611] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(460), 1, - anon_sym_CARET, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_function_call, - STATE(252), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18689] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - ACTIONS(622), 1, - anon_sym_CARET, - STATE(533), 1, - sym_expression, - STATE(534), 1, - sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18767] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - ACTIONS(622), 1, - anon_sym_CARET, - STATE(534), 1, - sym_function_call, - STATE(535), 1, - sym_expression, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18845] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, - anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, - sym_range, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - STATE(413), 1, - sym_expression, - STATE(546), 1, - sym_function_call, STATE(772), 1, sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, + STATE(773), 1, sym_index_expression, - ACTIONS(640), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(510), 2, + STATE(128), 2, sym_value, sym_index, - ACTIONS(638), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(580), 5, + STATE(134), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(514), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -19740,157 +19378,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18923] = 20, + [18483] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(474), 1, + ACTIONS(190), 1, anon_sym_LPAREN, - ACTIONS(480), 1, + ACTIONS(194), 1, aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, + ACTIONS(200), 1, sym_range, - ACTIONS(486), 1, + ACTIONS(202), 1, sym_integer, - ACTIONS(492), 1, + ACTIONS(208), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(224), 1, anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - ACTIONS(622), 1, + ACTIONS(230), 1, anon_sym_CARET, - STATE(534), 1, - sym_function_call, - STATE(542), 1, + ACTIONS(670), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LBRACE, + STATE(399), 1, sym_expression, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(476), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(553), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19001] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(266), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(264), 19, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19049] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, - sym_identifier, - STATE(520), 1, - sym_expression, - STATE(534), 1, + STATE(432), 1, sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, + STATE(760), 1, sym_index_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(490), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(516), 2, + STATE(415), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(553), 5, + STATE(480), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -19899,297 +19436,404 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19127] = 20, + [18561] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(624), 1, - sym_identifier, - ACTIONS(626), 1, + ACTIONS(190), 1, anon_sym_LPAREN, - ACTIONS(628), 1, - anon_sym_CARET, - ACTIONS(630), 1, + ACTIONS(194), 1, aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(634), 1, + ACTIONS(200), 1, sym_range, - ACTIONS(636), 1, + ACTIONS(202), 1, sym_integer, + ACTIONS(208), 1, + anon_sym_LBRACK, + ACTIONS(224), 1, + anon_sym_new, + ACTIONS(230), 1, + anon_sym_CARET, + ACTIONS(670), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_expression, + STATE(432), 1, + sym_function_call, + STATE(760), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, + anon_sym_true, + anon_sym_false, + STATE(415), 2, + sym_value, + sym_index, + ACTIONS(204), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(480), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(363), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18639] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, ACTIONS(642), 1, - anon_sym_LBRACK, + anon_sym_CARET, ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(458), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18717] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(49), 1, + anon_sym_CARET, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_expression, + STATE(141), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(773), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(128), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(134), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18795] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(457), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18873] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + STATE(254), 1, + sym_function_call, + STATE(271), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18951] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_CARET, + ACTIONS(476), 1, + anon_sym_LBRACE, + STATE(254), 1, + sym_function_call, + STATE(273), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19029] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_new, STATE(453), 1, sym_expression, - STATE(546), 1, + STATE(542), 1, sym_function_call, - STATE(772), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(822), 1, + STATE(764), 1, sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(510), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(580), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19205] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 16, - anon_sym_as, - anon_sym_PIPE, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(378), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19249] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(655), 1, - anon_sym_DASH_GT, - ACTIONS(408), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(406), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19295] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_LPAREN, - ACTIONS(192), 1, - aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, - ACTIONS(200), 1, - sym_integer, - ACTIONS(206), 1, - anon_sym_LBRACK, - ACTIONS(224), 1, - anon_sym_new, - ACTIONS(456), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - STATE(249), 1, - sym_function_call, - STATE(255), 1, - sym_expression, - STATE(754), 1, - sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, - anon_sym_true, - anon_sym_false, - STATE(222), 2, - sym_value, - sym_index, - ACTIONS(202), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(251), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(151), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19373] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(657), 1, - anon_sym_DASH_GT, - ACTIONS(414), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(412), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19419] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_CARET, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_expression, - STATE(428), 1, - sym_function_call, STATE(779), 1, - sym_index_expression, - STATE(791), 1, sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, + ACTIONS(654), 2, anon_sym_true, anon_sym_false, - STATE(386), 2, + STATE(492), 2, sym_value, sym_index, - ACTIONS(240), 5, + ACTIONS(652), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(477), 5, + STATE(574), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(365), 8, + STATE(503), 8, sym_float, sym_string, sym_boolean, @@ -20198,56 +19842,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19497] = 20, + [19107] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(620), 1, + ACTIONS(638), 1, sym_identifier, - STATE(534), 1, - sym_function_call, - STATE(539), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(452), 1, sym_expression, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, + STATE(542), 1, + sym_function_call, + STATE(764), 1, sym_index_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(490), 2, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, anon_sym_true, anon_sym_false, - STATE(516), 2, + STATE(492), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(652), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(553), 5, + STATE(574), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(503), 8, sym_float, sym_string, sym_boolean, @@ -20256,56 +19900,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19575] = 20, + [19185] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(512), 1, anon_sym_new, - ACTIONS(620), 1, + ACTIONS(636), 1, sym_identifier, - STATE(534), 1, - sym_function_call, STATE(540), 1, sym_expression, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, + STATE(556), 1, + sym_function_call, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(490), 2, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - STATE(516), 2, + STATE(552), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(553), 5, + STATE(569), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(487), 8, sym_float, sym_string, sym_boolean, @@ -20314,56 +19958,273 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19653] = 20, + [19263] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(513), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19341] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + STATE(254), 1, + sym_function_call, + STATE(264), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19419] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(296), 19, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19467] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(482), 1, + anon_sym_CARET, + STATE(254), 1, + sym_function_call, + STATE(262), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19545] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(190), 1, anon_sym_LPAREN, ACTIONS(192), 1, + anon_sym_CARET, + ACTIONS(194), 1, aux_sym_command_argument_token2, - ACTIONS(198), 1, - sym_range, ACTIONS(200), 1, + sym_range, + ACTIONS(202), 1, sym_integer, - ACTIONS(206), 1, + ACTIONS(208), 1, anon_sym_LBRACK, ACTIONS(224), 1, anon_sym_new, - ACTIONS(456), 1, + ACTIONS(670), 1, sym_identifier, - ACTIONS(462), 1, + ACTIONS(672), 1, anon_sym_LBRACE, - ACTIONS(464), 1, - anon_sym_CARET, - STATE(249), 1, + STATE(432), 1, sym_function_call, - STATE(257), 1, + STATE(437), 1, sym_expression, - STATE(754), 1, + STATE(760), 1, sym_index_expression, - STATE(762), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(204), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(222), 2, + STATE(415), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(251), 5, + STATE(480), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(151), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -20372,56 +20233,56 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19731] = 20, + [19623] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(228), 1, + ACTIONS(190), 1, anon_sym_LPAREN, - ACTIONS(230), 1, + ACTIONS(192), 1, anon_sym_CARET, - ACTIONS(232), 1, + ACTIONS(194), 1, aux_sym_command_argument_token2, - ACTIONS(236), 1, + ACTIONS(200), 1, sym_range, - ACTIONS(238), 1, + ACTIONS(202), 1, sym_integer, - ACTIONS(244), 1, + ACTIONS(208), 1, anon_sym_LBRACK, - ACTIONS(248), 1, + ACTIONS(224), 1, anon_sym_new, - ACTIONS(659), 1, + ACTIONS(670), 1, sym_identifier, - ACTIONS(661), 1, + ACTIONS(672), 1, anon_sym_LBRACE, - STATE(410), 1, - sym_expression, - STATE(428), 1, + STATE(432), 1, sym_function_call, - STATE(779), 1, + STATE(439), 1, + sym_expression, + STATE(760), 1, sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(242), 2, + STATE(796), 1, + sym_function_expression, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(386), 2, + STATE(415), 2, sym_value, sym_index, - ACTIONS(240), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(477), 5, + STATE(480), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(365), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -20430,172 +20291,98 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19809] = 20, + [19701] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(316), 15, + anon_sym_as, + sym_identifier, sym_integer, - ACTIONS(244), 1, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(314), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LBRACE, - STATE(384), 1, - sym_expression, - STATE(428), 1, - sym_function_call, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(386), 2, - sym_value, - sym_index, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(477), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19887] = 20, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19747] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(228), 1, - anon_sym_LPAREN, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(236), 1, - sym_range, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(252), 1, - anon_sym_CARET, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_expression, - STATE(428), 1, - sym_function_call, - STATE(779), 1, - sym_index_expression, - STATE(791), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(386), 2, - sym_value, - sym_index, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(477), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19965] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 1, - anon_sym_LPAREN, - ACTIONS(478), 1, - anon_sym_CARET, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(484), 1, - sym_range, - ACTIONS(486), 1, - sym_integer, ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(512), 1, anon_sym_new, - ACTIONS(620), 1, + ACTIONS(636), 1, sym_identifier, - STATE(521), 1, + ACTIONS(660), 1, + anon_sym_CARET, + STATE(536), 1, sym_expression, - STATE(534), 1, + STATE(556), 1, sym_function_call, - STATE(744), 1, - sym_function_expression, - STATE(793), 1, - sym_index_expression, - STATE(801), 1, + STATE(767), 1, sym__function_expression_kind, - ACTIONS(490), 2, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - STATE(516), 2, + STATE(514), 2, sym_value, sym_index, - ACTIONS(488), 5, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(553), 5, + STATE(569), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(468), 8, + STATE(487), 8, sym_float, sym_string, sym_boolean, @@ -20604,218 +20391,201 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [20043] = 3, + [19825] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(432), 15, - anon_sym_as, - sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + STATE(532), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(430), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20086] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(663), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(238), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 29, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [20133] = 3, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19903] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(448), 15, - anon_sym_as, - sym_identifier, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, + sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + STATE(254), 1, + sym_function_call, + STATE(268), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(446), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20176] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(350), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(666), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(245), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 29, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [20223] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(666), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(240), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 29, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [20270] = 3, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19981] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(444), 15, - anon_sym_as, + ACTIONS(238), 1, + anon_sym_LPAREN, + ACTIONS(240), 1, + anon_sym_CARET, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(246), 1, + sym_range, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(472), 1, sym_identifier, + ACTIONS(476), 1, + anon_sym_LBRACE, + STATE(254), 1, + sym_function_call, + STATE(261), 1, + sym_expression, + STATE(752), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(770), 1, + sym_function_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(226), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(259), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20059] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(674), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(237), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -20824,38 +20594,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(442), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20313] = 3, + anon_sym_new, + [20107] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(436), 15, - anon_sym_as, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, sym_identifier, + STATE(556), 1, + sym_function_call, + STATE(559), 1, + sym_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20185] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(674), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(242), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -20864,90 +20695,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(434), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20356] = 3, + anon_sym_new, + [20233] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(414), 15, - anon_sym_as, - sym_identifier, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + STATE(553), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20311] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(423), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, anon_sym_true, anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(412), 20, - anon_sym_SEMI, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20389] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(492), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, + ACTIONS(498), 1, aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + ACTIONS(660), 1, + anon_sym_CARET, + STATE(535), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20467] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(642), 1, + anon_sym_CARET, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(648), 1, + sym_range, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + STATE(422), 1, + sym_expression, + STATE(542), 1, + sym_function_call, + STATE(764), 1, + sym_index_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(779), 1, + sym_function_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(492), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(574), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20545] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(676), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(242), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 30, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_LBRACE, anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20399] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(668), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(245), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 29, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, sym_identifier, sym_range, sym_integer, @@ -20972,91 +20984,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_new, - [20446] = 5, - ACTIONS(354), 1, + [20593] = 20, + ACTIONS(3), 1, sym__comment, - ACTIONS(362), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(671), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(247), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 29, + ACTIONS(492), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(502), 1, sym_range, + ACTIONS(504), 1, sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + ACTIONS(660), 1, + anon_sym_CARET, + STATE(556), 1, + sym_function_call, + STATE(558), 1, + sym_expression, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym_value, + sym_index, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20671] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + STATE(550), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [20493] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(350), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(671), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(238), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 29, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20749] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(492), 1, + anon_sym_LPAREN, + ACTIONS(496), 1, + anon_sym_CARET, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(502), 1, + sym_range, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(636), 1, + sym_identifier, + STATE(548), 1, + sym_expression, + STATE(556), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_index_expression, + STATE(816), 1, + sym_function_expression, + ACTIONS(508), 2, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [20540] = 3, + STATE(552), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(569), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20827] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(424), 15, @@ -21096,12 +21198,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20583] = 4, + [20870] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(679), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(248), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [20917] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(681), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(248), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [20964] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(266), 15, + ACTIONS(458), 15, anon_sym_as, sym_identifier, sym_integer, @@ -21117,7 +21301,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(264), 19, + ACTIONS(456), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21007] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(452), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(450), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21050] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(679), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(247), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [21097] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(684), 1, + anon_sym_LT, + ACTIONS(452), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_new, + ACTIONS(450), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21142] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(444), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(442), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21185] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(296), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -21137,12 +21526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20628] = 4, + [21230] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(673), 1, - anon_sym_LT, - ACTIONS(448), 14, + ACTIONS(462), 15, anon_sym_as, sym_identifier, sym_integer, @@ -21156,6 +21543,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(460), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21273] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(466), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(464), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21316] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(686), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(257), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [21363] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(689), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(257), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [21410] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(448), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_new, ACTIONS(446), 20, anon_sym_SEMI, @@ -21178,10 +21730,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20673] = 3, + [21453] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(689), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(258), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 29, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [21500] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(440), 15, + STATE(233), 1, + sym_math_operator, + STATE(234), 1, + sym_logic_operator, + ACTIONS(428), 15, anon_sym_as, sym_identifier, sym_integer, @@ -21197,18 +21795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(438), 20, + ACTIONS(430), 17, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -21218,149 +21813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20716] = 5, + [21546] = 5, ACTIONS(3), 1, sym__comment, - STATE(215), 1, + STATE(225), 1, sym_math_operator, - STATE(217), 1, - sym_logic_operator, - ACTIONS(418), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(420), 17, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20762] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(679), 1, - anon_sym_COMMA, - ACTIONS(681), 1, - anon_sym_as, - STATE(215), 1, - sym_math_operator, - STATE(217), 1, - sym_logic_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(677), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(675), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [20820] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(681), 1, - anon_sym_as, - ACTIONS(687), 1, - anon_sym_COMMA, STATE(227), 1, - sym_math_operator, - STATE(232), 1, sym_logic_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(685), 7, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(683), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [20878] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(227), 1, - sym_math_operator, - STATE(232), 1, - sym_logic_operator, - ACTIONS(398), 15, + ACTIONS(428), 15, anon_sym_as, sym_identifier, sym_integer, @@ -21376,217 +21836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(396), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20924] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(681), 1, - anon_sym_as, - STATE(197), 1, - sym_math_operator, - STATE(216), 1, - sym_logic_operator, - ACTIONS(388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(390), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(384), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(382), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [20980] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(227), 1, - sym_math_operator, - STATE(232), 1, - sym_logic_operator, - ACTIONS(418), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(420), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21026] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(197), 1, - sym_math_operator, - STATE(216), 1, - sym_logic_operator, - ACTIONS(398), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(396), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21072] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(197), 1, - sym_math_operator, - STATE(216), 1, - sym_logic_operator, - ACTIONS(418), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(420), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21118] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(215), 1, - sym_math_operator, - STATE(217), 1, - sym_logic_operator, - ACTIONS(398), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(396), 17, + ACTIONS(430), 17, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -21604,13 +21854,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21164] = 3, - ACTIONS(354), 1, + [21592] = 11, + ACTIONS(3), 1, sym__comment, + ACTIONS(691), 1, + anon_sym_SEMI, + ACTIONS(693), 1, + anon_sym_as, + STATE(233), 1, + sym_math_operator, + STATE(234), 1, + sym_logic_operator, ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(404), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(432), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [21650] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(225), 1, + sym_math_operator, + STATE(227), 1, + sym_logic_operator, + ACTIONS(394), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(392), 17, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21696] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(693), 1, + anon_sym_as, + ACTIONS(699), 1, + anon_sym_COMMA, + STATE(225), 1, + sym_math_operator, + STATE(227), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(697), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(695), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [21754] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(693), 1, + anon_sym_as, + ACTIONS(701), 1, + anon_sym_SEMI, + STATE(233), 1, + sym_math_operator, + STATE(234), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(404), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(398), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(396), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [21812] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(693), 1, + anon_sym_as, + ACTIONS(707), 1, + anon_sym_COMMA, + STATE(219), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(705), 7, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(703), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [21870] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(233), 1, + sym_math_operator, + STATE(234), 1, + sym_logic_operator, + ACTIONS(394), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(392), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21916] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(404), 32, + ACTIONS(410), 32, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -21643,34 +22163,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_new, - [21206] = 11, + [21958] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(681), 1, + ACTIONS(693), 1, anon_sym_as, - ACTIONS(689), 1, - anon_sym_SEMI, - STATE(197), 1, + STATE(233), 1, sym_math_operator, - STATE(216), 1, + STATE(234), 1, sym_logic_operator, - ACTIONS(388), 2, + ACTIONS(402), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(390), 2, + ACTIONS(404), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(394), 2, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 6, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(384), 8, + ACTIONS(398), 9, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, aux_sym_command_argument_token2, @@ -21679,7 +22198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(382), 10, + ACTIONS(396), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -21690,14 +22209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [21264] = 5, + [22014] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(691), 1, - anon_sym_PIPE, - ACTIONS(266), 15, + STATE(219), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(428), 15, anon_sym_as, sym_identifier, sym_integer, @@ -21713,8 +22232,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_new, - ACTIONS(264), 16, + ACTIONS(430), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [22060] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(693), 1, + anon_sym_as, + STATE(233), 1, + sym_math_operator, + STATE(234), 1, + sym_logic_operator, + ACTIONS(402), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(404), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(434), 9, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(432), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [22116] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(219), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(394), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(392), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [22162] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(298), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(296), 17, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, aux_sym_command_argument_token2, anon_sym_LBRACE, @@ -21730,10 +22376,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21309] = 3, + [22205] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(410), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [22246] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 14, + ACTIONS(356), 14, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -21748,7 +22432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_elseif, anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(344), 19, + ACTIONS(358), 19, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -21764,526 +22449,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [21350] = 3, + [22287] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(340), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(338), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21391] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(691), 1, - anon_sym_PIPE, - ACTIONS(266), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_new, - ACTIONS(264), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21434] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(697), 1, - anon_sym_elseif, - ACTIONS(699), 1, - anon_sym_else, - STATE(314), 1, - sym_else, - STATE(276), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(693), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(695), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [21483] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(404), 31, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [21524] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(697), 1, - anon_sym_elseif, - ACTIONS(699), 1, - anon_sym_else, - STATE(324), 1, - sym_else, - STATE(267), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(701), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(703), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [21573] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(404), 31, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_new, - [21614] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_LPAREN, ACTIONS(709), 1, - anon_sym_CARET, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - STATE(326), 1, - sym_pipe, - STATE(327), 1, - sym_command, - STATE(330), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(782), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, + anon_sym_PIPE, + ACTIONS(298), 15, + anon_sym_as, + sym_identifier, + sym_integer, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [21688] = 20, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(296), 16, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [22332] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, ACTIONS(715), 1, - anon_sym_CARET, - STATE(389), 1, - sym_function_call, - STATE(398), 1, - sym_command, - STATE(448), 1, - sym_pipe, - STATE(743), 1, - sym_index_expression, - STATE(798), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [21762] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(717), 1, - anon_sym_CARET, - STATE(448), 1, - sym_pipe, - STATE(638), 1, - sym_function_call, - STATE(643), 1, - sym_command, - STATE(743), 1, - sym_index_expression, - STATE(796), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [21836] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(719), 1, - anon_sym_CARET, - STATE(448), 1, - sym_pipe, - STATE(644), 1, - sym_function_call, - STATE(648), 1, - sym_command, - STATE(743), 1, - sym_index_expression, - STATE(796), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [21910] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(721), 1, - anon_sym_CARET, - STATE(313), 1, - sym_function_call, - STATE(315), 1, - sym_command, - STATE(326), 1, - sym_pipe, - STATE(743), 1, - sym_index_expression, - STATE(782), 1, - sym_function_expression, - STATE(801), 1, - sym__function_expression_kind, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [21984] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(727), 1, anon_sym_elseif, - STATE(276), 2, + ACTIONS(717), 1, + anon_sym_else, + STATE(322), 1, + sym_else, + STATE(281), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(723), 10, + ACTIONS(711), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -22294,7 +22515,434 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(725), 19, + ACTIONS(713), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [22381] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(410), 31, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_new, + [22422] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(354), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_new, + ACTIONS(352), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [22463] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(715), 1, + anon_sym_elseif, + ACTIONS(717), 1, + anon_sym_else, + STATE(326), 1, + sym_else, + STATE(287), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(719), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(721), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [22512] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(727), 1, + anon_sym_CARET, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + STATE(397), 1, + sym_function_call, + STATE(408), 1, + sym_command, + STATE(426), 1, + sym_pipe, + STATE(767), 1, + sym__function_expression_kind, + STATE(802), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22586] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(733), 1, + anon_sym_CARET, + STATE(334), 1, + sym_function_call, + STATE(335), 1, + sym_command, + STATE(336), 1, + sym_pipe, + STATE(767), 1, + sym__function_expression_kind, + STATE(788), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22660] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(735), 1, + anon_sym_CARET, + STATE(426), 1, + sym_pipe, + STATE(650), 1, + sym_function_call, + STATE(656), 1, + sym_command, + STATE(767), 1, + sym__function_expression_kind, + STATE(800), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22734] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(737), 1, + anon_sym_CARET, + STATE(426), 1, + sym_pipe, + STATE(655), 1, + sym_function_call, + STATE(662), 1, + sym_command, + STATE(767), 1, + sym__function_expression_kind, + STATE(800), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22808] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(723), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(739), 1, + anon_sym_CARET, + STATE(327), 1, + sym_function_call, + STATE(328), 1, + sym_command, + STATE(336), 1, + sym_pipe, + STATE(767), 1, + sym__function_expression_kind, + STATE(788), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22882] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(745), 1, + anon_sym_elseif, + STATE(287), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(741), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(743), 19, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -22310,77 +22958,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [22028] = 19, - ACTIONS(3), 1, + [22926] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(476), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - STATE(677), 1, - aux_sym_function_repeat1, - STATE(712), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22099] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(732), 2, + ACTIONS(748), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(278), 2, + STATE(296), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(364), 4, + ACTIONS(360), 4, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_asyncfor, - ACTIONS(366), 23, + ACTIONS(362), 23, + anon_sym_return, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_async, @@ -22400,483 +22996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [22142] = 19, - ACTIONS(3), 1, + [22969] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - STATE(660), 1, - aux_sym_function_repeat1, - STATE(714), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22213] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(735), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(278), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(350), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(352), 23, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22256] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(346), 13, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(348), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22295] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - ACTIONS(737), 1, - anon_sym_RPAREN, - STATE(655), 1, - aux_sym_function_repeat1, - STATE(743), 1, - sym_index_expression, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - STATE(724), 2, - sym__function_expression_kind, - sym_function_call, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22364] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(565), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - STATE(661), 1, - aux_sym_function_repeat1, - STATE(709), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22435] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(334), 13, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(336), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22474] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - ACTIONS(737), 1, - anon_sym_RPAREN, - STATE(655), 1, - aux_sym_function_repeat1, - STATE(712), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22545] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(735), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(280), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(362), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(360), 23, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22588] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(510), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - STATE(657), 1, - aux_sym_function_repeat1, - STATE(734), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22659] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(17), 1, - sym_range, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(506), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(730), 1, - sym_identifier, - STATE(662), 1, - aux_sym_function_repeat1, - STATE(710), 1, - sym_function_call, - STATE(743), 1, - sym_index_expression, - STATE(801), 1, - sym__function_expression_kind, - STATE(802), 1, - sym_function_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22730] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(739), 2, + ACTIONS(750), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(290), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(362), 3, + ACTIONS(370), 3, anon_sym_SEMI, anon_sym_CARET, anon_sym_asyncfor, - ACTIONS(360), 24, + ACTIONS(372), 24, + anon_sym_return, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_async, @@ -22897,24 +23034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [22773] = 5, - ACTIONS(354), 1, + [23012] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(739), 2, + ACTIONS(750), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(291), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(350), 3, + ACTIONS(360), 3, anon_sym_SEMI, anon_sym_CARET, anon_sym_asyncfor, - ACTIONS(352), 24, + ACTIONS(362), 24, + anon_sym_return, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_async, @@ -22935,24 +23072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [22816] = 5, - ACTIONS(354), 1, + [23055] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(741), 2, + ACTIONS(752), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(291), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(364), 3, + ACTIONS(376), 3, anon_sym_SEMI, anon_sym_CARET, anon_sym_asyncfor, - ACTIONS(366), 24, + ACTIONS(374), 24, + anon_sym_return, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_async, @@ -22973,299 +23110,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [22859] = 3, + [23098] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(334), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(19), 1, sym_range, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(336), 19, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22897] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(346), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, + ACTIONS(27), 1, anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(348), 19, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22935] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(748), 1, - anon_sym_LBRACE, - STATE(297), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(744), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(514), 1, anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(746), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [22977] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(748), 1, - anon_sym_LBRACE, - STATE(294), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(750), 10, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(725), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(752), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23019] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(754), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, + ACTIONS(729), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(756), 19, - anon_sym_async, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, sym_identifier, - sym_integer, + STATE(674), 1, + aux_sym_function_repeat1, + STATE(724), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23057] = 5, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23169] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(762), 1, - anon_sym_LBRACE, - STATE(297), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(758), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(760), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23099] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(765), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(767), 19, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23137] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(378), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(380), 19, - anon_sym_PIPE, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23174] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(769), 11, + ACTIONS(348), 13, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23276,8 +23179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_range, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(771), 18, + ACTIONS(350), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -23292,59 +23198,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [23211] = 3, + [23208] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(773), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(19), 1, sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(775), 18, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(565), 1, + anon_sym_RPAREN, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, + sym_identifier, + STATE(688), 1, + aux_sym_function_repeat1, + STATE(728), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23279] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, + sym_identifier, + ACTIONS(757), 1, + anon_sym_RPAREN, + STATE(708), 1, + aux_sym_function_repeat1, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23248] = 3, - ACTIONS(354), 1, + STATE(682), 2, + sym_value, + sym_index, + STATE(749), 2, + sym__function_expression_kind, + sym_function_call, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23348] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(402), 3, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(404), 26, - anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(759), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, + STATE(296), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(376), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(374), 23, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -23360,14 +23339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [23285] = 3, + [23391] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(777), 11, + ACTIONS(344), 13, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23378,8 +23356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_range, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(779), 18, + ACTIONS(346), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -23394,98 +23375,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [23322] = 17, + [23430] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - sym_identifier, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - aux_sym_command_argument_token2, - ACTIONS(790), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - anon_sym_RBRACE, - ACTIONS(795), 1, - sym_range, - ACTIONS(798), 1, - sym_integer, - ACTIONS(807), 1, - anon_sym_LBRACK, - ACTIONS(810), 1, - anon_sym_STAR, - ACTIONS(813), 1, - anon_sym_new, - STATE(304), 1, - aux_sym_match_repeat1, - STATE(765), 1, - sym_match_pattern, - ACTIONS(804), 2, - anon_sym_true, - anon_sym_false, - STATE(751), 2, - sym_value, - sym_enum_pattern, - ACTIONS(801), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23387] = 17, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(818), 1, - anon_sym_LPAREN, - ACTIONS(820), 1, - anon_sym_RBRACE, - ACTIONS(822), 1, sym_range, - ACTIONS(824), 1, - anon_sym_STAR, - STATE(304), 1, - aux_sym_match_repeat1, - STATE(765), 1, - sym_match_pattern, - ACTIONS(23), 2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, + sym_identifier, + ACTIONS(757), 1, + anon_sym_RPAREN, + STATE(708), 1, + aux_sym_function_repeat1, + STATE(744), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(751), 2, + STATE(682), 2, sym_value, - sym_enum_pattern, - ACTIONS(21), 5, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -23494,19 +23430,76 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [23452] = 3, - ACTIONS(354), 1, + [23501] = 19, + ACTIONS(3), 1, sym__comment, - ACTIONS(402), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(404), 25, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(516), 1, + anon_sym_RPAREN, + ACTIONS(725), 1, anon_sym_LPAREN, - anon_sym_PIPE, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, + sym_identifier, + STATE(675), 1, + aux_sym_function_repeat1, + STATE(733), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(682), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23572] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(748), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, + STATE(288), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(370), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(372), 23, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, sym_identifier, @@ -23524,118 +23517,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [23489] = 3, + [23615] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(826), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(587), 1, anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(828), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23526] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(374), 10, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(725), 1, anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, + ACTIONS(729), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(376), 19, - anon_sym_PIPE, - anon_sym_async, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, + STATE(691), 1, + aux_sym_function_repeat1, + STATE(744), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23563] = 17, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(818), 1, - anon_sym_LPAREN, - ACTIONS(822), 1, - sym_range, - ACTIONS(824), 1, - anon_sym_STAR, - ACTIONS(830), 1, - anon_sym_RBRACE, - STATE(304), 1, - aux_sym_match_repeat1, - STATE(765), 1, - sym_match_pattern, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(751), 2, + STATE(682), 2, sym_value, - sym_enum_pattern, - ACTIONS(21), 5, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -23644,110 +23572,50 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [23628] = 3, + [23686] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(832), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(834), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23664] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(836), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(838), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23700] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(818), 1, - anon_sym_LPAREN, - ACTIONS(822), 1, sym_range, - ACTIONS(824), 1, - anon_sym_STAR, - STATE(305), 1, - aux_sym_match_repeat1, - STATE(765), 1, - sym_match_pattern, - ACTIONS(23), 2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(494), 1, + anon_sym_RPAREN, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(755), 1, + sym_identifier, + STATE(712), 1, + aux_sym_function_repeat1, + STATE(726), 1, + sym_function_call, + STATE(767), 1, + sym__function_expression_kind, + STATE(772), 1, + sym_function_expression, + STATE(817), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(751), 2, + STATE(682), 2, sym_value, - sym_enum_pattern, - ACTIONS(21), 5, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -23756,45 +23624,10 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [23762] = 5, + [23757] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_PIPE, - ACTIONS(842), 8, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(840), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23802] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(844), 10, + ACTIONS(344), 11, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23804,8 +23637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_range, anon_sym_LBRACK, + anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(846), 18, + ACTIONS(346), 19, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -23817,141 +23652,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [23838] = 4, + [23795] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(426), 1, - anon_sym_PIPE, - ACTIONS(842), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, + ACTIONS(766), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(840), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23876] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(848), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(850), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [23912] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(816), 1, - sym_identifier, - ACTIONS(818), 1, - anon_sym_LPAREN, - ACTIONS(822), 1, - sym_range, - ACTIONS(824), 1, - anon_sym_STAR, STATE(309), 1, - aux_sym_match_repeat1, - STATE(765), 1, - sym_match_pattern, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(751), 2, - sym_value, - sym_enum_pattern, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23974] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(852), 10, + aux_sym_enum_definition_repeat2, + ACTIONS(762), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, - anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(854), 18, + ACTIONS(764), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -23966,11 +23693,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24010] = 3, + [23837] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(350), 19, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [23875] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(772), 1, + anon_sym_LBRACE, + STATE(306), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(768), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(770), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [23917] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(775), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(777), 19, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [23955] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(779), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(781), 19, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [23993] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(766), 1, + anon_sym_LBRACE, + STATE(306), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(783), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(785), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24035] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(384), 10, @@ -23984,7 +23889,9 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(382), 18, + ACTIONS(386), 19, + anon_sym_return, + anon_sym_PIPE, anon_sym_async, sym_identifier, sym_integer, @@ -23999,14 +23906,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24046] = 3, + [24072] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(856), 10, + ACTIONS(787), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(789), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24109] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(410), 25, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24146] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(791), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(793), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24183] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(795), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LPAREN, + ACTIONS(799), 1, + anon_sym_RBRACE, + ACTIONS(801), 1, + sym_range, + ACTIONS(803), 1, + anon_sym_STAR, + STATE(317), 1, + aux_sym_match_repeat1, + STATE(798), 1, + sym_match_pattern, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(797), 2, + sym_value, + sym_enum_pattern, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24248] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 3, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(410), 26, + anon_sym_return, + anon_sym_LPAREN, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24285] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(388), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24017,7 +24107,9 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(858), 18, + ACTIONS(390), 19, + anon_sym_return, + anon_sym_PIPE, anon_sym_async, sym_identifier, sym_integer, @@ -24032,14 +24124,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24082] = 3, + [24322] = 17, ACTIONS(3), 1, sym__comment, - ACTIONS(860), 10, + ACTIONS(805), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + aux_sym_command_argument_token2, + ACTIONS(814), 1, + anon_sym_LBRACE, + ACTIONS(817), 1, + anon_sym_RBRACE, + ACTIONS(819), 1, + sym_range, + ACTIONS(822), 1, + sym_integer, + ACTIONS(831), 1, + anon_sym_LBRACK, + ACTIONS(834), 1, + anon_sym_STAR, + ACTIONS(837), 1, + anon_sym_new, + STATE(317), 1, + aux_sym_match_repeat1, + STATE(798), 1, + sym_match_pattern, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(797), 2, + sym_value, + sym_enum_pattern, + ACTIONS(825), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24387] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(795), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_range, + ACTIONS(803), 1, + anon_sym_STAR, + ACTIONS(840), 1, + anon_sym_RBRACE, + STATE(317), 1, + aux_sym_match_repeat1, + STATE(798), 1, + sym_match_pattern, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(797), 2, + sym_value, + sym_enum_pattern, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24452] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(842), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(844), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24489] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(846), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(848), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24526] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(850), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24050,7 +24305,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(862), 18, + ACTIONS(852), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24065,14 +24321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24118] = 3, + [24562] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 10, + ACTIONS(719), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24083,7 +24338,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(344), 18, + ACTIONS(721), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24098,14 +24354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24154] = 3, + [24598] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(864), 10, + ACTIONS(854), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24116,7 +24371,177 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, + ACTIONS(856), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24634] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(436), 1, + anon_sym_SEMI, + ACTIONS(434), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24672] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(858), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(860), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24708] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(862), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(864), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24744] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(438), 1, + anon_sym_PIPE, + ACTIONS(868), 8, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(866), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24784] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(438), 1, + anon_sym_PIPE, + ACTIONS(868), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, ACTIONS(866), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24131,14 +24556,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24190] = 3, + [24822] = 16, ACTIONS(3), 1, sym__comment, - ACTIONS(693), 10, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(795), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_range, + ACTIONS(803), 1, + anon_sym_STAR, + STATE(314), 1, + aux_sym_match_repeat1, + STATE(798), 1, + sym_match_pattern, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(797), 2, + sym_value, + sym_enum_pattern, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24884] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(398), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24149,7 +24619,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(695), 18, + ACTIONS(396), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24164,11 +24635,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24226] = 3, + [24920] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(870), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(872), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24956] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(398), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(396), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [24992] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(874), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(876), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25028] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(440), 1, + anon_sym_PIPE, + ACTIONS(868), 8, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(866), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25068] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(440), 1, + anon_sym_PIPE, + ACTIONS(868), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(866), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25106] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(868), 10, @@ -24182,7 +24820,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(870), 18, + ACTIONS(866), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24197,14 +24836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24262] = 3, + [25142] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(842), 10, + ACTIONS(878), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24215,7 +24853,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(840), 18, + ACTIONS(880), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24230,26 +24869,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24298] = 4, + [25178] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(428), 1, - anon_sym_PIPE, - ACTIONS(842), 9, - ts_builtin_sym_end, + ACTIONS(414), 1, anon_sym_SEMI, + ACTIONS(398), 9, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(840), 18, + ACTIONS(396), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24264,14 +24903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24336] = 3, + [25216] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(872), 10, + ACTIONS(356), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24282,7 +24920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(874), 18, + ACTIONS(358), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24297,113 +24936,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24372] = 4, + [25252] = 16, ACTIONS(3), 1, sym__comment, - ACTIONS(400), 1, - anon_sym_SEMI, - ACTIONS(384), 9, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(382), 18, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(795), 1, + sym_identifier, + ACTIONS(797), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_range, + ACTIONS(803), 1, + anon_sym_STAR, + STATE(318), 1, + aux_sym_match_repeat1, + STATE(798), 1, + sym_match_pattern, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [24410] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(428), 1, - anon_sym_PIPE, - ACTIONS(842), 8, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(840), 18, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_enum, - anon_sym_struct, - anon_sym_new, - [24450] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_new, - ACTIONS(651), 1, - anon_sym_LBRACE, - ACTIONS(876), 1, - sym_identifier, - ACTIONS(878), 1, - anon_sym_LPAREN, - ACTIONS(880), 1, - sym_range, - STATE(91), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(89), 2, + STATE(797), 2, sym_value, - sym_index, - ACTIONS(21), 5, + sym_enum_pattern, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(81), 8, + STATE(88), 8, sym_float, sym_string, sym_boolean, @@ -24412,33 +24985,300 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [24506] = 11, + [25314] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(882), 10, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(884), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25350] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(886), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(888), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25386] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(434), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(432), 18, + anon_sym_return, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + anon_sym_new, + [25422] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_new, + ACTIONS(666), 1, + anon_sym_LBRACE, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(892), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + sym_range, + STATE(95), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(96), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25478] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(498), 1, + aux_sym_command_argument_token2, + ACTIONS(500), 1, + anon_sym_LBRACE, + ACTIONS(504), 1, + sym_integer, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_new, + ACTIONS(896), 1, + sym_identifier, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(900), 1, + sym_range, + STATE(478), 1, + sym_index_expression, + ACTIONS(508), 2, + anon_sym_true, + anon_sym_false, + STATE(477), 2, + sym_value, + sym_index, + ACTIONS(506), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(487), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25534] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(242), 1, + aux_sym_command_argument_token2, + ACTIONS(248), 1, + sym_integer, + ACTIONS(254), 1, + anon_sym_LBRACK, + ACTIONS(256), 1, + anon_sym_new, + ACTIONS(476), 1, + anon_sym_LBRACE, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + sym_range, + STATE(151), 1, + sym_index_expression, + ACTIONS(252), 2, + anon_sym_true, + anon_sym_false, + STATE(154), 2, + sym_value, + sym_index, + ACTIONS(250), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(153), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25590] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(644), 1, + aux_sym_command_argument_token2, + ACTIONS(646), 1, + anon_sym_LBRACE, + ACTIONS(650), 1, + sym_integer, + ACTIONS(656), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_new, + ACTIONS(908), 1, + sym_identifier, + ACTIONS(910), 1, + anon_sym_LPAREN, + ACTIONS(912), 1, + sym_range, + STATE(500), 1, + sym_index_expression, + ACTIONS(654), 2, + anon_sym_true, + anon_sym_false, + STATE(505), 2, + sym_value, + sym_index, + ACTIONS(652), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(503), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25646] = 11, + ACTIONS(3), 1, + sym__comment, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(274), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(304), 1, anon_sym_LT, - ACTIONS(882), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - STATE(64), 1, + STATE(66), 1, sym_assignment_operator, - STATE(646), 1, + STATE(659), 1, sym_type_specification, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(266), 5, + ACTIONS(298), 5, anon_sym_as, sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - ACTIONS(264), 12, + ACTIONS(296), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -24451,40 +25291,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24556] = 14, + [25696] = 14, ACTIONS(3), 1, sym__comment, - ACTIONS(192), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(200), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(206), 1, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_new, + ACTIONS(890), 1, + sym_identifier, + ACTIONS(894), 1, + sym_range, + ACTIONS(916), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(96), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(88), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25752] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(194), 1, + aux_sym_command_argument_token2, + ACTIONS(202), 1, + sym_integer, + ACTIONS(208), 1, anon_sym_LBRACK, ACTIONS(224), 1, anon_sym_new, - ACTIONS(462), 1, + ACTIONS(672), 1, anon_sym_LBRACE, - ACTIONS(884), 1, + ACTIONS(918), 1, sym_identifier, - ACTIONS(886), 1, + ACTIONS(920), 1, anon_sym_LPAREN, - ACTIONS(888), 1, + ACTIONS(922), 1, sym_range, - STATE(142), 1, + STATE(377), 1, sym_index_expression, - ACTIONS(204), 2, + ACTIONS(206), 2, anon_sym_true, anon_sym_false, - STATE(138), 2, + STATE(375), 2, sym_value, sym_index, - ACTIONS(202), 5, + ACTIONS(204), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(151), 8, + STATE(363), 8, sym_float, sym_string, sym_boolean, @@ -24493,178 +25375,10 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [24612] = 14, + [25808] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(11), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_integer, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - anon_sym_new, - ACTIONS(876), 1, - sym_identifier, - ACTIONS(880), 1, - sym_range, - ACTIONS(890), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_index_expression, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - STATE(89), 2, - sym_value, - sym_index, - ACTIONS(21), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(81), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24668] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(630), 1, - aux_sym_command_argument_token2, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - sym_integer, - ACTIONS(642), 1, - anon_sym_LBRACK, - ACTIONS(644), 1, - anon_sym_new, - ACTIONS(892), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_LPAREN, - ACTIONS(896), 1, - sym_range, - STATE(496), 1, - sym_index_expression, - ACTIONS(640), 2, - anon_sym_true, - anon_sym_false, - STATE(498), 2, - sym_value, - sym_index, - ACTIONS(638), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(514), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24724] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(480), 1, - aux_sym_command_argument_token2, - ACTIONS(482), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, - sym_integer, - ACTIONS(492), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_new, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, - anon_sym_LPAREN, - ACTIONS(902), 1, - sym_range, - STATE(489), 1, - sym_index_expression, - ACTIONS(490), 2, - anon_sym_true, - anon_sym_false, - STATE(488), 2, - sym_value, - sym_index, - ACTIONS(488), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(468), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24780] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(232), 1, - aux_sym_command_argument_token2, - ACTIONS(238), 1, - sym_integer, - ACTIONS(244), 1, - anon_sym_LBRACK, - ACTIONS(248), 1, - anon_sym_new, - ACTIONS(661), 1, - anon_sym_LBRACE, - ACTIONS(904), 1, - sym_identifier, - ACTIONS(906), 1, - anon_sym_LPAREN, - ACTIONS(908), 1, - sym_range, - STATE(350), 1, - sym_index_expression, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - STATE(351), 2, - sym_value, - sym_index, - ACTIONS(240), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(365), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24836] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(912), 7, + ACTIONS(926), 7, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, @@ -24672,7 +25386,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(910), 18, + ACTIONS(924), 18, + anon_sym_return, anon_sym_async, sym_identifier, sym_integer, @@ -24687,37 +25402,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_while, anon_sym_for, - anon_sym_return, anon_sym_enum, anon_sym_struct, anon_sym_new, - [24869] = 11, + [25841] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(274), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(304), 1, anon_sym_LT, - ACTIONS(882), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - STATE(59), 1, + STATE(51), 1, sym_assignment_operator, - STATE(650), 1, + STATE(665), 1, sym_type_specification, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(266), 5, + ACTIONS(298), 5, anon_sym_as, sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - ACTIONS(264), 11, + ACTIONS(296), 11, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_STAR, @@ -24729,10 +25443,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24918] = 4, + [25890] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(882), 1, + ACTIONS(928), 1, + anon_sym_elseif, + ACTIONS(930), 1, + anon_sym_else, + STATE(463), 1, + sym_else, + STATE(355), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(711), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(713), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [25930] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(914), 1, anon_sym_COLON_COLON, ACTIONS(272), 8, anon_sym_as, @@ -24743,7 +25490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(296), 15, + ACTIONS(270), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -24759,19 +25506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [24952] = 7, + [25964] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(914), 1, + ACTIONS(928), 1, anon_sym_elseif, - ACTIONS(916), 1, + ACTIONS(930), 1, anon_sym_else, - STATE(444), 1, + STATE(427), 1, sym_else, - STATE(349), 2, + STATE(365), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(693), 9, + ACTIONS(719), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -24781,7 +25528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(695), 10, + ACTIONS(721), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -24792,61 +25539,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [24992] = 7, + [26004] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(914), 1, - anon_sym_elseif, - ACTIONS(916), 1, - anon_sym_else, - STATE(414), 1, - sym_else, - STATE(341), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(701), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(703), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [25032] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(296), 1, anon_sym_COLON, - STATE(61), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + STATE(60), 1, sym_assignment_operator, - ACTIONS(276), 2, + ACTIONS(306), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(266), 6, + ACTIONS(298), 6, anon_sym_as, sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 12, + ACTIONS(296), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -24859,18 +25573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25074] = 5, - ACTIONS(354), 1, - sym__comment, + [26046] = 5, ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 1, anon_sym_SEMI, - ACTIONS(918), 2, + ACTIONS(932), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(344), 2, + STATE(382), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(366), 18, + ACTIONS(372), 18, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, @@ -24889,353 +25603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_new, - [25109] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(296), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25140] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25171] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(260), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25202] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(270), 1, - anon_sym_EQ, - ACTIONS(296), 1, - anon_sym_COLON, - STATE(62), 1, - sym_assignment_operator, - ACTIONS(276), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(266), 6, - anon_sym_as, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 11, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25243] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(921), 1, - anon_sym_elseif, - STATE(349), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(723), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(725), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [25278] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(332), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(330), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25309] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(296), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25340] = 5, - ACTIONS(350), 1, - anon_sym_SEMI, - ACTIONS(354), 1, - sym__comment, - ACTIONS(924), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(344), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_new, - [25375] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(288), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25406] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(284), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25437] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(926), 1, - anon_sym_LPAREN, - ACTIONS(322), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25470] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(258), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(256), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25501] = 3, + [26081] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(294), 7, @@ -25263,7 +25631,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25532] = 3, + [26112] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(302), 1, + anon_sym_EQ, + STATE(45), 1, + sym_assignment_operator, + ACTIONS(306), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(298), 6, + anon_sym_as, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 11, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26153] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(320), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26184] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26215] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(328), 7, @@ -25291,10 +25748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25563] = 3, + [26246] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(340), 7, + ACTIONS(316), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25302,7 +25759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(338), 16, + ACTIONS(314), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25319,25 +25776,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25594] = 5, - ACTIONS(354), 1, + [26277] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(362), 1, + ACTIONS(290), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(288), 16, anon_sym_SEMI, - ACTIONS(924), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(352), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 18, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26308] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(934), 1, + anon_sym_elseif, + STATE(365), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(741), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, anon_sym_LBRACE, anon_sym_RBRACE, - sym_identifier, sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(743), 11, + sym_identifier, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -25346,13 +25832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_else, anon_sym_new, - [25629] = 3, + [26343] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(304), 7, + ACTIONS(354), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25360,7 +25845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(302), 16, + ACTIONS(352), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25377,7 +25862,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25660] = 3, + [26374] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(332), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(330), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26405] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26436] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(358), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26467] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26498] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(937), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(371), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26533] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(940), 1, + anon_sym_LPAREN, + ACTIONS(336), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(334), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26566] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(278), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(276), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26597] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(282), 7, @@ -25405,10 +26089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25691] = 3, + [26628] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(314), 7, + ACTIONS(272), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25416,7 +26100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 16, + ACTIONS(270), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25433,10 +26117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25722] = 3, + [26659] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(308), 7, + ACTIONS(350), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25444,7 +26128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(306), 16, + ACTIONS(348), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25461,10 +26145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25753] = 3, + [26690] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(300), 7, + ACTIONS(342), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25472,7 +26156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(298), 16, + ACTIONS(340), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25489,19 +26173,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25784] = 5, - ACTIONS(354), 1, + [26721] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(362), 2, + ACTIONS(312), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26752] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(928), 2, + ACTIONS(942), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(371), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(360), 17, + ACTIONS(362), 17, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, @@ -25519,921 +26231,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25819] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25850] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(348), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25881] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(930), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(369), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25916] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(334), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25947] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(350), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(928), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(369), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25982] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(933), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(372), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 16, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26016] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(350), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(936), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(372), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 16, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26050] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(936), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(373), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 16, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26084] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(266), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26119] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(346), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(348), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [26148] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(765), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(767), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [26177] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(754), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(756), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [26206] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(342), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(344), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [26235] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(334), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(336), 11, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_new, - [26264] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(404), 19, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26293] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 1, - anon_sym_SEMI, - ACTIONS(404), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_new, - [26322] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(938), 1, - anon_sym_PIPE, - ACTIONS(266), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26354] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(234), 1, - sym_logic_operator, - STATE(235), 1, - sym_math_operator, - ACTIONS(418), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26386] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(234), 1, - sym_logic_operator, - STATE(235), 1, - sym_math_operator, - ACTIONS(398), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26418] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(266), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26450] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(382), 1, - sym_identifier, - ACTIONS(689), 1, - anon_sym_SEMI, - ACTIONS(940), 1, - anon_sym_as, - STATE(234), 1, - sym_logic_operator, - STATE(235), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26492] = 5, - ACTIONS(350), 1, - anon_sym_PIPE_PIPE, - ACTIONS(354), 1, - sym__comment, - ACTIONS(942), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(399), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 15, - anon_sym_as, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26524] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(691), 1, - anon_sym_PIPE, - ACTIONS(842), 8, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(840), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26556] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(404), 18, - anon_sym_as, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26584] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 1, - anon_sym_PIPE_PIPE, - ACTIONS(942), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(388), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 15, - anon_sym_as, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26616] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(378), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(380), 11, - anon_sym_PIPE, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26644] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(944), 1, - anon_sym_LBRACE, - STATE(393), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(758), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(760), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26676] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 5, - anon_sym_as, - anon_sym_PIPE, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(378), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26704] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(340), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(338), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26732] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(382), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_as, - STATE(234), 1, - sym_logic_operator, - STATE(235), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26772] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(947), 1, - anon_sym_LBRACE, - STATE(393), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(744), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(746), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26804] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(691), 1, - anon_sym_PIPE, - ACTIONS(842), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(840), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26834] = 5, - ACTIONS(354), 1, - sym__comment, + [26787] = 5, ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 1, + anon_sym_SEMI, + ACTIONS(944), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(380), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 18, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_new, + [26822] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26853] = 5, + ACTIONS(360), 1, + anon_sym_SEMI, + ACTIONS(364), 1, + sym__comment, + ACTIONS(932), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(380), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 18, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_new, + [26888] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(942), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(379), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26923] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(286), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(284), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26954] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(947), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(387), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 16, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26988] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(947), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(385), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 16, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27022] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 2, + anon_sym_SEMI, anon_sym_PIPE_PIPE, ACTIONS(949), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(399), 2, + STATE(387), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(366), 15, - anon_sym_as, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26866] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(376), 5, + ACTIONS(374), 16, anon_sym_as, anon_sym_PIPE, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(374), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RBRACE, + sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -26442,13 +26460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26894] = 3, + [27056] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(374), 9, + ACTIONS(779), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -26458,109 +26477,59 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(376), 11, + anon_sym_elseif, + ACTIONS(781), 11, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_new, + [27085] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(346), 11, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_new, + [27114] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(410), 19, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26922] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(947), 1, - anon_sym_LBRACE, - STATE(397), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(750), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(752), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [26954] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(300), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26984] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(868), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(870), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27011] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 1, - anon_sym_PIPE_PIPE, - ACTIONS(952), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(407), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 14, - anon_sym_RPAREN, - anon_sym_as, + anon_sym_RBRACE, + sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -26573,10 +26542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27042] = 3, + [27143] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(848), 9, + ACTIONS(775), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -26586,7 +26555,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(850), 10, + anon_sym_elseif, + ACTIONS(777), 11, sym_identifier, sym_integer, aux_sym_float_token1, @@ -26596,411 +26566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, + anon_sym_else, anon_sym_new, - [27069] = 5, - ACTIONS(350), 1, - anon_sym_PIPE_PIPE, - ACTIONS(354), 1, - sym__comment, - ACTIONS(952), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(450), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27100] = 3, + [27172] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(346), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(348), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27127] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(956), 1, - anon_sym_async, - ACTIONS(958), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(298), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27168] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(229), 1, - sym_logic_operator, - STATE(233), 1, - sym_math_operator, - ACTIONS(398), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27199] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(960), 1, - anon_sym_DASH_GT, - ACTIONS(414), 5, - anon_sym_as, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27228] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(962), 1, - anon_sym_DASH_GT, - ACTIONS(408), 5, - anon_sym_as, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27257] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(964), 1, - anon_sym_async, - ACTIONS(966), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(323), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27298] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(693), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(695), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27325] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(382), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_as, - STATE(229), 1, - sym_logic_operator, - STATE(233), 1, - sym_math_operator, - ACTIONS(384), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27364] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(852), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(854), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27391] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(384), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(382), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27418] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(968), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(266), 3, + ACTIONS(298), 4, anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27451] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(968), 1, - anon_sym_COLON_COLON, - ACTIONS(272), 4, - anon_sym_as, - anon_sym_COLON, + sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(296), 14, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27480] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(872), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(874), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27507] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(832), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(834), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27534] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(229), 1, - sym_logic_operator, - STATE(233), 1, - sym_math_operator, - ACTIONS(418), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 13, - anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -27013,19 +26597,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27565] = 5, - ACTIONS(354), 1, + [27207] = 3, + ACTIONS(3), 1, sym__comment, + ACTIONS(348), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(350), 11, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_new, + [27236] = 3, ACTIONS(364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(970), 2, + sym__comment, + ACTIONS(412), 1, + anon_sym_SEMI, + ACTIONS(410), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(423), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_new, + [27265] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(356), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(358), 11, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_new, + [27294] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(952), 1, + anon_sym_PIPE, + ACTIONS(298), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27326] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(868), 8, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(866), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [27358] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(214), 1, + sym_math_operator, + STATE(215), 1, + sym_logic_operator, + ACTIONS(428), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27390] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(214), 1, + sym_math_operator, + STATE(215), 1, + sym_logic_operator, + ACTIONS(394), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27422] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(390), 5, + anon_sym_as, + anon_sym_PIPE, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27450] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(432), 1, + sym_identifier, + ACTIONS(954), 1, + anon_sym_as, + STATE(214), 1, + sym_math_operator, + STATE(215), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(434), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27490] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(316), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27520] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(388), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(390), 11, + anon_sym_PIPE, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [27548] = 5, + ACTIONS(360), 1, + anon_sym_PIPE_PIPE, + ACTIONS(364), 1, + sym__comment, + ACTIONS(956), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(418), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(366), 14, + ACTIONS(362), 15, anon_sym_as, + anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -27039,82 +26917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27596] = 10, + [27580] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(956), 1, - anon_sym_async, ACTIONS(958), 1, anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(296), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27637] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(973), 1, - anon_sym_async, - ACTIONS(975), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(429), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27678] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(769), 9, + STATE(414), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(762), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, aux_sym_command_argument_token2, - anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(771), 10, + ACTIONS(764), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27125,20 +26944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [27705] = 3, + [27612] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(777), 9, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(406), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(768), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, aux_sym_command_argument_token2, - anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(779), 10, + ACTIONS(770), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27149,18 +26971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [27732] = 4, + [27644] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(266), 4, + ACTIONS(386), 5, anon_sym_as, + anon_sym_PIPE, sym_identifier, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 14, + ACTIONS(384), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS, @@ -27174,10 +26996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27761] = 3, + [27672] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(864), 9, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(868), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27198,65 +27022,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [27788] = 3, + [27702] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(773), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(775), 10, + ACTIONS(396), 1, sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [27815] = 10, - ACTIONS(3), 1, - sym__comment, ACTIONS(954), 1, anon_sym_as, - ACTIONS(977), 1, - anon_sym_async, - ACTIONS(979), 1, - anon_sym_LBRACE, - STATE(195), 1, + STATE(214), 1, sym_math_operator, - STATE(201), 1, + STATE(215), 1, sym_logic_operator, - STATE(377), 1, - sym_block, - ACTIONS(394), 2, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 5, + ACTIONS(398), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(404), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27856] = 3, + [27742] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(956), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(404), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 15, + anon_sym_as, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27774] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(860), 9, + ACTIONS(354), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27802] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(384), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27266,7 +27118,8 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(862), 10, + ACTIONS(386), 11, + anon_sym_PIPE, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27277,17 +27130,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [27883] = 4, + [27830] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(938), 1, - anon_sym_PIPE, - ACTIONS(266), 4, + ACTIONS(432), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_SEMI, + ACTIONS(954), 1, + anon_sym_as, + STATE(214), 1, + sym_math_operator, + STATE(215), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(434), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27872] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(958), 1, + anon_sym_LBRACE, + STATE(406), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(783), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(785), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [27904] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 4, anon_sym_as, sym_identifier, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 14, + ACTIONS(296), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -27302,24 +27216,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27912] = 8, + [27936] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(266), 1, - anon_sym_GT, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(981), 1, - anon_sym_LT, - ACTIONS(983), 1, - anon_sym_COLON_COLON, - STATE(688), 1, - sym_type_specification, - ACTIONS(268), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(264), 12, + ACTIONS(396), 1, + sym_identifier, + ACTIONS(701), 1, + anon_sym_SEMI, + ACTIONS(954), 1, anon_sym_as, + STATE(214), 1, + sym_math_operator, + STATE(215), 1, + sym_logic_operator, + ACTIONS(398), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27978] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(410), 18, + anon_sym_as, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_identifier, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -27328,22 +27269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27949] = 5, - ACTIONS(350), 1, - anon_sym_PIPE_PIPE, - ACTIONS(354), 1, + [28006] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(985), 2, + ACTIONS(376), 1, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(423), 2, + STATE(418), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(352), 14, + ACTIONS(374), 15, anon_sym_as, + anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -27357,16 +27300,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27980] = 4, + [28038] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(983), 1, + ACTIONS(348), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(350), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28065] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(886), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(888), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28092] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(850), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(852), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28119] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(968), 1, + anon_sym_async, + ACTIONS(970), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(307), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28160] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(972), 1, + anon_sym_async, + ACTIONS(974), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(337), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28201] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(976), 1, anon_sym_COLON_COLON, ACTIONS(272), 3, anon_sym_COLON, anon_sym_GT, anon_sym_LT, - ACTIONS(296), 15, + ACTIONS(270), 15, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_as, @@ -27382,36 +27459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28009] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 1, - anon_sym_PIPE_PIPE, - ACTIONS(985), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(435), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28040] = 3, + [28230] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(334), 9, + ACTIONS(874), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27421,7 +27472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(336), 10, + ACTIONS(876), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27432,10 +27483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28067] = 3, + [28257] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(836), 9, + ACTIONS(868), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27445,7 +27496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(838), 10, + ACTIONS(866), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27456,43 +27507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28094] = 10, + [28284] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(977), 1, - anon_sym_async, - ACTIONS(979), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(378), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28135] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(689), 1, + ACTIONS(862), 9, anon_sym_SEMI, - ACTIONS(384), 8, anon_sym_LPAREN, anon_sym_COMMA, aux_sym_command_argument_token2, @@ -27501,7 +27520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(382), 10, + ACTIONS(864), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27512,68 +27531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28164] = 6, + [28311] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(983), 1, - anon_sym_COLON_COLON, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28197] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(382), 1, - sym_identifier, - ACTIONS(384), 1, - anon_sym_RBRACE, - ACTIONS(689), 1, - anon_sym_SEMI, - ACTIONS(940), 1, - anon_sym_as, - STATE(229), 1, - sym_logic_operator, - STATE(233), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28238] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(844), 9, + ACTIONS(398), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27583,7 +27544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(846), 10, + ACTIONS(396), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27594,199 +27555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28265] = 3, + [28338] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(344), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [28292] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(954), 1, - anon_sym_as, - ACTIONS(973), 1, - anon_sym_async, - ACTIONS(975), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(421), 1, - sym_block, - ACTIONS(394), 2, + ACTIONS(354), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28333] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(987), 1, - anon_sym_PIPE, - ACTIONS(266), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28364] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(842), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(840), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [28391] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(301), 2, - sym_enum_definition, - sym_struct_definition, - STATE(745), 2, - sym_type, - sym_type_definition, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28432] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(999), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(450), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(366), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28463] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(856), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(858), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [28490] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(340), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(338), 17, + ACTIONS(352), 17, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_as, @@ -27804,41 +27579,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [28517] = 10, - ACTIONS(3), 1, + [28365] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(954), 1, + ACTIONS(376), 1, + anon_sym_PIPE_PIPE, + ACTIONS(978), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(430), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 14, + anon_sym_RPAREN, anon_sym_as, - ACTIONS(964), 1, - anon_sym_async, - ACTIONS(966), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - STATE(310), 1, - sym_block, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28558] = 3, + [28396] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(826), 9, + ACTIONS(858), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27848,7 +27618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(828), 10, + ACTIONS(860), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27859,138 +27629,1082 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28585] = 3, + [28423] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(282), 3, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 4, anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(280), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28611] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(300), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 14, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28639] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(348), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28665] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1002), 1, - anon_sym_DASH_GT, - ACTIONS(412), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(414), 11, sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [28693] = 4, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28452] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(298), 1, + anon_sym_GT, + ACTIONS(976), 1, + anon_sym_COLON_COLON, + ACTIONS(981), 1, + anon_sym_LT, + STATE(667), 1, + sym_type_specification, + ACTIONS(300), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(296), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28489] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(846), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(848), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28516] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(398), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(396), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28543] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(878), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(880), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28570] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(394), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 13, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28601] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(346), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28628] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(428), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 13, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28659] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COLON_COLON, + ACTIONS(298), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28692] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(870), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(872), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28719] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(882), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(884), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28746] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(854), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(856), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28773] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(842), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(844), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28800] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(787), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(789), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28827] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(968), 1, + anon_sym_async, + ACTIONS(970), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(308), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28868] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(983), 1, + anon_sym_COLON_COLON, + ACTIONS(272), 4, + anon_sym_as, + anon_sym_COLON, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28897] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(985), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(450), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28928] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(791), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(793), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [28955] = 5, + ACTIONS(360), 1, + anon_sym_PIPE_PIPE, + ACTIONS(364), 1, + sym__comment, + ACTIONS(985), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(430), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28986] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(952), 1, + anon_sym_PIPE, + ACTIONS(298), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29015] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(987), 1, + anon_sym_async, + ACTIONS(989), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(443), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29056] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(993), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(388), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29097] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(691), 1, + anon_sym_SEMI, + ACTIONS(434), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(432), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [29126] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(701), 1, + anon_sym_SEMI, + ACTIONS(398), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(396), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [29155] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(976), 1, + anon_sym_COLON_COLON, + ACTIONS(298), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29188] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(987), 1, + anon_sym_async, + ACTIONS(989), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(436), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29229] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(993), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(391), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29270] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(966), 1, + anon_sym_as, + ACTIONS(972), 1, + anon_sym_async, + ACTIONS(974), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + STATE(323), 1, + sym_block, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29311] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(995), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(462), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(372), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29342] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(997), 1, + anon_sym_DASH_GT, + ACTIONS(424), 5, + anon_sym_as, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29371] = 5, + ACTIONS(360), 1, + anon_sym_PIPE_PIPE, + ACTIONS(364), 1, + sym__comment, + ACTIONS(995), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(467), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(362), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29402] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(719), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(721), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [29429] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(356), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(358), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [29456] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(432), 1, + sym_identifier, + ACTIONS(954), 1, + anon_sym_as, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(434), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29495] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(999), 1, + anon_sym_PIPE, + ACTIONS(298), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29526] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(376), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1001), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(467), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29557] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(432), 1, + sym_identifier, + ACTIONS(434), 1, + anon_sym_RBRACE, + ACTIONS(691), 1, + anon_sym_SEMI, + ACTIONS(954), 1, + anon_sym_as, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29598] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1004), 1, anon_sym_DASH_GT, - ACTIONS(406), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(408), 11, + ACTIONS(418), 5, + anon_sym_as, sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [28721] = 4, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29627] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1010), 1, - anon_sym_COMMA, - ACTIONS(1008), 7, + ACTIONS(396), 1, + sym_identifier, + ACTIONS(398), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_SEMI, + ACTIONS(954), 1, + anon_sym_as, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29668] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(396), 1, + sym_identifier, + ACTIONS(954), 1, + anon_sym_as, + STATE(228), 1, + sym_math_operator, + STATE(229), 1, + sym_logic_operator, + ACTIONS(398), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29707] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(434), 9, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_COMMA, aux_sym_command_argument_token2, anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(1006), 10, + ACTIONS(432), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -28001,453 +28715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [28749] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1012), 1, - anon_sym_LT, - ACTIONS(446), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(448), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [28777] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(983), 1, - anon_sym_COLON_COLON, - ACTIONS(1014), 1, - anon_sym_RPAREN, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28811] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28837] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(424), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(422), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28863] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28891] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(296), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28917] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(258), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(256), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28943] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(300), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28969] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(308), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(306), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28995] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29021] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(334), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29047] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(404), 17, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29073] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1016), 1, - anon_sym_LT, - ACTIONS(448), 3, - anon_sym_as, - sym_identifier, - anon_sym_GT, - ACTIONS(446), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29101] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(448), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(446), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29127] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(444), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(442), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29153] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(268), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(264), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29183] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(440), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29209] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(304), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(302), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29235] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29261] = 3, + [29734] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(328), 2, @@ -28470,60 +28738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29287] = 3, + [29760] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(258), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(256), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29313] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(284), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29339] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 3, + ACTIONS(278), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(276), 15, anon_sym_LPAREN, anon_sym_async, anon_sym_LBRACE, @@ -28539,283 +28761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29365] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(414), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29391] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(436), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29417] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(288), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29443] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(432), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29469] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(296), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29495] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(332), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(330), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29521] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29547] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(260), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29573] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(334), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29599] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(260), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29625] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(294), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29651] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(348), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29677] = 3, + [29786] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(332), 3, @@ -28838,149 +28784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29703] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(280), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29729] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(296), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29755] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - ACTIONS(418), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29785] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(195), 1, - sym_math_operator, - STATE(201), 1, - sym_logic_operator, - ACTIONS(398), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29815] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29841] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(288), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29867] = 3, + [29812] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(286), 3, @@ -29003,39 +28807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29893] = 4, + [29838] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1018), 1, - anon_sym_LPAREN, - ACTIONS(322), 3, - anon_sym_as, + ACTIONS(272), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 14, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29921] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1020), 1, + ACTIONS(270), 16, anon_sym_LPAREN, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 15, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -29051,7 +28830,568 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29949] = 3, + [29864] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(342), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29890] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29916] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(448), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(446), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29942] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(320), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29968] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(280), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29994] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(466), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(464), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30020] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30046] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(320), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30072] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(313), 2, + sym_enum_definition, + sym_struct_definition, + STATE(819), 2, + sym_type, + sym_type_definition, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [30110] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30136] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(284), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30162] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(410), 17, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30188] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1014), 1, + anon_sym_LT, + ACTIONS(452), 3, + anon_sym_as, + sym_identifier, + anon_sym_GT, + ACTIONS(450), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30216] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(452), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30242] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30272] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30298] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(358), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30324] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(350), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30350] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(424), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30376] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(458), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(456), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30402] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(278), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(276), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30428] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(444), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30454] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(342), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30480] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30506] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(328), 3, @@ -29074,17 +29414,607 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29975] = 4, + [30532] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(987), 1, - anon_sym_PIPE, - ACTIONS(266), 4, + ACTIONS(316), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30558] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(350), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30584] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30610] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(316), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30638] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30664] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(290), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(288), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30690] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(462), 4, anon_sym_as, sym_identifier, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 13, + ACTIONS(460), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30716] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + ACTIONS(428), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30746] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1016), 1, + anon_sym_LPAREN, + ACTIONS(336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(334), 15, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30774] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30800] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(207), 1, + sym_logic_operator, + STATE(224), 1, + sym_math_operator, + ACTIONS(394), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30830] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(298), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(300), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(296), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30860] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(292), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30886] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(280), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30912] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1018), 1, + anon_sym_LPAREN, + ACTIONS(336), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(334), 14, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30940] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30966] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30992] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31018] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31044] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31072] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(332), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(330), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31098] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(358), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31124] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1024), 1, + anon_sym_COMMA, + ACTIONS(1022), 7, + anon_sym_LPAREN, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(1020), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [31152] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(292), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31178] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(976), 1, + anon_sym_COLON_COLON, + ACTIONS(1026), 1, + anon_sym_RPAREN, + ACTIONS(298), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31212] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(999), 1, + anon_sym_PIPE, + ACTIONS(298), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS, @@ -29098,14 +30028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30003] = 3, + [31240] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(272), 3, + ACTIONS(354), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(296), 15, + ACTIONS(352), 15, anon_sym_LPAREN, anon_sym_async, anon_sym_LBRACE, @@ -29121,181 +30051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30029] = 3, + [31266] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(304), 3, - anon_sym_as, + ACTIONS(290), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(302), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30055] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(266), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30085] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(340), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(338), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30111] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30137] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(308), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(306), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30163] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(300), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30189] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(378), 15, + ACTIONS(288), 16, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30214] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, anon_sym_COLON, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 13, - anon_sym_RPAREN, - anon_sym_as, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -29307,17 +30074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30243] = 3, + [31292] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(412), 6, + ACTIONS(1028), 1, + anon_sym_DASH_GT, + ACTIONS(422), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - ACTIONS(414), 11, + ACTIONS(424), 10, sym_identifier, anon_sym_any, anon_sym_bool, @@ -29328,198 +30097,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - anon_sym_option, - [30268] = 3, + [31319] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(532), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(1022), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [30293] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1024), 1, - anon_sym_RPAREN, - ACTIONS(1026), 1, - anon_sym_as, - STATE(230), 1, - sym_logic_operator, - STATE(231), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30328] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, - ACTIONS(1028), 1, - anon_sym_RPAREN, - STATE(230), 1, - sym_logic_operator, - STATE(231), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30363] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, ACTIONS(1030), 1, anon_sym_RPAREN, - STATE(230), 1, - sym_logic_operator, - STATE(231), 1, + ACTIONS(1032), 1, + anon_sym_as, + STATE(244), 1, sym_math_operator, - ACTIONS(394), 2, + STATE(245), 1, + sym_logic_operator, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 5, + ACTIONS(404), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30398] = 9, + [31354] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(390), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31379] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1034), 1, + anon_sym_DASH_GT, + ACTIONS(418), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31406] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(1032), 1, - sym_identifier, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1040), 1, - anon_sym_LBRACK, - ACTIONS(1046), 1, - anon_sym_option, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(1038), 2, - anon_sym_RPAREN, - anon_sym_GT, - ACTIONS(1043), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [30435] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(434), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(436), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [30460] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, anon_sym_as, - ACTIONS(1049), 1, - anon_sym_RPAREN, - STATE(230), 1, + ACTIONS(1036), 1, + anon_sym_LBRACE, + STATE(206), 1, sym_logic_operator, STATE(231), 1, sym_math_operator, - ACTIONS(394), 2, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 5, + ACTIONS(404), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30495] = 4, + [31441] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1051), 1, + STATE(206), 1, + sym_logic_operator, + STATE(231), 1, + sym_math_operator, + ACTIONS(394), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31470] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(530), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(1038), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [31495] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1040), 1, anon_sym_DASH_GT, - ACTIONS(414), 4, + ACTIONS(424), 4, anon_sym_as, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 12, + ACTIONS(422), 12, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -29532,82 +30265,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30522] = 3, + [31522] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(597), 7, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(1053), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_new, - [30547] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(446), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(448), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [30572] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(430), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(432), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [30597] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1055), 1, + ACTIONS(1042), 1, anon_sym_DASH_GT, - ACTIONS(414), 3, + ACTIONS(416), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(418), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31549] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1032), 1, + anon_sym_as, + ACTIONS(1044), 1, + anon_sym_RPAREN, + STATE(244), 1, + sym_math_operator, + STATE(245), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31584] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + anon_sym_DASH_GT, + ACTIONS(424), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 13, + ACTIONS(422), 13, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -29621,10 +30338,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30624] = 3, + [31611] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1059), 7, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31638] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(410), 16, + anon_sym_RPAREN, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31663] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(386), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31688] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 7, anon_sym_LPAREN, aux_sym_command_argument_token2, anon_sym_LBRACE, @@ -29632,7 +30416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(1057), 10, + ACTIONS(1048), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -29643,162 +30427,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [30649] = 4, + [31713] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1061), 1, - anon_sym_DASH_GT, - ACTIONS(408), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 13, + ACTIONS(1032), 1, + anon_sym_as, + ACTIONS(1052), 1, anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30676] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, - ACTIONS(1063), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_logic_operator, - STATE(219), 1, + STATE(244), 1, sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30711] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(218), 1, + STATE(245), 1, sym_logic_operator, - STATE(219), 1, - sym_math_operator, - ACTIONS(418), 2, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 13, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(404), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30740] = 4, + [31748] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30767] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(218), 1, - sym_logic_operator, - STATE(219), 1, - sym_math_operator, - ACTIONS(398), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30796] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, - ACTIONS(1065), 1, - anon_sym_RPAREN, - STATE(230), 1, - sym_logic_operator, - STATE(231), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30831] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 3, + ACTIONS(386), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(378), 14, + ACTIONS(384), 14, anon_sym_LPAREN, anon_sym_async, anon_sym_LBRACE, @@ -29813,12 +30476,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30856] = 3, - ACTIONS(354), 1, + [31773] = 5, + ACTIONS(3), 1, sym__comment, - ACTIONS(402), 1, + STATE(244), 1, + sym_math_operator, + STATE(245), 1, + sym_logic_operator, + ACTIONS(428), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(404), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31802] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1054), 1, + anon_sym_DASH_GT, + ACTIONS(418), 4, + anon_sym_as, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 12, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31829] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(244), 1, + sym_math_operator, + STATE(245), 1, + sym_logic_operator, + ACTIONS(394), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31858] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(390), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31883] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31912] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1032), 1, + anon_sym_as, + ACTIONS(1056), 1, + anon_sym_RPAREN, + STATE(244), 1, + sym_math_operator, + STATE(245), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31947] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1058), 1, + anon_sym_LT, + ACTIONS(450), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(452), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31974] = 3, + ACTIONS(364), 1, + sym__comment, + ACTIONS(412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(410), 16, anon_sym_as, aux_sym_command_argument_token1, aux_sym_command_argument_token2, @@ -29835,19 +30665,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30881] = 5, + [31999] = 4, ACTIONS(3), 1, sym__comment, - STATE(230), 1, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(298), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32026] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(206), 1, sym_logic_operator, STATE(231), 1, sym_math_operator, - ACTIONS(418), 2, + ACTIONS(428), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 13, - anon_sym_RPAREN, + ACTIONS(430), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -29859,202 +30712,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30910] = 5, + [32055] = 8, ACTIONS(3), 1, sym__comment, - STATE(230), 1, + ACTIONS(1032), 1, + anon_sym_as, + ACTIONS(1060), 1, + anon_sym_LBRACE, + STATE(206), 1, sym_logic_operator, STATE(231), 1, sym_math_operator, - ACTIONS(398), 2, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 13, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32090] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1032), 1, + anon_sym_as, + ACTIONS(1062), 1, anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30939] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1067), 1, - anon_sym_DASH_GT, - ACTIONS(408), 4, - anon_sym_as, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 12, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30966] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, - ACTIONS(1069), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_logic_operator, - STATE(219), 1, + STATE(244), 1, sym_math_operator, - ACTIONS(394), 2, + STATE(245), 1, + sym_logic_operator, + ACTIONS(408), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 5, + ACTIONS(404), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(392), 6, + ACTIONS(406), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31001] = 3, + [32125] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(376), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(374), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31026] = 3, - ACTIONS(354), 1, - sym__comment, - ACTIONS(402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(404), 16, - anon_sym_RPAREN, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31051] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(376), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(374), 14, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31076] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(266), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31103] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1071), 1, - anon_sym_LT, - ACTIONS(448), 2, - anon_sym_as, - anon_sym_GT, - ACTIONS(446), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31129] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1075), 6, + ACTIONS(629), 7, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, sym_range, anon_sym_LBRACK, - ACTIONS(1073), 10, + anon_sym_RBRACK, + ACTIONS(1064), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -30065,69 +30788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [31153] = 9, + [32150] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1077), 1, - anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31189] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1079), 1, - anon_sym_RPAREN, - STATE(555), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31225] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(424), 3, - anon_sym_as, + ACTIONS(466), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(422), 13, - anon_sym_async, + ACTIONS(464), 14, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -30140,7 +30809,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31249] = 3, + [32174] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1032), 1, + anon_sym_as, + STATE(244), 1, + sym_math_operator, + STATE(245), 1, + sym_logic_operator, + ACTIONS(408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(406), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32206] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(456), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(458), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32230] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(444), 3, @@ -30161,16 +30876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31273] = 3, + [32254] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(440), 2, + ACTIONS(298), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(438), 14, + ACTIONS(300), 2, + anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(296), 12, anon_sym_as, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -30182,369 +30898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31297] = 9, + [32280] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, + ACTIONS(450), 6, anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1081), 1, - anon_sym_GT, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31333] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1083), 1, anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31369] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1085), 1, - anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31405] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1087), 1, - anon_sym_RPAREN, - STATE(549), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31441] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(432), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31465] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1089), 1, - anon_sym_GT, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31501] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1091), 1, - anon_sym_RPAREN, - STATE(556), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31537] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1093), 1, - anon_sym_GT, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31573] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1095), 1, - anon_sym_GT, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31609] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(436), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31633] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1026), 1, - anon_sym_as, - STATE(230), 1, - sym_logic_operator, - STATE(231), 1, - sym_math_operator, - ACTIONS(394), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(392), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31665] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1097), 1, - anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31701] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(414), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31725] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(424), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(422), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31749] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1103), 1, anon_sym_COMMA, - ACTIONS(1101), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(1099), 11, + ACTIONS(452), 10, sym_identifier, anon_sym_any, anon_sym_bool, @@ -30555,213 +30919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - anon_sym_option, - [31775] = 9, + [32304] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1105), 1, - anon_sym_GT, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31811] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1107), 1, - anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31847] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(414), 3, - anon_sym_as, + ACTIONS(462), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31871] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1109), 1, - anon_sym_RPAREN, - STATE(568), 1, - sym_type, - STATE(581), 1, - aux_sym_type_repeat1, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31907] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1111), 1, - anon_sym_RPAREN, - STATE(568), 1, - sym_type, - STATE(570), 1, - aux_sym_type_repeat1, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31943] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(436), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31967] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1113), 1, - anon_sym_RPAREN, - STATE(565), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32003] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(266), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(268), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(264), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32029] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(442), 14, + ACTIONS(460), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -30776,7 +30940,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32053] = 3, + [32328] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(452), 1, + anon_sym_GT, + ACTIONS(1066), 1, + anon_sym_LT, + ACTIONS(450), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32354] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(448), 2, @@ -30797,24 +30983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32077] = 9, + [32378] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1068), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1071), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1076), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1115), 1, - anon_sym_GT, - STATE(522), 1, + STATE(570), 1, aux_sym_type_repeat1, - STATE(568), 1, + STATE(598), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1074), 2, + anon_sym_RPAREN, + anon_sym_GT, + ACTIONS(1079), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30824,14 +31009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32113] = 3, + [32412] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(440), 3, + ACTIONS(1082), 1, + anon_sym_LT, + ACTIONS(452), 2, anon_sym_as, anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 13, + ACTIONS(450), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -30845,41 +31031,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32137] = 9, + [32438] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - ACTIONS(1117), 1, - anon_sym_RPAREN, - STATE(522), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32173] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(448), 1, + ACTIONS(452), 3, + anon_sym_as, anon_sym_GT, - ACTIONS(1119), 1, anon_sym_LT, - ACTIONS(446), 14, + ACTIONS(450), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32462] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(452), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -30894,7 +31073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32199] = 3, + [32486] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(448), 3, @@ -30915,14 +31094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32223] = 3, + [32510] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(432), 3, + ACTIONS(458), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(430), 13, + ACTIONS(456), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -30936,17 +31115,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32247] = 3, + [32534] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1123), 6, + ACTIONS(462), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(460), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32558] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(424), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32582] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(424), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32606] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(458), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(456), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32630] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1086), 6, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, sym_range, anon_sym_LBRACK, - ACTIONS(1121), 10, + ACTIONS(1084), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -30957,22 +31220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_new, - [32271] = 8, + [32654] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, + ACTIONS(442), 6, anon_sym_LPAREN, - ACTIONS(993), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(559), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(444), 10, + sym_identifier, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30982,15 +31241,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32304] = 4, + [32678] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1125), 1, - anon_sym_RPAREN, - ACTIONS(440), 2, + ACTIONS(444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(438), 12, + ACTIONS(442), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32702] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(466), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(464), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32726] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1090), 6, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(1088), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_new, + [32750] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(422), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(424), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32774] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_RPAREN, + STATE(598), 1, + sym_type, + STATE(602), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32807] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1094), 1, + anon_sym_RPAREN, + STATE(597), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32840] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_GT, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32873] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1098), 1, + anon_sym_RPAREN, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32906] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1100), 1, + anon_sym_RPAREN, + STATE(598), 1, + sym_type, + STATE(605), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32939] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1102), 1, + anon_sym_RPAREN, + STATE(598), 1, + sym_type, + STATE(600), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32972] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1104), 1, + anon_sym_RPAREN, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33005] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1106), 1, + anon_sym_RPAREN, + ACTIONS(448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(446), 12, anon_sym_as, anon_sym_PLUS, anon_sym_DASH, @@ -31003,15 +31521,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32329] = 4, + [33030] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1127), 1, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1108), 1, anon_sym_RPAREN, - ACTIONS(440), 2, + STATE(589), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33063] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1110), 1, + anon_sym_RPAREN, + ACTIONS(448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(438), 12, + ACTIONS(446), 12, anon_sym_as, anon_sym_PLUS, anon_sym_DASH, @@ -31024,22 +31567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32354] = 8, + [33088] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(561), 1, + ACTIONS(1112), 1, + anon_sym_RPAREN, + STATE(592), 1, aux_sym_type_repeat1, - STATE(568), 1, + STATE(598), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31049,15 +31592,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32387] = 4, + [33121] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1129), 1, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1114), 1, anon_sym_RPAREN, - ACTIONS(440), 2, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33154] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1120), 1, + anon_sym_COMMA, + ACTIONS(1118), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(1116), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33179] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1122), 1, + anon_sym_RPAREN, + ACTIONS(448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(438), 12, + ACTIONS(446), 12, anon_sym_as, anon_sym_PLUS, anon_sym_DASH, @@ -31070,66 +31659,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32412] = 8, + [33204] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(562), 1, - aux_sym_type_repeat1, - STATE(568), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32445] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(568), 1, - sym_type, - STATE(569), 1, - aux_sym_type_repeat1, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32478] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1038), 4, - anon_sym_LPAREN, + ACTIONS(1124), 1, anon_sym_RPAREN, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33237] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, anon_sym_LBRACK, + ACTIONS(1126), 1, anon_sym_GT, - ACTIONS(1131), 11, - sym_identifier, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31139,16 +31709,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - anon_sym_option, - [32501] = 4, + [33270] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1133), 1, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1128), 1, anon_sym_RPAREN, - ACTIONS(440), 2, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33303] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1130), 1, + anon_sym_RPAREN, + ACTIONS(448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(438), 12, + ACTIONS(446), 12, anon_sym_as, anon_sym_PLUS, anon_sym_DASH, @@ -31161,22 +31755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32526] = 8, + [33328] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(554), 1, + ACTIONS(1132), 1, + anon_sym_GT, + STATE(570), 1, aux_sym_type_repeat1, - STATE(568), 1, + STATE(598), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31186,66 +31780,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32559] = 8, + [33361] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(568), 1, + ACTIONS(1134), 1, + anon_sym_RPAREN, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33394] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1136), 1, + anon_sym_GT, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33427] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1138), 1, + anon_sym_GT, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33460] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1140), 1, + anon_sym_GT, + STATE(570), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33493] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1142), 1, + anon_sym_RPAREN, + ACTIONS(448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(446), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33518] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(598), 1, + sym_type, + STATE(607), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33548] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(598), 1, + sym_type, + STATE(608), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33578] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(598), 1, + sym_type, + STATE(604), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33608] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(598), 1, + sym_type, + STATE(606), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33638] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(588), 1, + aux_sym_type_repeat1, + STATE(598), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33668] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(598), 1, + sym_type, + STATE(601), 1, + aux_sym_type_repeat1, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33698] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1074), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(1144), 10, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33720] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_LPAREN, + ACTIONS(1150), 1, + anon_sym_LBRACK, + STATE(255), 1, + sym_type, + ACTIONS(1152), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33747] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1154), 1, + sym_identifier, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_LBRACK, STATE(579), 1, - aux_sym_type_repeat1, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32592] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1135), 1, - anon_sym_RPAREN, - ACTIONS(440), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32617] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_LBRACK, - ACTIONS(1145), 1, - anon_sym_option, - STATE(485), 1, sym_type, - ACTIONS(1143), 9, + ACTIONS(1160), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31255,227 +32100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32647] = 7, + [33774] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(776), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32677] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACK, - ACTIONS(1155), 1, - anon_sym_option, - STATE(125), 1, - sym_type, - ACTIONS(1153), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32707] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACK, - ACTIONS(1155), 1, - anon_sym_option, - STATE(122), 1, - sym_type, - ACTIONS(1153), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32737] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1159), 1, - anon_sym_LPAREN, - ACTIONS(1161), 1, - anon_sym_LBRACK, - ACTIONS(1165), 1, - anon_sym_option, - STATE(584), 1, - sym_type, - ACTIONS(1163), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32767] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(763), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32797] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(774), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32827] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(739), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32857] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(769), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32887] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(523), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32917] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, STATE(753), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31485,20 +32121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32947] = 7, + [33801] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1167), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1171), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1175), 1, - anon_sym_option, - STATE(248), 1, + STATE(582), 1, sym_type, - ACTIONS(1173), 9, + ACTIONS(1160), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31508,20 +32142,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32977] = 7, + [33828] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1177), 1, + ACTIONS(1162), 1, sym_identifier, - ACTIONS(1179), 1, + ACTIONS(1164), 1, anon_sym_LPAREN, - ACTIONS(1181), 1, + ACTIONS(1166), 1, + anon_sym_LBRACK, + STATE(133), 1, + sym_type, + ACTIONS(1168), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33855] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(758), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33882] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(1185), 1, - anon_sym_option, STATE(563), 1, sym_type, - ACTIONS(1183), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31531,20 +32205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33007] = 7, + [33909] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1167), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(1171), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(1175), 1, - anon_sym_option, - STATE(243), 1, + STATE(564), 1, sym_type, - ACTIONS(1173), 9, + ACTIONS(1176), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31554,20 +32226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33037] = 7, + [33936] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(764), 1, + STATE(757), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31577,20 +32247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33067] = 7, + [33963] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1137), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(1145), 1, - anon_sym_option, - STATE(464), 1, + STATE(766), 1, sym_type, - ACTIONS(1143), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31600,20 +32268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33097] = 7, + [33990] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1172), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1174), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(792), 1, + STATE(575), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1176), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31623,20 +32289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33127] = 7, + [34017] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(768), 1, + STATE(762), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31646,20 +32310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33157] = 7, + [34044] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(528), 1, + STATE(754), 1, sym_type, - ACTIONS(995), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31669,227 +32331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33187] = 7, + [34071] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(989), 1, + ACTIONS(1154), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(993), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(742), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33217] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1167), 1, - sym_identifier, - ACTIONS(1169), 1, - anon_sym_LPAREN, - ACTIONS(1171), 1, - anon_sym_LBRACK, - ACTIONS(1175), 1, - anon_sym_option, - STATE(237), 1, - sym_type, - ACTIONS(1173), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33247] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, - anon_sym_LPAREN, - ACTIONS(1181), 1, - anon_sym_LBRACK, - ACTIONS(1185), 1, - anon_sym_option, - STATE(558), 1, - sym_type, - ACTIONS(1183), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33277] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(773), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33307] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_LBRACK, - ACTIONS(1145), 1, - anon_sym_option, - STATE(487), 1, - sym_type, - ACTIONS(1143), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33337] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(787), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33367] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(767), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33397] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1147), 1, - sym_identifier, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACK, - ACTIONS(1155), 1, - anon_sym_option, - STATE(126), 1, - sym_type, - ACTIONS(1153), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33427] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - sym_identifier, - ACTIONS(991), 1, - anon_sym_LPAREN, - ACTIONS(993), 1, - anon_sym_LBRACK, - ACTIONS(997), 1, - anon_sym_option, - STATE(818), 1, - sym_type, - ACTIONS(995), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33457] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, - anon_sym_LPAREN, - ACTIONS(1181), 1, - anon_sym_LBRACK, - ACTIONS(1185), 1, - anon_sym_option, STATE(567), 1, sym_type, - ACTIONS(1183), 9, + ACTIONS(1160), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31899,20 +32352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33487] = 7, + [34098] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1157), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1159), 1, + ACTIONS(1148), 1, anon_sym_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1150), 1, anon_sym_LBRACK, - ACTIONS(1165), 1, - anon_sym_option, - STATE(574), 1, + STATE(253), 1, sym_type, - ACTIONS(1163), 9, + ACTIONS(1152), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31922,20 +32373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33517] = 7, + [34125] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(1157), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(1159), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1010), 1, anon_sym_LBRACK, - ACTIONS(1165), 1, - anon_sym_option, - STATE(551), 1, + STATE(782), 1, sym_type, - ACTIONS(1163), 9, + ACTIONS(1012), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31945,2968 +32394,3092 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33547] = 5, - ACTIONS(354), 1, + [34152] = 6, + ACTIONS(3), 1, sym__comment, - ACTIONS(364), 2, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(581), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34179] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1178), 1, + sym_identifier, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_LBRACK, + STATE(499), 1, + sym_type, + ACTIONS(1184), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34206] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_LPAREN, + ACTIONS(1150), 1, + anon_sym_LBRACK, + STATE(249), 1, + sym_type, + ACTIONS(1152), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34233] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1162), 1, + sym_identifier, + ACTIONS(1164), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_LBRACK, + STATE(139), 1, + sym_type, + ACTIONS(1168), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34260] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1178), 1, + sym_identifier, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_LBRACK, + STATE(497), 1, + sym_type, + ACTIONS(1184), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34287] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1162), 1, + sym_identifier, + ACTIONS(1164), 1, + anon_sym_LPAREN, + ACTIONS(1166), 1, + anon_sym_LBRACK, + STATE(138), 1, + sym_type, + ACTIONS(1168), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34314] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, + anon_sym_LBRACK, + STATE(783), 1, + sym_type, + ACTIONS(1012), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34341] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1172), 1, + anon_sym_LPAREN, + ACTIONS(1174), 1, + anon_sym_LBRACK, + STATE(576), 1, + sym_type, + ACTIONS(1176), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34368] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1178), 1, + sym_identifier, + ACTIONS(1180), 1, + anon_sym_LPAREN, + ACTIONS(1182), 1, + anon_sym_LBRACK, + STATE(509), 1, + sym_type, + ACTIONS(1184), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34395] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(370), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1187), 2, + ACTIONS(1186), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(629), 2, + STATE(643), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(366), 3, + ACTIONS(372), 3, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [33568] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(362), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1190), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(631), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(360), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [33589] = 5, - ACTIONS(354), 1, - sym__comment, - ACTIONS(350), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1190), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(629), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(352), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [33610] = 5, - ACTIONS(354), 1, + [34416] = 5, + ACTIONS(364), 1, sym__comment, ACTIONS(360), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(362), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1192), 2, + ACTIONS(1186), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(634), 2, + STATE(644), 2, sym_command_argument, aux_sym_command_repeat1, - [33630] = 5, - ACTIONS(354), 1, + ACTIONS(362), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [34437] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(364), 2, + ACTIONS(376), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(366), 2, + ACTIONS(1188), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(644), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(374), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [34458] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(374), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(376), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1191), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(645), 2, + sym_command_argument, + aux_sym_command_repeat1, + [34478] = 5, + ACTIONS(364), 1, + sym__comment, + ACTIONS(360), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(362), 2, anon_sym_RBRACE, sym_identifier, ACTIONS(1194), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(633), 2, + STATE(645), 2, sym_command_argument, aux_sym_command_repeat1, - [33650] = 5, - ACTIONS(354), 1, + [34498] = 5, + ACTIONS(364), 1, sym__comment, - ACTIONS(350), 2, + ACTIONS(370), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(352), 2, + ACTIONS(372), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(1192), 2, + ACTIONS(1194), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(633), 2, + STATE(646), 2, sym_command_argument, aux_sym_command_repeat1, - [33670] = 3, - ACTIONS(354), 1, + [34518] = 3, + ACTIONS(364), 1, sym__comment, - ACTIONS(402), 2, + ACTIONS(412), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(404), 5, + ACTIONS(410), 5, anon_sym_COMMA, aux_sym_command_argument_token1, aux_sym_command_argument_token2, anon_sym_RBRACE, sym_identifier, - [33685] = 3, - ACTIONS(354), 1, + [34533] = 3, + ACTIONS(364), 1, sym__comment, - ACTIONS(402), 2, + ACTIONS(412), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(404), 4, + ACTIONS(410), 4, aux_sym_command_argument_token1, aux_sym_command_argument_token2, anon_sym_RBRACE, sym_identifier, - [33699] = 2, + [34547] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(378), 6, - anon_sym_SEMI, + ACTIONS(300), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1196), 1, anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - [33711] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1197), 1, - anon_sym_PIPE, - ACTIONS(842), 4, + ACTIONS(868), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [33727] = 6, + [34563] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(272), 1, anon_sym_COLON, - ACTIONS(278), 1, + ACTIONS(274), 1, anon_sym_COLON_COLON, - ACTIONS(1199), 1, + ACTIONS(1198), 1, anon_sym_LT, - STATE(688), 1, + STATE(667), 1, sym_type_specification, - ACTIONS(268), 2, + ACTIONS(300), 2, anon_sym_LPAREN, anon_sym_RPAREN, - [33747] = 2, + [34583] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(374), 6, + ACTIONS(388), 6, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACE, sym_identifier, - [33759] = 2, + [34595] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1201), 5, + ACTIONS(384), 6, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + [34607] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1200), 5, anon_sym_async, anon_sym_LBRACE, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [33770] = 2, + [34618] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1201), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1202), 1, + anon_sym_PIPE, + ACTIONS(868), 3, + anon_sym_SEMI, anon_sym_RBRACE, sym_identifier, - anon_sym_EQ, - [33781] = 3, + [34633] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1197), 1, + ACTIONS(1196), 1, anon_sym_PIPE, - ACTIONS(842), 4, + ACTIONS(868), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [33794] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1203), 1, - anon_sym_PIPE, - ACTIONS(842), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - sym_identifier, - [33809] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(50), 1, - sym_assignment_operator, - ACTIONS(276), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33821] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(56), 1, - sym_assignment_operator, - ACTIONS(276), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33833] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1207), 1, - anon_sym_LPAREN, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1205), 2, - anon_sym_RBRACE, - sym_identifier, - [33847] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1203), 1, - anon_sym_PIPE, - ACTIONS(842), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - sym_identifier, - [33859] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1211), 1, - anon_sym_EQ, - STATE(60), 1, - sym_assignment_operator, - ACTIONS(276), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33873] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(46), 1, - sym_assignment_operator, - ACTIONS(276), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33885] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(60), 1, - sym_assignment_operator, - ACTIONS(276), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33897] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(51), 1, - sym_assignment_operator, - ACTIONS(276), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [33909] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1213), 1, - anon_sym_async, - ACTIONS(1215), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_block, - [33922] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(272), 1, - anon_sym_COLON, - ACTIONS(278), 1, - anon_sym_COLON_COLON, - [33935] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1219), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [33948] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1223), 1, - anon_sym_EQ, - ACTIONS(1221), 2, - anon_sym_RBRACE, - sym_identifier, - [33959] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1225), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [33972] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1227), 1, - sym_identifier, - ACTIONS(1230), 1, - anon_sym_RBRACE, - STATE(658), 1, - aux_sym_enum_definition_repeat1, - [33985] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1213), 1, - anon_sym_async, - ACTIONS(1215), 1, - anon_sym_LBRACE, - STATE(491), 1, - sym_block, - [33998] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1232), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [34011] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1234), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [34024] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1236), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [34037] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1240), 1, - anon_sym_RBRACE, - STATE(698), 1, - aux_sym_map_repeat1, - [34050] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1242), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34063] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1244), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34076] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1246), 1, - anon_sym_RBRACE, - STATE(664), 1, - aux_sym_map_repeat1, - [34089] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(973), 1, - anon_sym_async, - ACTIONS(975), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_block, - [34102] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1248), 1, - anon_sym_RBRACE, - STATE(669), 1, - aux_sym_map_repeat1, - [34115] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1250), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34128] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1252), 1, - anon_sym_async, - ACTIONS(1254), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_block, - [34141] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1258), 1, - anon_sym_COMMA, - ACTIONS(1256), 2, - anon_sym_RBRACE, - sym_identifier, - [34152] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1260), 1, - anon_sym_async, - ACTIONS(1262), 1, - anon_sym_LBRACE, - STATE(347), 1, - sym_block, - [34165] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1266), 1, - anon_sym_COMMA, - ACTIONS(1264), 2, - anon_sym_RBRACE, - sym_identifier, - [34176] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1270), 1, - anon_sym_RBRACE, - STATE(683), 1, - aux_sym_struct_definition_repeat1, - [34189] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1260), 1, - anon_sym_async, - ACTIONS(1262), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_block, - [34202] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1252), 1, - anon_sym_async, - ACTIONS(1254), 1, - anon_sym_LBRACE, - STATE(501), 1, - sym_block, - [34215] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1217), 1, - sym_identifier, - ACTIONS(1272), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_function_repeat1, - [34228] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1274), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34241] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1276), 1, - anon_sym_RBRACE, - STATE(691), 1, - aux_sym_struct_definition_repeat1, - [34254] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1278), 1, - sym_identifier, - ACTIONS(1280), 1, - anon_sym_RBRACE, - STATE(658), 1, - aux_sym_enum_definition_repeat1, - [34267] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1199), 1, - anon_sym_LT, - ACTIONS(1282), 1, - anon_sym_EQ, - STATE(656), 1, - sym_type_specification, - [34280] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1278), 1, - sym_identifier, - ACTIONS(1284), 1, - anon_sym_RBRACE, - STATE(658), 1, - aux_sym_enum_definition_repeat1, - [34293] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1286), 1, - anon_sym_RBRACE, - STATE(691), 1, - aux_sym_struct_definition_repeat1, - [34306] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1288), 1, - anon_sym_RBRACE, - STATE(665), 1, - aux_sym_map_repeat1, - [34319] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(964), 1, - anon_sym_async, - ACTIONS(966), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym_block, - [34332] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1290), 1, - anon_sym_async, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_block, - [34345] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1294), 1, - anon_sym_EQ, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(814), 1, - sym_type_specification, - [34358] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1300), 1, - anon_sym_COMMA, - ACTIONS(1298), 2, - anon_sym_RPAREN, - sym_identifier, - [34369] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(737), 1, - anon_sym_RPAREN, - ACTIONS(1217), 1, - sym_identifier, - STATE(655), 1, - aux_sym_function_repeat1, - [34382] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1304), 1, - anon_sym_COMMA, - ACTIONS(1302), 2, - anon_sym_RBRACE, - sym_identifier, - [34393] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1221), 1, - anon_sym_RBRACE, - ACTIONS(1306), 1, - sym_identifier, - STATE(691), 1, - aux_sym_struct_definition_repeat1, - [34406] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 1, - sym_identifier, - ACTIONS(1309), 1, - anon_sym_RBRACE, - STATE(679), 1, - aux_sym_struct_definition_repeat1, - [34419] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1311), 1, - sym_identifier, - ACTIONS(1314), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34432] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(964), 1, - anon_sym_async, - ACTIONS(1316), 1, - anon_sym_LBRACE, - STATE(86), 1, - sym_block, - [34445] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1318), 1, - anon_sym_RBRACE, - STATE(678), 1, - aux_sym_map_repeat1, - [34458] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1320), 1, - anon_sym_async, - ACTIONS(1322), 1, - anon_sym_LBRACE, - STATE(153), 1, - sym_block, - [34471] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1320), 1, - anon_sym_async, - ACTIONS(1322), 1, - anon_sym_LBRACE, - STATE(145), 1, - sym_block, - [34484] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1324), 1, - anon_sym_RBRACE, - STATE(693), 1, - aux_sym_map_repeat1, - [34497] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1290), 1, - anon_sym_async, - ACTIONS(1292), 1, - anon_sym_LBRACE, - STATE(86), 1, - sym_block, - [34510] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(964), 1, - anon_sym_async, - ACTIONS(1316), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_block, - [34523] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1298), 1, - anon_sym_RPAREN, - ACTIONS(1326), 1, - sym_identifier, - STATE(701), 1, - aux_sym_function_repeat1, - [34536] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1246), 1, - anon_sym_RBRACE, - STATE(678), 1, - aux_sym_map_repeat1, - [34549] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 1, - anon_sym_COLON, - ACTIONS(268), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - [34560] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(675), 1, - sym_type_specification, - [34570] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1199), 1, - anon_sym_LT, - STATE(688), 1, - sym_type_specification, - [34580] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(502), 1, - sym_map, - [34590] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1230), 2, - anon_sym_RBRACE, - sym_identifier, - [34598] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1329), 2, - anon_sym_RBRACE, - sym_identifier, - [34606] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - anon_sym_RPAREN, - [34616] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - anon_sym_RPAREN, - [34626] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(694), 1, - sym_type_specification, - [34636] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_RPAREN, [34646] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1337), 2, + ACTIONS(1200), 5, anon_sym_RPAREN, - sym_identifier, - [34654] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1339), 1, - anon_sym_RPAREN, - [34664] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(700), 1, - sym_type_specification, - [34674] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(686), 1, - sym_type_specification, - [34684] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(482), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_map, - [34694] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(672), 1, - sym_type_specification, - [34704] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(711), 1, - anon_sym_LBRACE, - STATE(77), 1, - sym_map, - [34714] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1264), 2, + anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [34722] = 3, + anon_sym_EQ, + [34657] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1278), 1, - sym_identifier, - STATE(682), 1, - aux_sym_enum_definition_repeat1, - [34732] = 3, + ACTIONS(1204), 1, + anon_sym_EQ, + STATE(64), 1, + sym_assignment_operator, + ACTIONS(306), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34671] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(653), 1, - sym_type_specification, - [34742] = 3, + STATE(63), 1, + sym_assignment_operator, + ACTIONS(306), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34683] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(659), 1, - sym_type_specification, - [34752] = 3, + STATE(52), 1, + sym_assignment_operator, + ACTIONS(306), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34695] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1341), 1, + ACTIONS(1208), 1, anon_sym_LPAREN, - ACTIONS(1343), 1, - anon_sym_RPAREN, - [34762] = 3, + ACTIONS(1210), 1, + anon_sym_COMMA, + ACTIONS(1206), 2, + anon_sym_RBRACE, + sym_identifier, + [34709] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, + ACTIONS(1202), 1, + anon_sym_PIPE, + ACTIONS(868), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + sym_identifier, + [34721] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(55), 1, + sym_assignment_operator, + ACTIONS(306), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34733] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(64), 1, + sym_assignment_operator, + ACTIONS(306), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34745] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(59), 1, + sym_assignment_operator, + ACTIONS(306), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [34757] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1214), 1, + anon_sym_RBRACE, STATE(699), 1, - sym_type_specification, - [34772] = 2, + aux_sym_map_repeat1, + [34770] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1345), 2, - anon_sym_RBRACE, - sym_identifier, - [34780] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(77), 1, - sym_map, - [34790] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(696), 1, - sym_type_specification, - [34800] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(697), 1, - sym_type_specification, - [34810] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1296), 1, - anon_sym_LT, - STATE(670), 1, - sym_type_specification, - [34820] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_EQ_GT, - [34830] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1351), 2, - anon_sym_RBRACE, - sym_identifier, - [34838] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1353), 2, - anon_sym_RBRACE, - sym_identifier, - [34846] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1216), 2, anon_sym_RPAREN, - [34856] = 3, + sym_identifier, + [34781] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1296), 1, + ACTIONS(1220), 1, + anon_sym_async, + ACTIONS(1222), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_block, + [34794] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1220), 1, + anon_sym_async, + ACTIONS(1222), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_block, + [34807] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1224), 1, + anon_sym_async, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_block, + [34820] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1228), 1, + sym_identifier, + ACTIONS(1230), 1, + anon_sym_RBRACE, + STATE(696), 1, + aux_sym_struct_definition_repeat1, + [34833] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1232), 1, + sym_identifier, + ACTIONS(1235), 1, + anon_sym_RBRACE, + STATE(672), 1, + aux_sym_enum_definition_repeat1, + [34846] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1198), 1, + anon_sym_LT, + ACTIONS(1237), 1, + anon_sym_EQ, + STATE(685), 1, + sym_type_specification, + [34859] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1241), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [34872] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1243), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [34885] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1224), 1, + anon_sym_async, + ACTIONS(1226), 1, + anon_sym_LBRACE, + STATE(384), 1, + sym_block, + [34898] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [34911] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 1, + anon_sym_COLON, + ACTIONS(274), 1, + anon_sym_COLON_COLON, + ACTIONS(300), 1, + anon_sym_LPAREN, + [34924] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1247), 1, + anon_sym_RBRACE, + STATE(686), 1, + aux_sym_map_repeat1, + [34937] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1252), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [34950] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(972), 1, + anon_sym_async, + ACTIONS(1254), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_block, + [34963] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_COLON, + ACTIONS(300), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34974] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1216), 1, + anon_sym_RPAREN, + ACTIONS(1256), 1, + sym_identifier, + STATE(683), 1, + aux_sym_function_repeat1, + [34987] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1259), 1, + anon_sym_async, + ACTIONS(1261), 1, + anon_sym_LBRACE, + STATE(145), 1, + sym_block, + [35000] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(1263), 2, + anon_sym_RBRACE, + sym_identifier, + [35011] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1267), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [35024] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1271), 1, + anon_sym_COMMA, + ACTIONS(1269), 2, + anon_sym_RBRACE, + sym_identifier, + [35035] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1273), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [35048] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1277), 1, + anon_sym_COMMA, + ACTIONS(1275), 2, + anon_sym_RBRACE, + sym_identifier, + [35059] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(972), 1, + anon_sym_async, + ACTIONS(974), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_block, + [35072] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [35085] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(972), 1, + anon_sym_async, + ACTIONS(1254), 1, + anon_sym_LBRACE, + STATE(87), 1, + sym_block, + [35098] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1281), 1, + anon_sym_EQ, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(774), 1, + sym_type_specification, + [35111] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1259), 1, + anon_sym_async, + ACTIONS(1261), 1, + anon_sym_LBRACE, + STATE(147), 1, + sym_block, + [35124] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + anon_sym_async, + ACTIONS(1287), 1, + anon_sym_LBRACE, + STATE(87), 1, + sym_block, + [35137] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1228), 1, + sym_identifier, + ACTIONS(1289), 1, + anon_sym_RBRACE, + STATE(711), 1, + aux_sym_struct_definition_repeat1, + [35150] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1291), 1, + anon_sym_RBRACE, + STATE(714), 1, + aux_sym_map_repeat1, + [35163] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1293), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [35176] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [35189] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1297), 1, + sym_identifier, + ACTIONS(1299), 1, + anon_sym_RBRACE, + STATE(672), 1, + aux_sym_enum_definition_repeat1, + [35202] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1301), 1, + anon_sym_RBRACE, + STATE(677), 1, + aux_sym_map_repeat1, + [35215] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + anon_sym_async, + ACTIONS(1287), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_block, + [35228] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1305), 1, + anon_sym_COMMA, + ACTIONS(1303), 2, + anon_sym_RBRACE, + sym_identifier, + [35239] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1228), 1, + sym_identifier, + ACTIONS(1307), 1, + anon_sym_RBRACE, + STATE(711), 1, + aux_sym_struct_definition_repeat1, + [35252] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1297), 1, + sym_identifier, + ACTIONS(1309), 1, + anon_sym_RBRACE, + STATE(672), 1, + aux_sym_enum_definition_repeat1, + [35265] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(757), 1, + anon_sym_RPAREN, + ACTIONS(1239), 1, + sym_identifier, + STATE(708), 1, + aux_sym_function_repeat1, + [35278] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1311), 1, + anon_sym_RBRACE, + STATE(698), 1, + aux_sym_map_repeat1, + [35291] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [35304] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1315), 1, + anon_sym_async, + ACTIONS(1317), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_block, + [35317] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1228), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_RBRACE, + STATE(704), 1, + aux_sym_struct_definition_repeat1, + [35330] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(1321), 1, + sym_identifier, + STATE(711), 1, + aux_sym_struct_definition_repeat1, + [35343] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1239), 1, + sym_identifier, + ACTIONS(1324), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym_function_repeat1, + [35356] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(987), 1, + anon_sym_async, + ACTIONS(989), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_block, + [35369] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1326), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_map_repeat1, + [35382] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1212), 1, + sym_identifier, + ACTIONS(1291), 1, + anon_sym_RBRACE, + STATE(686), 1, + aux_sym_map_repeat1, + [35395] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1315), 1, + anon_sym_async, + ACTIONS(1317), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_block, + [35408] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1328), 1, + anon_sym_LPAREN, + ACTIONS(1330), 1, + anon_sym_EQ_GT, + [35418] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(684), 1, + sym_type_specification, + [35428] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(716), 1, + sym_type_specification, + [35438] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(709), 1, + sym_type_specification, + [35448] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1297), 1, + sym_identifier, + STATE(705), 1, + aux_sym_enum_definition_repeat1, + [35458] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(702), 1, + sym_type_specification, + [35468] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1198), 1, + anon_sym_LT, + STATE(667), 1, + sym_type_specification, + [35478] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1332), 1, + anon_sym_RPAREN, + [35488] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1275), 2, + anon_sym_RBRACE, + sym_identifier, + [35496] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_RPAREN, + [35506] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1235), 2, + anon_sym_RBRACE, + sym_identifier, + [35514] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1336), 1, + anon_sym_RPAREN, + [35524] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1338), 2, + anon_sym_RBRACE, + sym_identifier, + [35532] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1340), 2, + anon_sym_RBRACE, + sym_identifier, + [35540] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1342), 2, + anon_sym_RBRACE, + sym_identifier, + [35548] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1344), 2, + anon_sym_RBRACE, + sym_identifier, + [35556] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1346), 1, + anon_sym_RPAREN, + [35566] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(681), 1, + sym_type_specification, + [35576] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(500), 1, + anon_sym_LBRACE, + STATE(482), 1, + sym_map, + [35586] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(692), 1, + sym_type_specification, + [35596] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, anon_sym_LT, STATE(676), 1, sym_type_specification, - [34866] = 3, + [35606] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(139), 1, - sym_map, - [34876] = 3, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(670), 1, + sym_type_specification, + [35616] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(661), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_map, - [34886] = 3, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(669), 1, + sym_type_specification, + [35626] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1278), 1, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(668), 1, + sym_type_specification, + [35636] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1348), 2, + anon_sym_RPAREN, sym_identifier, - STATE(680), 1, + [35644] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(476), 1, + anon_sym_LBRACE, + STATE(160), 1, + sym_map, + [35654] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(666), 1, + anon_sym_LBRACE, + STATE(80), 1, + sym_map, + [35664] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 1, + anon_sym_LPAREN, + ACTIONS(1350), 1, + anon_sym_RPAREN, + [35674] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(672), 1, + anon_sym_LBRACE, + STATE(374), 1, + sym_map, + [35684] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(695), 1, + sym_type_specification, + [35694] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1297), 1, + sym_identifier, + STATE(700), 1, aux_sym_enum_definition_repeat1, - [34896] = 2, + [35704] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1357), 1, - anon_sym_RBRACK, - [34903] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1359), 1, - sym_command_text, - [34910] = 2, + ACTIONS(729), 1, + anon_sym_LBRACE, + STATE(80), 1, + sym_map, + [35714] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1361), 1, - sym_identifier, - [34917] = 2, + ACTIONS(1352), 1, + anon_sym_LPAREN, + ACTIONS(1354), 1, + anon_sym_RPAREN, + [35724] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1363), 1, - anon_sym_RBRACK, - [34924] = 2, + ACTIONS(646), 1, + anon_sym_LBRACE, + STATE(516), 1, + sym_map, + [35734] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1365), 1, + ACTIONS(1283), 1, + anon_sym_LT, + STATE(694), 1, + sym_type_specification, + [35744] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1356), 1, anon_sym_COLON, - [34931] = 2, + [35751] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1367), 1, - anon_sym_LPAREN, - [34938] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1369), 1, - anon_sym_RPAREN, - [34945] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1371), 1, - anon_sym_LBRACE, - [34952] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1373), 1, - sym_identifier, - [34959] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1375), 1, - anon_sym_LPAREN, - [34966] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1377), 1, - sym_identifier, - [34973] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1379), 1, - anon_sym_COLON_COLON, - [34980] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1381), 1, - anon_sym_EQ_GT, - [34987] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1383), 1, - sym_command_text, - [34994] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1093), 1, - anon_sym_RPAREN, - [35001] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1385), 1, - anon_sym_COLON, - [35008] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1387), 1, - anon_sym_LBRACE, - [35015] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1389), 1, - anon_sym_in, - [35022] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1391), 1, - sym_command_text, - [35029] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1393), 1, - anon_sym_EQ_GT, - [35036] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1395), 1, - sym_identifier, - [35043] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1397), 1, - anon_sym_LBRACE, - [35050] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1399), 1, - sym_identifier, - [35057] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1401), 1, - anon_sym_LPAREN, - [35064] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1115), 1, - anon_sym_RPAREN, - [35071] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1403), 1, - anon_sym_RBRACK, - [35078] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1405), 1, - anon_sym_EQ_GT, - [35085] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1407), 1, - sym_command_text, - [35092] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1095), 1, - anon_sym_RPAREN, - [35099] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1409), 1, - anon_sym_RBRACK, - [35106] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1411), 1, - anon_sym_RBRACK, - [35113] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1413), 1, - anon_sym_LBRACE, - [35120] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1415), 1, - sym_identifier, - [35127] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1417), 1, - anon_sym_LPAREN, - [35134] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1419), 1, + ACTIONS(1358), 1, anon_sym_GT, - [35141] = 2, + [35758] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1105), 1, - anon_sym_RPAREN, - [35148] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1421), 1, - anon_sym_LBRACE, - [35155] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1423), 1, - anon_sym_GT, - [35162] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1425), 1, - sym_command_text, - [35169] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1427), 1, - sym_identifier, - [35176] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1429), 1, - anon_sym_COLON, - [35183] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1431), 1, - anon_sym_LBRACE, - [35190] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1433), 1, - sym_identifier, - [35197] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1435), 1, - anon_sym_LPAREN, - [35204] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1437), 1, - sym_command_text, - [35211] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1439), 1, - anon_sym_LPAREN, - [35218] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1441), 1, - sym_command_text, - [35225] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1443), 1, - sym_identifier, - [35232] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1081), 1, - anon_sym_RPAREN, - [35239] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1445), 1, - sym_command_text, - [35246] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1447), 1, - anon_sym_LBRACE, - [35253] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1449), 1, - sym_identifier, - [35260] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1451), 1, - anon_sym_LPAREN, - [35267] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1453), 1, + ACTIONS(1360), 1, anon_sym_RBRACK, - [35274] = 2, + [35765] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1455), 1, + ACTIONS(1362), 1, + anon_sym_LPAREN, + [35772] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1364), 1, + sym_identifier, + [35779] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1366), 1, + anon_sym_RBRACK, + [35786] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1368), 1, + anon_sym_GT, + [35793] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1370), 1, + sym_identifier, + [35800] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1372), 1, anon_sym_COLON, - [35281] = 2, + [35807] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1374), 1, + sym_command_text, + [35814] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1457), 1, + ACTIONS(1376), 1, + anon_sym_RBRACK, + [35821] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1378), 1, sym_identifier, - [35288] = 2, + [35828] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1459), 1, - anon_sym_LBRACE, - [35295] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1461), 1, - anon_sym_LPAREN, - [35302] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1463), 1, - anon_sym_LBRACE, - [35309] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1465), 1, - anon_sym_LPAREN, - [35316] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1467), 1, - anon_sym_LBRACE, - [35323] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1469), 1, - sym_identifier, - [35330] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1341), 1, - anon_sym_LPAREN, - [35337] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1471), 1, - anon_sym_LPAREN, - [35344] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1473), 1, - sym_command_text, - [35351] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1475), 1, - sym_command_text, - [35358] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1477), 1, - sym_command_text, - [35365] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1479), 1, - anon_sym_in, - [35372] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1481), 1, - sym_command_text, - [35379] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1483), 1, - anon_sym_LPAREN, - [35386] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1485), 1, + ACTIONS(1380), 1, anon_sym_COLON, - [35393] = 2, - ACTIONS(3), 1, + [35835] = 2, + ACTIONS(364), 1, sym__comment, - ACTIONS(1487), 1, - ts_builtin_sym_end, - [35400] = 2, - ACTIONS(354), 1, - sym__comment, - ACTIONS(1489), 1, + ACTIONS(1382), 1, sym_command_text, - [35407] = 2, + [35842] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1491), 1, + ACTIONS(1384), 1, + anon_sym_RBRACK, + [35849] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1352), 1, + anon_sym_LPAREN, + [35856] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1386), 1, + anon_sym_LBRACE, + [35863] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1388), 1, sym_identifier, - [35414] = 2, + [35870] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1493), 1, + ACTIONS(1390), 1, + anon_sym_LPAREN, + [35877] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1392), 1, sym_identifier, - [35421] = 2, + [35884] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1495), 1, + ACTIONS(1394), 1, + anon_sym_LPAREN, + [35891] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1396), 1, + anon_sym_COLON, + [35898] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1398), 1, anon_sym_EQ, - [35428] = 2, - ACTIONS(354), 1, + [35905] = 2, + ACTIONS(364), 1, sym__comment, - ACTIONS(1497), 1, + ACTIONS(1400), 1, sym_command_text, - [35435] = 2, + [35912] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1499), 1, - sym_identifier, - [35442] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1501), 1, - sym_identifier, - [35449] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1089), 1, - anon_sym_RPAREN, - [35456] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1503), 1, - anon_sym_LPAREN, - [35463] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1505), 1, - sym_identifier, - [35470] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1507), 1, - anon_sym_LPAREN, - [35477] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1509), 1, - anon_sym_COLON, - [35484] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1511), 1, - anon_sym_LPAREN, - [35491] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1513), 1, - anon_sym_LPAREN, - [35498] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1515), 1, + ACTIONS(1402), 1, anon_sym_LBRACE, - [35505] = 2, + [35919] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1517), 1, - sym_identifier, - [35512] = 2, - ACTIONS(354), 1, + ACTIONS(1404), 1, + anon_sym_LBRACE, + [35926] = 2, + ACTIONS(3), 1, sym__comment, - ACTIONS(1519), 1, + ACTIONS(1406), 1, + sym_identifier, + [35933] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1408), 1, + anon_sym_LPAREN, + [35940] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1410), 1, sym_command_text, + [35947] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1412), 1, + sym_command_text, + [35954] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1414), 1, + anon_sym_RBRACK, + [35961] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1416), 1, + anon_sym_RBRACK, + [35968] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1418), 1, + ts_builtin_sym_end, + [35975] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1420), 1, + sym_identifier, + [35982] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1422), 1, + anon_sym_LBRACE, + [35989] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1424), 1, + sym_identifier, + [35996] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1426), 1, + anon_sym_LPAREN, + [36003] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1428), 1, + sym_command_text, + [36010] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1430), 1, + anon_sym_LBRACE, + [36017] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1432), 1, + sym_command_text, + [36024] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1434), 1, + anon_sym_COLON_COLON, + [36031] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1436), 1, + sym_identifier, + [36038] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1438), 1, + anon_sym_LBRACE, + [36045] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1440), 1, + sym_identifier, + [36052] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1442), 1, + anon_sym_LPAREN, + [36059] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1444), 1, + anon_sym_EQ_GT, + [36066] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1446), 1, + anon_sym_EQ_GT, + [36073] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1448), 1, + anon_sym_LBRACE, + [36080] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1450), 1, + anon_sym_LPAREN, + [36087] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1452), 1, + anon_sym_LBRACE, + [36094] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1454), 1, + anon_sym_LPAREN, + [36101] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1456), 1, + anon_sym_LBRACE, + [36108] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1458), 1, + sym_identifier, + [36115] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1460), 1, + sym_identifier, + [36122] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1462), 1, + sym_identifier, + [36129] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1464), 1, + sym_command_text, + [36136] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1466), 1, + sym_command_text, + [36143] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1468), 1, + sym_identifier, + [36150] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1470), 1, + anon_sym_in, + [36157] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1472), 1, + sym_command_text, + [36164] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1474), 1, + anon_sym_COLON, + [36171] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1476), 1, + sym_command_text, + [36178] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1478), 1, + sym_command_text, + [36185] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1480), 1, + anon_sym_EQ_GT, + [36192] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1482), 1, + anon_sym_LPAREN, + [36199] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1484), 1, + anon_sym_COLON, + [36206] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1486), 1, + sym_identifier, + [36213] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1488), 1, + anon_sym_RPAREN, + [36220] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1490), 1, + sym_command_text, + [36227] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1492), 1, + sym_identifier, + [36234] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1494), 1, + anon_sym_in, + [36241] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1496), 1, + sym_command_text, + [36248] = 2, + ACTIONS(364), 1, + sym__comment, + ACTIONS(1498), 1, + sym_command_text, + [36255] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1500), 1, + sym_identifier, + [36262] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1502), 1, + anon_sym_LBRACE, + [36269] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1504), 1, + sym_identifier, + [36276] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1506), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 138, - [SMALL_STATE(4)] = 276, - [SMALL_STATE(5)] = 414, - [SMALL_STATE(6)] = 549, - [SMALL_STATE(7)] = 684, - [SMALL_STATE(8)] = 819, - [SMALL_STATE(9)] = 954, - [SMALL_STATE(10)] = 1089, - [SMALL_STATE(11)] = 1224, - [SMALL_STATE(12)] = 1359, - [SMALL_STATE(13)] = 1494, - [SMALL_STATE(14)] = 1629, - [SMALL_STATE(15)] = 1764, - [SMALL_STATE(16)] = 1899, - [SMALL_STATE(17)] = 2034, - [SMALL_STATE(18)] = 2169, - [SMALL_STATE(19)] = 2304, - [SMALL_STATE(20)] = 2439, - [SMALL_STATE(21)] = 2574, - [SMALL_STATE(22)] = 2709, - [SMALL_STATE(23)] = 2844, - [SMALL_STATE(24)] = 2979, - [SMALL_STATE(25)] = 3114, - [SMALL_STATE(26)] = 3249, - [SMALL_STATE(27)] = 3384, - [SMALL_STATE(28)] = 3519, - [SMALL_STATE(29)] = 3654, - [SMALL_STATE(30)] = 3789, - [SMALL_STATE(31)] = 3924, - [SMALL_STATE(32)] = 4059, - [SMALL_STATE(33)] = 4194, - [SMALL_STATE(34)] = 4329, - [SMALL_STATE(35)] = 4464, - [SMALL_STATE(36)] = 4599, - [SMALL_STATE(37)] = 4734, - [SMALL_STATE(38)] = 4869, - [SMALL_STATE(39)] = 5004, - [SMALL_STATE(40)] = 5139, - [SMALL_STATE(41)] = 5274, - [SMALL_STATE(42)] = 5409, - [SMALL_STATE(43)] = 5544, - [SMALL_STATE(44)] = 5679, - [SMALL_STATE(45)] = 5814, - [SMALL_STATE(46)] = 5945, - [SMALL_STATE(47)] = 6076, - [SMALL_STATE(48)] = 6207, - [SMALL_STATE(49)] = 6338, - [SMALL_STATE(50)] = 6469, - [SMALL_STATE(51)] = 6600, - [SMALL_STATE(52)] = 6731, - [SMALL_STATE(53)] = 6862, - [SMALL_STATE(54)] = 6993, - [SMALL_STATE(55)] = 7124, - [SMALL_STATE(56)] = 7255, - [SMALL_STATE(57)] = 7386, - [SMALL_STATE(58)] = 7517, - [SMALL_STATE(59)] = 7648, - [SMALL_STATE(60)] = 7779, - [SMALL_STATE(61)] = 7910, - [SMALL_STATE(62)] = 8041, - [SMALL_STATE(63)] = 8172, - [SMALL_STATE(64)] = 8303, - [SMALL_STATE(65)] = 8434, - [SMALL_STATE(66)] = 8565, - [SMALL_STATE(67)] = 8696, - [SMALL_STATE(68)] = 8827, - [SMALL_STATE(69)] = 8958, - [SMALL_STATE(70)] = 9089, - [SMALL_STATE(71)] = 9220, - [SMALL_STATE(72)] = 9351, - [SMALL_STATE(73)] = 9407, - [SMALL_STATE(74)] = 9463, - [SMALL_STATE(75)] = 9535, - [SMALL_STATE(76)] = 9591, - [SMALL_STATE(77)] = 9647, - [SMALL_STATE(78)] = 9703, - [SMALL_STATE(79)] = 9775, - [SMALL_STATE(80)] = 9831, - [SMALL_STATE(81)] = 9889, - [SMALL_STATE(82)] = 9945, - [SMALL_STATE(83)] = 10001, - [SMALL_STATE(84)] = 10057, - [SMALL_STATE(85)] = 10129, - [SMALL_STATE(86)] = 10185, - [SMALL_STATE(87)] = 10241, - [SMALL_STATE(88)] = 10296, - [SMALL_STATE(89)] = 10353, - [SMALL_STATE(90)] = 10408, - [SMALL_STATE(91)] = 10463, - [SMALL_STATE(92)] = 10518, - [SMALL_STATE(93)] = 10572, - [SMALL_STATE(94)] = 10636, - [SMALL_STATE(95)] = 10700, - [SMALL_STATE(96)] = 10754, - [SMALL_STATE(97)] = 10808, - [SMALL_STATE(98)] = 10862, - [SMALL_STATE(99)] = 10919, - [SMALL_STATE(100)] = 10976, - [SMALL_STATE(101)] = 11033, - [SMALL_STATE(102)] = 11090, - [SMALL_STATE(103)] = 11147, - [SMALL_STATE(104)] = 11204, - [SMALL_STATE(105)] = 11262, - [SMALL_STATE(106)] = 11316, - [SMALL_STATE(107)] = 11368, - [SMALL_STATE(108)] = 11420, - [SMALL_STATE(109)] = 11485, - [SMALL_STATE(110)] = 11540, - [SMALL_STATE(111)] = 11607, - [SMALL_STATE(112)] = 11658, - [SMALL_STATE(113)] = 11709, - [SMALL_STATE(114)] = 11776, - [SMALL_STATE(115)] = 11829, - [SMALL_STATE(116)] = 11882, - [SMALL_STATE(117)] = 11933, - [SMALL_STATE(118)] = 11988, - [SMALL_STATE(119)] = 12043, - [SMALL_STATE(120)] = 12098, - [SMALL_STATE(121)] = 12163, - [SMALL_STATE(122)] = 12218, - [SMALL_STATE(123)] = 12268, - [SMALL_STATE(124)] = 12320, - [SMALL_STATE(125)] = 12374, - [SMALL_STATE(126)] = 12424, - [SMALL_STATE(127)] = 12474, - [SMALL_STATE(128)] = 12524, - [SMALL_STATE(129)] = 12574, - [SMALL_STATE(130)] = 12628, - [SMALL_STATE(131)] = 12678, - [SMALL_STATE(132)] = 12730, - [SMALL_STATE(133)] = 12780, - [SMALL_STATE(134)] = 12832, - [SMALL_STATE(135)] = 12884, - [SMALL_STATE(136)] = 12934, - [SMALL_STATE(137)] = 12983, - [SMALL_STATE(138)] = 13030, - [SMALL_STATE(139)] = 13077, - [SMALL_STATE(140)] = 13124, - [SMALL_STATE(141)] = 13171, - [SMALL_STATE(142)] = 13218, - [SMALL_STATE(143)] = 13265, - [SMALL_STATE(144)] = 13312, - [SMALL_STATE(145)] = 13359, - [SMALL_STATE(146)] = 13406, - [SMALL_STATE(147)] = 13453, - [SMALL_STATE(148)] = 13500, - [SMALL_STATE(149)] = 13547, - [SMALL_STATE(150)] = 13594, - [SMALL_STATE(151)] = 13657, - [SMALL_STATE(152)] = 13704, - [SMALL_STATE(153)] = 13751, - [SMALL_STATE(154)] = 13798, - [SMALL_STATE(155)] = 13845, - [SMALL_STATE(156)] = 13892, - [SMALL_STATE(157)] = 13939, - [SMALL_STATE(158)] = 14023, - [SMALL_STATE(159)] = 14107, - [SMALL_STATE(160)] = 14191, - [SMALL_STATE(161)] = 14275, - [SMALL_STATE(162)] = 14359, - [SMALL_STATE(163)] = 14443, - [SMALL_STATE(164)] = 14527, - [SMALL_STATE(165)] = 14611, - [SMALL_STATE(166)] = 14695, - [SMALL_STATE(167)] = 14779, - [SMALL_STATE(168)] = 14863, - [SMALL_STATE(169)] = 14947, - [SMALL_STATE(170)] = 15031, - [SMALL_STATE(171)] = 15115, - [SMALL_STATE(172)] = 15199, - [SMALL_STATE(173)] = 15283, - [SMALL_STATE(174)] = 15367, - [SMALL_STATE(175)] = 15451, - [SMALL_STATE(176)] = 15535, - [SMALL_STATE(177)] = 15619, - [SMALL_STATE(178)] = 15703, - [SMALL_STATE(179)] = 15787, - [SMALL_STATE(180)] = 15871, - [SMALL_STATE(181)] = 15955, - [SMALL_STATE(182)] = 16039, - [SMALL_STATE(183)] = 16123, - [SMALL_STATE(184)] = 16207, - [SMALL_STATE(185)] = 16291, - [SMALL_STATE(186)] = 16375, - [SMALL_STATE(187)] = 16459, - [SMALL_STATE(188)] = 16543, - [SMALL_STATE(189)] = 16627, - [SMALL_STATE(190)] = 16711, - [SMALL_STATE(191)] = 16762, - [SMALL_STATE(192)] = 16817, - [SMALL_STATE(193)] = 16865, - [SMALL_STATE(194)] = 16943, - [SMALL_STATE(195)] = 17021, - [SMALL_STATE(196)] = 17099, - [SMALL_STATE(197)] = 17177, - [SMALL_STATE(198)] = 17255, - [SMALL_STATE(199)] = 17303, - [SMALL_STATE(200)] = 17351, - [SMALL_STATE(201)] = 17429, - [SMALL_STATE(202)] = 17507, - [SMALL_STATE(203)] = 17585, - [SMALL_STATE(204)] = 17629, - [SMALL_STATE(205)] = 17707, - [SMALL_STATE(206)] = 17785, - [SMALL_STATE(207)] = 17863, - [SMALL_STATE(208)] = 17909, - [SMALL_STATE(209)] = 17987, - [SMALL_STATE(210)] = 18065, - [SMALL_STATE(211)] = 18143, - [SMALL_STATE(212)] = 18221, - [SMALL_STATE(213)] = 18299, - [SMALL_STATE(214)] = 18377, - [SMALL_STATE(215)] = 18455, - [SMALL_STATE(216)] = 18533, - [SMALL_STATE(217)] = 18611, - [SMALL_STATE(218)] = 18689, - [SMALL_STATE(219)] = 18767, - [SMALL_STATE(220)] = 18845, - [SMALL_STATE(221)] = 18923, - [SMALL_STATE(222)] = 19001, - [SMALL_STATE(223)] = 19049, - [SMALL_STATE(224)] = 19127, - [SMALL_STATE(225)] = 19205, - [SMALL_STATE(226)] = 19249, - [SMALL_STATE(227)] = 19295, - [SMALL_STATE(228)] = 19373, - [SMALL_STATE(229)] = 19419, - [SMALL_STATE(230)] = 19497, - [SMALL_STATE(231)] = 19575, - [SMALL_STATE(232)] = 19653, - [SMALL_STATE(233)] = 19731, - [SMALL_STATE(234)] = 19809, - [SMALL_STATE(235)] = 19887, - [SMALL_STATE(236)] = 19965, - [SMALL_STATE(237)] = 20043, - [SMALL_STATE(238)] = 20086, - [SMALL_STATE(239)] = 20133, - [SMALL_STATE(240)] = 20176, - [SMALL_STATE(241)] = 20223, - [SMALL_STATE(242)] = 20270, - [SMALL_STATE(243)] = 20313, - [SMALL_STATE(244)] = 20356, - [SMALL_STATE(245)] = 20399, - [SMALL_STATE(246)] = 20446, - [SMALL_STATE(247)] = 20493, - [SMALL_STATE(248)] = 20540, - [SMALL_STATE(249)] = 20583, - [SMALL_STATE(250)] = 20628, - [SMALL_STATE(251)] = 20673, - [SMALL_STATE(252)] = 20716, - [SMALL_STATE(253)] = 20762, - [SMALL_STATE(254)] = 20820, - [SMALL_STATE(255)] = 20878, - [SMALL_STATE(256)] = 20924, - [SMALL_STATE(257)] = 20980, - [SMALL_STATE(258)] = 21026, - [SMALL_STATE(259)] = 21072, - [SMALL_STATE(260)] = 21118, - [SMALL_STATE(261)] = 21164, - [SMALL_STATE(262)] = 21206, - [SMALL_STATE(263)] = 21264, - [SMALL_STATE(264)] = 21309, - [SMALL_STATE(265)] = 21350, - [SMALL_STATE(266)] = 21391, - [SMALL_STATE(267)] = 21434, - [SMALL_STATE(268)] = 21483, - [SMALL_STATE(269)] = 21524, - [SMALL_STATE(270)] = 21573, - [SMALL_STATE(271)] = 21614, - [SMALL_STATE(272)] = 21688, - [SMALL_STATE(273)] = 21762, - [SMALL_STATE(274)] = 21836, - [SMALL_STATE(275)] = 21910, - [SMALL_STATE(276)] = 21984, - [SMALL_STATE(277)] = 22028, - [SMALL_STATE(278)] = 22099, - [SMALL_STATE(279)] = 22142, - [SMALL_STATE(280)] = 22213, - [SMALL_STATE(281)] = 22256, - [SMALL_STATE(282)] = 22295, - [SMALL_STATE(283)] = 22364, - [SMALL_STATE(284)] = 22435, - [SMALL_STATE(285)] = 22474, - [SMALL_STATE(286)] = 22545, - [SMALL_STATE(287)] = 22588, - [SMALL_STATE(288)] = 22659, - [SMALL_STATE(289)] = 22730, - [SMALL_STATE(290)] = 22773, - [SMALL_STATE(291)] = 22816, - [SMALL_STATE(292)] = 22859, - [SMALL_STATE(293)] = 22897, - [SMALL_STATE(294)] = 22935, - [SMALL_STATE(295)] = 22977, - [SMALL_STATE(296)] = 23019, - [SMALL_STATE(297)] = 23057, - [SMALL_STATE(298)] = 23099, - [SMALL_STATE(299)] = 23137, - [SMALL_STATE(300)] = 23174, - [SMALL_STATE(301)] = 23211, - [SMALL_STATE(302)] = 23248, - [SMALL_STATE(303)] = 23285, - [SMALL_STATE(304)] = 23322, - [SMALL_STATE(305)] = 23387, - [SMALL_STATE(306)] = 23452, - [SMALL_STATE(307)] = 23489, - [SMALL_STATE(308)] = 23526, - [SMALL_STATE(309)] = 23563, - [SMALL_STATE(310)] = 23628, - [SMALL_STATE(311)] = 23664, - [SMALL_STATE(312)] = 23700, - [SMALL_STATE(313)] = 23762, - [SMALL_STATE(314)] = 23802, - [SMALL_STATE(315)] = 23838, - [SMALL_STATE(316)] = 23876, - [SMALL_STATE(317)] = 23912, - [SMALL_STATE(318)] = 23974, - [SMALL_STATE(319)] = 24010, - [SMALL_STATE(320)] = 24046, - [SMALL_STATE(321)] = 24082, - [SMALL_STATE(322)] = 24118, - [SMALL_STATE(323)] = 24154, - [SMALL_STATE(324)] = 24190, - [SMALL_STATE(325)] = 24226, - [SMALL_STATE(326)] = 24262, - [SMALL_STATE(327)] = 24298, - [SMALL_STATE(328)] = 24336, - [SMALL_STATE(329)] = 24372, - [SMALL_STATE(330)] = 24410, - [SMALL_STATE(331)] = 24450, - [SMALL_STATE(332)] = 24506, - [SMALL_STATE(333)] = 24556, - [SMALL_STATE(334)] = 24612, - [SMALL_STATE(335)] = 24668, - [SMALL_STATE(336)] = 24724, - [SMALL_STATE(337)] = 24780, - [SMALL_STATE(338)] = 24836, - [SMALL_STATE(339)] = 24869, - [SMALL_STATE(340)] = 24918, - [SMALL_STATE(341)] = 24952, - [SMALL_STATE(342)] = 24992, - [SMALL_STATE(343)] = 25032, - [SMALL_STATE(344)] = 25074, - [SMALL_STATE(345)] = 25109, - [SMALL_STATE(346)] = 25140, - [SMALL_STATE(347)] = 25171, - [SMALL_STATE(348)] = 25202, - [SMALL_STATE(349)] = 25243, - [SMALL_STATE(350)] = 25278, - [SMALL_STATE(351)] = 25309, - [SMALL_STATE(352)] = 25340, - [SMALL_STATE(353)] = 25375, - [SMALL_STATE(354)] = 25406, - [SMALL_STATE(355)] = 25437, - [SMALL_STATE(356)] = 25470, - [SMALL_STATE(357)] = 25501, - [SMALL_STATE(358)] = 25532, - [SMALL_STATE(359)] = 25563, - [SMALL_STATE(360)] = 25594, - [SMALL_STATE(361)] = 25629, - [SMALL_STATE(362)] = 25660, - [SMALL_STATE(363)] = 25691, - [SMALL_STATE(364)] = 25722, - [SMALL_STATE(365)] = 25753, - [SMALL_STATE(366)] = 25784, - [SMALL_STATE(367)] = 25819, - [SMALL_STATE(368)] = 25850, - [SMALL_STATE(369)] = 25881, - [SMALL_STATE(370)] = 25916, - [SMALL_STATE(371)] = 25947, - [SMALL_STATE(372)] = 25982, - [SMALL_STATE(373)] = 26016, - [SMALL_STATE(374)] = 26050, - [SMALL_STATE(375)] = 26084, - [SMALL_STATE(376)] = 26119, - [SMALL_STATE(377)] = 26148, - [SMALL_STATE(378)] = 26177, - [SMALL_STATE(379)] = 26206, - [SMALL_STATE(380)] = 26235, - [SMALL_STATE(381)] = 26264, - [SMALL_STATE(382)] = 26293, - [SMALL_STATE(383)] = 26322, - [SMALL_STATE(384)] = 26354, - [SMALL_STATE(385)] = 26386, - [SMALL_STATE(386)] = 26418, - [SMALL_STATE(387)] = 26450, - [SMALL_STATE(388)] = 26492, - [SMALL_STATE(389)] = 26524, - [SMALL_STATE(390)] = 26556, - [SMALL_STATE(391)] = 26584, - [SMALL_STATE(392)] = 26616, - [SMALL_STATE(393)] = 26644, - [SMALL_STATE(394)] = 26676, - [SMALL_STATE(395)] = 26704, - [SMALL_STATE(396)] = 26732, - [SMALL_STATE(397)] = 26772, - [SMALL_STATE(398)] = 26804, - [SMALL_STATE(399)] = 26834, - [SMALL_STATE(400)] = 26866, - [SMALL_STATE(401)] = 26894, - [SMALL_STATE(402)] = 26922, - [SMALL_STATE(403)] = 26954, - [SMALL_STATE(404)] = 26984, - [SMALL_STATE(405)] = 27011, - [SMALL_STATE(406)] = 27042, - [SMALL_STATE(407)] = 27069, - [SMALL_STATE(408)] = 27100, - [SMALL_STATE(409)] = 27127, - [SMALL_STATE(410)] = 27168, - [SMALL_STATE(411)] = 27199, - [SMALL_STATE(412)] = 27228, - [SMALL_STATE(413)] = 27257, - [SMALL_STATE(414)] = 27298, - [SMALL_STATE(415)] = 27325, - [SMALL_STATE(416)] = 27364, - [SMALL_STATE(417)] = 27391, - [SMALL_STATE(418)] = 27418, - [SMALL_STATE(419)] = 27451, - [SMALL_STATE(420)] = 27480, - [SMALL_STATE(421)] = 27507, - [SMALL_STATE(422)] = 27534, - [SMALL_STATE(423)] = 27565, - [SMALL_STATE(424)] = 27596, - [SMALL_STATE(425)] = 27637, - [SMALL_STATE(426)] = 27678, - [SMALL_STATE(427)] = 27705, - [SMALL_STATE(428)] = 27732, - [SMALL_STATE(429)] = 27761, - [SMALL_STATE(430)] = 27788, - [SMALL_STATE(431)] = 27815, - [SMALL_STATE(432)] = 27856, - [SMALL_STATE(433)] = 27883, - [SMALL_STATE(434)] = 27912, - [SMALL_STATE(435)] = 27949, - [SMALL_STATE(436)] = 27980, - [SMALL_STATE(437)] = 28009, - [SMALL_STATE(438)] = 28040, - [SMALL_STATE(439)] = 28067, - [SMALL_STATE(440)] = 28094, - [SMALL_STATE(441)] = 28135, - [SMALL_STATE(442)] = 28164, - [SMALL_STATE(443)] = 28197, - [SMALL_STATE(444)] = 28238, - [SMALL_STATE(445)] = 28265, - [SMALL_STATE(446)] = 28292, - [SMALL_STATE(447)] = 28333, - [SMALL_STATE(448)] = 28364, - [SMALL_STATE(449)] = 28391, - [SMALL_STATE(450)] = 28432, - [SMALL_STATE(451)] = 28463, - [SMALL_STATE(452)] = 28490, - [SMALL_STATE(453)] = 28517, - [SMALL_STATE(454)] = 28558, - [SMALL_STATE(455)] = 28585, - [SMALL_STATE(456)] = 28611, - [SMALL_STATE(457)] = 28639, - [SMALL_STATE(458)] = 28665, - [SMALL_STATE(459)] = 28693, - [SMALL_STATE(460)] = 28721, - [SMALL_STATE(461)] = 28749, - [SMALL_STATE(462)] = 28777, - [SMALL_STATE(463)] = 28811, - [SMALL_STATE(464)] = 28837, - [SMALL_STATE(465)] = 28863, - [SMALL_STATE(466)] = 28891, - [SMALL_STATE(467)] = 28917, - [SMALL_STATE(468)] = 28943, - [SMALL_STATE(469)] = 28969, - [SMALL_STATE(470)] = 28995, - [SMALL_STATE(471)] = 29021, - [SMALL_STATE(472)] = 29047, - [SMALL_STATE(473)] = 29073, - [SMALL_STATE(474)] = 29101, - [SMALL_STATE(475)] = 29127, - [SMALL_STATE(476)] = 29153, - [SMALL_STATE(477)] = 29183, - [SMALL_STATE(478)] = 29209, - [SMALL_STATE(479)] = 29235, - [SMALL_STATE(480)] = 29261, - [SMALL_STATE(481)] = 29287, - [SMALL_STATE(482)] = 29313, - [SMALL_STATE(483)] = 29339, - [SMALL_STATE(484)] = 29365, - [SMALL_STATE(485)] = 29391, - [SMALL_STATE(486)] = 29417, - [SMALL_STATE(487)] = 29443, - [SMALL_STATE(488)] = 29469, - [SMALL_STATE(489)] = 29495, - [SMALL_STATE(490)] = 29521, - [SMALL_STATE(491)] = 29547, - [SMALL_STATE(492)] = 29573, - [SMALL_STATE(493)] = 29599, - [SMALL_STATE(494)] = 29625, - [SMALL_STATE(495)] = 29651, - [SMALL_STATE(496)] = 29677, - [SMALL_STATE(497)] = 29703, - [SMALL_STATE(498)] = 29729, - [SMALL_STATE(499)] = 29755, - [SMALL_STATE(500)] = 29785, - [SMALL_STATE(501)] = 29815, - [SMALL_STATE(502)] = 29841, - [SMALL_STATE(503)] = 29867, - [SMALL_STATE(504)] = 29893, - [SMALL_STATE(505)] = 29921, - [SMALL_STATE(506)] = 29949, - [SMALL_STATE(507)] = 29975, - [SMALL_STATE(508)] = 30003, - [SMALL_STATE(509)] = 30029, - [SMALL_STATE(510)] = 30055, - [SMALL_STATE(511)] = 30085, - [SMALL_STATE(512)] = 30111, - [SMALL_STATE(513)] = 30137, - [SMALL_STATE(514)] = 30163, - [SMALL_STATE(515)] = 30189, - [SMALL_STATE(516)] = 30214, - [SMALL_STATE(517)] = 30243, - [SMALL_STATE(518)] = 30268, - [SMALL_STATE(519)] = 30293, - [SMALL_STATE(520)] = 30328, - [SMALL_STATE(521)] = 30363, - [SMALL_STATE(522)] = 30398, - [SMALL_STATE(523)] = 30435, - [SMALL_STATE(524)] = 30460, - [SMALL_STATE(525)] = 30495, - [SMALL_STATE(526)] = 30522, - [SMALL_STATE(527)] = 30547, - [SMALL_STATE(528)] = 30572, - [SMALL_STATE(529)] = 30597, - [SMALL_STATE(530)] = 30624, - [SMALL_STATE(531)] = 30649, - [SMALL_STATE(532)] = 30676, - [SMALL_STATE(533)] = 30711, - [SMALL_STATE(534)] = 30740, - [SMALL_STATE(535)] = 30767, - [SMALL_STATE(536)] = 30796, - [SMALL_STATE(537)] = 30831, - [SMALL_STATE(538)] = 30856, - [SMALL_STATE(539)] = 30881, - [SMALL_STATE(540)] = 30910, - [SMALL_STATE(541)] = 30939, - [SMALL_STATE(542)] = 30966, - [SMALL_STATE(543)] = 31001, - [SMALL_STATE(544)] = 31026, - [SMALL_STATE(545)] = 31051, - [SMALL_STATE(546)] = 31076, - [SMALL_STATE(547)] = 31103, - [SMALL_STATE(548)] = 31129, - [SMALL_STATE(549)] = 31153, - [SMALL_STATE(550)] = 31189, - [SMALL_STATE(551)] = 31225, - [SMALL_STATE(552)] = 31249, - [SMALL_STATE(553)] = 31273, - [SMALL_STATE(554)] = 31297, - [SMALL_STATE(555)] = 31333, - [SMALL_STATE(556)] = 31369, - [SMALL_STATE(557)] = 31405, - [SMALL_STATE(558)] = 31441, - [SMALL_STATE(559)] = 31465, - [SMALL_STATE(560)] = 31501, - [SMALL_STATE(561)] = 31537, - [SMALL_STATE(562)] = 31573, - [SMALL_STATE(563)] = 31609, - [SMALL_STATE(564)] = 31633, - [SMALL_STATE(565)] = 31665, - [SMALL_STATE(566)] = 31701, - [SMALL_STATE(567)] = 31725, - [SMALL_STATE(568)] = 31749, - [SMALL_STATE(569)] = 31775, - [SMALL_STATE(570)] = 31811, - [SMALL_STATE(571)] = 31847, - [SMALL_STATE(572)] = 31871, - [SMALL_STATE(573)] = 31907, - [SMALL_STATE(574)] = 31943, - [SMALL_STATE(575)] = 31967, - [SMALL_STATE(576)] = 32003, - [SMALL_STATE(577)] = 32029, - [SMALL_STATE(578)] = 32053, - [SMALL_STATE(579)] = 32077, - [SMALL_STATE(580)] = 32113, - [SMALL_STATE(581)] = 32137, - [SMALL_STATE(582)] = 32173, - [SMALL_STATE(583)] = 32199, - [SMALL_STATE(584)] = 32223, - [SMALL_STATE(585)] = 32247, - [SMALL_STATE(586)] = 32271, - [SMALL_STATE(587)] = 32304, - [SMALL_STATE(588)] = 32329, - [SMALL_STATE(589)] = 32354, - [SMALL_STATE(590)] = 32387, - [SMALL_STATE(591)] = 32412, - [SMALL_STATE(592)] = 32445, - [SMALL_STATE(593)] = 32478, - [SMALL_STATE(594)] = 32501, - [SMALL_STATE(595)] = 32526, - [SMALL_STATE(596)] = 32559, - [SMALL_STATE(597)] = 32592, - [SMALL_STATE(598)] = 32617, - [SMALL_STATE(599)] = 32647, - [SMALL_STATE(600)] = 32677, - [SMALL_STATE(601)] = 32707, - [SMALL_STATE(602)] = 32737, - [SMALL_STATE(603)] = 32767, - [SMALL_STATE(604)] = 32797, - [SMALL_STATE(605)] = 32827, - [SMALL_STATE(606)] = 32857, - [SMALL_STATE(607)] = 32887, - [SMALL_STATE(608)] = 32917, - [SMALL_STATE(609)] = 32947, - [SMALL_STATE(610)] = 32977, - [SMALL_STATE(611)] = 33007, - [SMALL_STATE(612)] = 33037, - [SMALL_STATE(613)] = 33067, - [SMALL_STATE(614)] = 33097, - [SMALL_STATE(615)] = 33127, - [SMALL_STATE(616)] = 33157, - [SMALL_STATE(617)] = 33187, - [SMALL_STATE(618)] = 33217, - [SMALL_STATE(619)] = 33247, - [SMALL_STATE(620)] = 33277, - [SMALL_STATE(621)] = 33307, - [SMALL_STATE(622)] = 33337, - [SMALL_STATE(623)] = 33367, - [SMALL_STATE(624)] = 33397, - [SMALL_STATE(625)] = 33427, - [SMALL_STATE(626)] = 33457, - [SMALL_STATE(627)] = 33487, - [SMALL_STATE(628)] = 33517, - [SMALL_STATE(629)] = 33547, - [SMALL_STATE(630)] = 33568, - [SMALL_STATE(631)] = 33589, - [SMALL_STATE(632)] = 33610, - [SMALL_STATE(633)] = 33630, - [SMALL_STATE(634)] = 33650, - [SMALL_STATE(635)] = 33670, - [SMALL_STATE(636)] = 33685, - [SMALL_STATE(637)] = 33699, - [SMALL_STATE(638)] = 33711, - [SMALL_STATE(639)] = 33727, - [SMALL_STATE(640)] = 33747, - [SMALL_STATE(641)] = 33759, - [SMALL_STATE(642)] = 33770, - [SMALL_STATE(643)] = 33781, - [SMALL_STATE(644)] = 33794, - [SMALL_STATE(645)] = 33809, - [SMALL_STATE(646)] = 33821, - [SMALL_STATE(647)] = 33833, - [SMALL_STATE(648)] = 33847, - [SMALL_STATE(649)] = 33859, - [SMALL_STATE(650)] = 33873, - [SMALL_STATE(651)] = 33885, - [SMALL_STATE(652)] = 33897, - [SMALL_STATE(653)] = 33909, - [SMALL_STATE(654)] = 33922, - [SMALL_STATE(655)] = 33935, - [SMALL_STATE(656)] = 33948, - [SMALL_STATE(657)] = 33959, - [SMALL_STATE(658)] = 33972, - [SMALL_STATE(659)] = 33985, - [SMALL_STATE(660)] = 33998, - [SMALL_STATE(661)] = 34011, - [SMALL_STATE(662)] = 34024, - [SMALL_STATE(663)] = 34037, - [SMALL_STATE(664)] = 34050, - [SMALL_STATE(665)] = 34063, - [SMALL_STATE(666)] = 34076, - [SMALL_STATE(667)] = 34089, - [SMALL_STATE(668)] = 34102, - [SMALL_STATE(669)] = 34115, - [SMALL_STATE(670)] = 34128, - [SMALL_STATE(671)] = 34141, - [SMALL_STATE(672)] = 34152, - [SMALL_STATE(673)] = 34165, - [SMALL_STATE(674)] = 34176, - [SMALL_STATE(675)] = 34189, - [SMALL_STATE(676)] = 34202, - [SMALL_STATE(677)] = 34215, - [SMALL_STATE(678)] = 34228, - [SMALL_STATE(679)] = 34241, - [SMALL_STATE(680)] = 34254, - [SMALL_STATE(681)] = 34267, - [SMALL_STATE(682)] = 34280, - [SMALL_STATE(683)] = 34293, - [SMALL_STATE(684)] = 34306, - [SMALL_STATE(685)] = 34319, - [SMALL_STATE(686)] = 34332, - [SMALL_STATE(687)] = 34345, - [SMALL_STATE(688)] = 34358, - [SMALL_STATE(689)] = 34369, - [SMALL_STATE(690)] = 34382, - [SMALL_STATE(691)] = 34393, - [SMALL_STATE(692)] = 34406, - [SMALL_STATE(693)] = 34419, - [SMALL_STATE(694)] = 34432, - [SMALL_STATE(695)] = 34445, - [SMALL_STATE(696)] = 34458, - [SMALL_STATE(697)] = 34471, - [SMALL_STATE(698)] = 34484, - [SMALL_STATE(699)] = 34497, - [SMALL_STATE(700)] = 34510, - [SMALL_STATE(701)] = 34523, - [SMALL_STATE(702)] = 34536, - [SMALL_STATE(703)] = 34549, - [SMALL_STATE(704)] = 34560, - [SMALL_STATE(705)] = 34570, - [SMALL_STATE(706)] = 34580, - [SMALL_STATE(707)] = 34590, - [SMALL_STATE(708)] = 34598, - [SMALL_STATE(709)] = 34606, - [SMALL_STATE(710)] = 34616, - [SMALL_STATE(711)] = 34626, - [SMALL_STATE(712)] = 34636, - [SMALL_STATE(713)] = 34646, - [SMALL_STATE(714)] = 34654, - [SMALL_STATE(715)] = 34664, - [SMALL_STATE(716)] = 34674, - [SMALL_STATE(717)] = 34684, - [SMALL_STATE(718)] = 34694, - [SMALL_STATE(719)] = 34704, - [SMALL_STATE(720)] = 34714, - [SMALL_STATE(721)] = 34722, - [SMALL_STATE(722)] = 34732, - [SMALL_STATE(723)] = 34742, - [SMALL_STATE(724)] = 34752, - [SMALL_STATE(725)] = 34762, - [SMALL_STATE(726)] = 34772, - [SMALL_STATE(727)] = 34780, - [SMALL_STATE(728)] = 34790, - [SMALL_STATE(729)] = 34800, - [SMALL_STATE(730)] = 34810, - [SMALL_STATE(731)] = 34820, - [SMALL_STATE(732)] = 34830, - [SMALL_STATE(733)] = 34838, - [SMALL_STATE(734)] = 34846, - [SMALL_STATE(735)] = 34856, - [SMALL_STATE(736)] = 34866, - [SMALL_STATE(737)] = 34876, - [SMALL_STATE(738)] = 34886, - [SMALL_STATE(739)] = 34896, - [SMALL_STATE(740)] = 34903, - [SMALL_STATE(741)] = 34910, - [SMALL_STATE(742)] = 34917, - [SMALL_STATE(743)] = 34924, - [SMALL_STATE(744)] = 34931, - [SMALL_STATE(745)] = 34938, - [SMALL_STATE(746)] = 34945, - [SMALL_STATE(747)] = 34952, - [SMALL_STATE(748)] = 34959, - [SMALL_STATE(749)] = 34966, - [SMALL_STATE(750)] = 34973, - [SMALL_STATE(751)] = 34980, - [SMALL_STATE(752)] = 34987, - [SMALL_STATE(753)] = 34994, - [SMALL_STATE(754)] = 35001, - [SMALL_STATE(755)] = 35008, - [SMALL_STATE(756)] = 35015, - [SMALL_STATE(757)] = 35022, - [SMALL_STATE(758)] = 35029, - [SMALL_STATE(759)] = 35036, - [SMALL_STATE(760)] = 35043, - [SMALL_STATE(761)] = 35050, - [SMALL_STATE(762)] = 35057, - [SMALL_STATE(763)] = 35064, - [SMALL_STATE(764)] = 35071, - [SMALL_STATE(765)] = 35078, - [SMALL_STATE(766)] = 35085, - [SMALL_STATE(767)] = 35092, - [SMALL_STATE(768)] = 35099, - [SMALL_STATE(769)] = 35106, - [SMALL_STATE(770)] = 35113, - [SMALL_STATE(771)] = 35120, - [SMALL_STATE(772)] = 35127, - [SMALL_STATE(773)] = 35134, - [SMALL_STATE(774)] = 35141, - [SMALL_STATE(775)] = 35148, - [SMALL_STATE(776)] = 35155, - [SMALL_STATE(777)] = 35162, - [SMALL_STATE(778)] = 35169, - [SMALL_STATE(779)] = 35176, - [SMALL_STATE(780)] = 35183, - [SMALL_STATE(781)] = 35190, - [SMALL_STATE(782)] = 35197, - [SMALL_STATE(783)] = 35204, - [SMALL_STATE(784)] = 35211, - [SMALL_STATE(785)] = 35218, - [SMALL_STATE(786)] = 35225, - [SMALL_STATE(787)] = 35232, - [SMALL_STATE(788)] = 35239, - [SMALL_STATE(789)] = 35246, - [SMALL_STATE(790)] = 35253, - [SMALL_STATE(791)] = 35260, - [SMALL_STATE(792)] = 35267, - [SMALL_STATE(793)] = 35274, - [SMALL_STATE(794)] = 35281, - [SMALL_STATE(795)] = 35288, - [SMALL_STATE(796)] = 35295, - [SMALL_STATE(797)] = 35302, - [SMALL_STATE(798)] = 35309, - [SMALL_STATE(799)] = 35316, - [SMALL_STATE(800)] = 35323, - [SMALL_STATE(801)] = 35330, - [SMALL_STATE(802)] = 35337, - [SMALL_STATE(803)] = 35344, - [SMALL_STATE(804)] = 35351, - [SMALL_STATE(805)] = 35358, - [SMALL_STATE(806)] = 35365, - [SMALL_STATE(807)] = 35372, - [SMALL_STATE(808)] = 35379, - [SMALL_STATE(809)] = 35386, - [SMALL_STATE(810)] = 35393, - [SMALL_STATE(811)] = 35400, - [SMALL_STATE(812)] = 35407, - [SMALL_STATE(813)] = 35414, - [SMALL_STATE(814)] = 35421, - [SMALL_STATE(815)] = 35428, - [SMALL_STATE(816)] = 35435, - [SMALL_STATE(817)] = 35442, - [SMALL_STATE(818)] = 35449, - [SMALL_STATE(819)] = 35456, - [SMALL_STATE(820)] = 35463, - [SMALL_STATE(821)] = 35470, - [SMALL_STATE(822)] = 35477, - [SMALL_STATE(823)] = 35484, - [SMALL_STATE(824)] = 35491, - [SMALL_STATE(825)] = 35498, - [SMALL_STATE(826)] = 35505, - [SMALL_STATE(827)] = 35512, + [SMALL_STATE(3)] = 137, + [SMALL_STATE(4)] = 274, + [SMALL_STATE(5)] = 411, + [SMALL_STATE(6)] = 545, + [SMALL_STATE(7)] = 679, + [SMALL_STATE(8)] = 813, + [SMALL_STATE(9)] = 947, + [SMALL_STATE(10)] = 1081, + [SMALL_STATE(11)] = 1215, + [SMALL_STATE(12)] = 1349, + [SMALL_STATE(13)] = 1483, + [SMALL_STATE(14)] = 1617, + [SMALL_STATE(15)] = 1751, + [SMALL_STATE(16)] = 1885, + [SMALL_STATE(17)] = 2019, + [SMALL_STATE(18)] = 2153, + [SMALL_STATE(19)] = 2287, + [SMALL_STATE(20)] = 2421, + [SMALL_STATE(21)] = 2555, + [SMALL_STATE(22)] = 2689, + [SMALL_STATE(23)] = 2823, + [SMALL_STATE(24)] = 2957, + [SMALL_STATE(25)] = 3091, + [SMALL_STATE(26)] = 3225, + [SMALL_STATE(27)] = 3359, + [SMALL_STATE(28)] = 3493, + [SMALL_STATE(29)] = 3627, + [SMALL_STATE(30)] = 3761, + [SMALL_STATE(31)] = 3895, + [SMALL_STATE(32)] = 4029, + [SMALL_STATE(33)] = 4163, + [SMALL_STATE(34)] = 4297, + [SMALL_STATE(35)] = 4431, + [SMALL_STATE(36)] = 4565, + [SMALL_STATE(37)] = 4699, + [SMALL_STATE(38)] = 4833, + [SMALL_STATE(39)] = 4967, + [SMALL_STATE(40)] = 5101, + [SMALL_STATE(41)] = 5235, + [SMALL_STATE(42)] = 5369, + [SMALL_STATE(43)] = 5503, + [SMALL_STATE(44)] = 5637, + [SMALL_STATE(45)] = 5771, + [SMALL_STATE(46)] = 5901, + [SMALL_STATE(47)] = 6031, + [SMALL_STATE(48)] = 6161, + [SMALL_STATE(49)] = 6291, + [SMALL_STATE(50)] = 6421, + [SMALL_STATE(51)] = 6551, + [SMALL_STATE(52)] = 6681, + [SMALL_STATE(53)] = 6811, + [SMALL_STATE(54)] = 6941, + [SMALL_STATE(55)] = 7071, + [SMALL_STATE(56)] = 7201, + [SMALL_STATE(57)] = 7331, + [SMALL_STATE(58)] = 7461, + [SMALL_STATE(59)] = 7591, + [SMALL_STATE(60)] = 7721, + [SMALL_STATE(61)] = 7851, + [SMALL_STATE(62)] = 7981, + [SMALL_STATE(63)] = 8111, + [SMALL_STATE(64)] = 8241, + [SMALL_STATE(65)] = 8371, + [SMALL_STATE(66)] = 8501, + [SMALL_STATE(67)] = 8631, + [SMALL_STATE(68)] = 8755, + [SMALL_STATE(69)] = 8879, + [SMALL_STATE(70)] = 9003, + [SMALL_STATE(71)] = 9127, + [SMALL_STATE(72)] = 9251, + [SMALL_STATE(73)] = 9375, + [SMALL_STATE(74)] = 9499, + [SMALL_STATE(75)] = 9623, + [SMALL_STATE(76)] = 9747, + [SMALL_STATE(77)] = 9871, + [SMALL_STATE(78)] = 9927, + [SMALL_STATE(79)] = 9985, + [SMALL_STATE(80)] = 10041, + [SMALL_STATE(81)] = 10097, + [SMALL_STATE(82)] = 10153, + [SMALL_STATE(83)] = 10209, + [SMALL_STATE(84)] = 10265, + [SMALL_STATE(85)] = 10337, + [SMALL_STATE(86)] = 10409, + [SMALL_STATE(87)] = 10481, + [SMALL_STATE(88)] = 10537, + [SMALL_STATE(89)] = 10593, + [SMALL_STATE(90)] = 10649, + [SMALL_STATE(91)] = 10705, + [SMALL_STATE(92)] = 10761, + [SMALL_STATE(93)] = 10816, + [SMALL_STATE(94)] = 10871, + [SMALL_STATE(95)] = 10928, + [SMALL_STATE(96)] = 10983, + [SMALL_STATE(97)] = 11038, + [SMALL_STATE(98)] = 11102, + [SMALL_STATE(99)] = 11156, + [SMALL_STATE(100)] = 11220, + [SMALL_STATE(101)] = 11274, + [SMALL_STATE(102)] = 11328, + [SMALL_STATE(103)] = 11382, + [SMALL_STATE(104)] = 11439, + [SMALL_STATE(105)] = 11496, + [SMALL_STATE(106)] = 11553, + [SMALL_STATE(107)] = 11610, + [SMALL_STATE(108)] = 11667, + [SMALL_STATE(109)] = 11724, + [SMALL_STATE(110)] = 11776, + [SMALL_STATE(111)] = 11828, + [SMALL_STATE(112)] = 11886, + [SMALL_STATE(113)] = 11940, + [SMALL_STATE(114)] = 11995, + [SMALL_STATE(115)] = 12060, + [SMALL_STATE(116)] = 12111, + [SMALL_STATE(117)] = 12178, + [SMALL_STATE(118)] = 12231, + [SMALL_STATE(119)] = 12284, + [SMALL_STATE(120)] = 12339, + [SMALL_STATE(121)] = 12394, + [SMALL_STATE(122)] = 12459, + [SMALL_STATE(123)] = 12510, + [SMALL_STATE(124)] = 12575, + [SMALL_STATE(125)] = 12630, + [SMALL_STATE(126)] = 12697, + [SMALL_STATE(127)] = 12764, + [SMALL_STATE(128)] = 12829, + [SMALL_STATE(129)] = 12884, + [SMALL_STATE(130)] = 12951, + [SMALL_STATE(131)] = 13002, + [SMALL_STATE(132)] = 13054, + [SMALL_STATE(133)] = 13108, + [SMALL_STATE(134)] = 13158, + [SMALL_STATE(135)] = 13208, + [SMALL_STATE(136)] = 13260, + [SMALL_STATE(137)] = 13312, + [SMALL_STATE(138)] = 13366, + [SMALL_STATE(139)] = 13416, + [SMALL_STATE(140)] = 13466, + [SMALL_STATE(141)] = 13516, + [SMALL_STATE(142)] = 13568, + [SMALL_STATE(143)] = 13618, + [SMALL_STATE(144)] = 13668, + [SMALL_STATE(145)] = 13718, + [SMALL_STATE(146)] = 13765, + [SMALL_STATE(147)] = 13812, + [SMALL_STATE(148)] = 13859, + [SMALL_STATE(149)] = 13906, + [SMALL_STATE(150)] = 13953, + [SMALL_STATE(151)] = 14000, + [SMALL_STATE(152)] = 14047, + [SMALL_STATE(153)] = 14094, + [SMALL_STATE(154)] = 14141, + [SMALL_STATE(155)] = 14188, + [SMALL_STATE(156)] = 14235, + [SMALL_STATE(157)] = 14282, + [SMALL_STATE(158)] = 14329, + [SMALL_STATE(159)] = 14376, + [SMALL_STATE(160)] = 14439, + [SMALL_STATE(161)] = 14486, + [SMALL_STATE(162)] = 14533, + [SMALL_STATE(163)] = 14580, + [SMALL_STATE(164)] = 14627, + [SMALL_STATE(165)] = 14674, + [SMALL_STATE(166)] = 14723, + [SMALL_STATE(167)] = 14807, + [SMALL_STATE(168)] = 14891, + [SMALL_STATE(169)] = 14975, + [SMALL_STATE(170)] = 15059, + [SMALL_STATE(171)] = 15143, + [SMALL_STATE(172)] = 15227, + [SMALL_STATE(173)] = 15311, + [SMALL_STATE(174)] = 15395, + [SMALL_STATE(175)] = 15479, + [SMALL_STATE(176)] = 15563, + [SMALL_STATE(177)] = 15647, + [SMALL_STATE(178)] = 15731, + [SMALL_STATE(179)] = 15815, + [SMALL_STATE(180)] = 15899, + [SMALL_STATE(181)] = 15983, + [SMALL_STATE(182)] = 16067, + [SMALL_STATE(183)] = 16151, + [SMALL_STATE(184)] = 16235, + [SMALL_STATE(185)] = 16319, + [SMALL_STATE(186)] = 16403, + [SMALL_STATE(187)] = 16487, + [SMALL_STATE(188)] = 16571, + [SMALL_STATE(189)] = 16655, + [SMALL_STATE(190)] = 16739, + [SMALL_STATE(191)] = 16823, + [SMALL_STATE(192)] = 16907, + [SMALL_STATE(193)] = 16991, + [SMALL_STATE(194)] = 17075, + [SMALL_STATE(195)] = 17159, + [SMALL_STATE(196)] = 17243, + [SMALL_STATE(197)] = 17327, + [SMALL_STATE(198)] = 17411, + [SMALL_STATE(199)] = 17495, + [SMALL_STATE(200)] = 17546, + [SMALL_STATE(201)] = 17601, + [SMALL_STATE(202)] = 17647, + [SMALL_STATE(203)] = 17725, + [SMALL_STATE(204)] = 17803, + [SMALL_STATE(205)] = 17847, + [SMALL_STATE(206)] = 17891, + [SMALL_STATE(207)] = 17969, + [SMALL_STATE(208)] = 18047, + [SMALL_STATE(209)] = 18093, + [SMALL_STATE(210)] = 18171, + [SMALL_STATE(211)] = 18249, + [SMALL_STATE(212)] = 18327, + [SMALL_STATE(213)] = 18405, + [SMALL_STATE(214)] = 18483, + [SMALL_STATE(215)] = 18561, + [SMALL_STATE(216)] = 18639, + [SMALL_STATE(217)] = 18717, + [SMALL_STATE(218)] = 18795, + [SMALL_STATE(219)] = 18873, + [SMALL_STATE(220)] = 18951, + [SMALL_STATE(221)] = 19029, + [SMALL_STATE(222)] = 19107, + [SMALL_STATE(223)] = 19185, + [SMALL_STATE(224)] = 19263, + [SMALL_STATE(225)] = 19341, + [SMALL_STATE(226)] = 19419, + [SMALL_STATE(227)] = 19467, + [SMALL_STATE(228)] = 19545, + [SMALL_STATE(229)] = 19623, + [SMALL_STATE(230)] = 19701, + [SMALL_STATE(231)] = 19747, + [SMALL_STATE(232)] = 19825, + [SMALL_STATE(233)] = 19903, + [SMALL_STATE(234)] = 19981, + [SMALL_STATE(235)] = 20059, + [SMALL_STATE(236)] = 20107, + [SMALL_STATE(237)] = 20185, + [SMALL_STATE(238)] = 20233, + [SMALL_STATE(239)] = 20311, + [SMALL_STATE(240)] = 20389, + [SMALL_STATE(241)] = 20467, + [SMALL_STATE(242)] = 20545, + [SMALL_STATE(243)] = 20593, + [SMALL_STATE(244)] = 20671, + [SMALL_STATE(245)] = 20749, + [SMALL_STATE(246)] = 20827, + [SMALL_STATE(247)] = 20870, + [SMALL_STATE(248)] = 20917, + [SMALL_STATE(249)] = 20964, + [SMALL_STATE(250)] = 21007, + [SMALL_STATE(251)] = 21050, + [SMALL_STATE(252)] = 21097, + [SMALL_STATE(253)] = 21142, + [SMALL_STATE(254)] = 21185, + [SMALL_STATE(255)] = 21230, + [SMALL_STATE(256)] = 21273, + [SMALL_STATE(257)] = 21316, + [SMALL_STATE(258)] = 21363, + [SMALL_STATE(259)] = 21410, + [SMALL_STATE(260)] = 21453, + [SMALL_STATE(261)] = 21500, + [SMALL_STATE(262)] = 21546, + [SMALL_STATE(263)] = 21592, + [SMALL_STATE(264)] = 21650, + [SMALL_STATE(265)] = 21696, + [SMALL_STATE(266)] = 21754, + [SMALL_STATE(267)] = 21812, + [SMALL_STATE(268)] = 21870, + [SMALL_STATE(269)] = 21916, + [SMALL_STATE(270)] = 21958, + [SMALL_STATE(271)] = 22014, + [SMALL_STATE(272)] = 22060, + [SMALL_STATE(273)] = 22116, + [SMALL_STATE(274)] = 22162, + [SMALL_STATE(275)] = 22205, + [SMALL_STATE(276)] = 22246, + [SMALL_STATE(277)] = 22287, + [SMALL_STATE(278)] = 22332, + [SMALL_STATE(279)] = 22381, + [SMALL_STATE(280)] = 22422, + [SMALL_STATE(281)] = 22463, + [SMALL_STATE(282)] = 22512, + [SMALL_STATE(283)] = 22586, + [SMALL_STATE(284)] = 22660, + [SMALL_STATE(285)] = 22734, + [SMALL_STATE(286)] = 22808, + [SMALL_STATE(287)] = 22882, + [SMALL_STATE(288)] = 22926, + [SMALL_STATE(289)] = 22969, + [SMALL_STATE(290)] = 23012, + [SMALL_STATE(291)] = 23055, + [SMALL_STATE(292)] = 23098, + [SMALL_STATE(293)] = 23169, + [SMALL_STATE(294)] = 23208, + [SMALL_STATE(295)] = 23279, + [SMALL_STATE(296)] = 23348, + [SMALL_STATE(297)] = 23391, + [SMALL_STATE(298)] = 23430, + [SMALL_STATE(299)] = 23501, + [SMALL_STATE(300)] = 23572, + [SMALL_STATE(301)] = 23615, + [SMALL_STATE(302)] = 23686, + [SMALL_STATE(303)] = 23757, + [SMALL_STATE(304)] = 23795, + [SMALL_STATE(305)] = 23837, + [SMALL_STATE(306)] = 23875, + [SMALL_STATE(307)] = 23917, + [SMALL_STATE(308)] = 23955, + [SMALL_STATE(309)] = 23993, + [SMALL_STATE(310)] = 24035, + [SMALL_STATE(311)] = 24072, + [SMALL_STATE(312)] = 24109, + [SMALL_STATE(313)] = 24146, + [SMALL_STATE(314)] = 24183, + [SMALL_STATE(315)] = 24248, + [SMALL_STATE(316)] = 24285, + [SMALL_STATE(317)] = 24322, + [SMALL_STATE(318)] = 24387, + [SMALL_STATE(319)] = 24452, + [SMALL_STATE(320)] = 24489, + [SMALL_STATE(321)] = 24526, + [SMALL_STATE(322)] = 24562, + [SMALL_STATE(323)] = 24598, + [SMALL_STATE(324)] = 24634, + [SMALL_STATE(325)] = 24672, + [SMALL_STATE(326)] = 24708, + [SMALL_STATE(327)] = 24744, + [SMALL_STATE(328)] = 24784, + [SMALL_STATE(329)] = 24822, + [SMALL_STATE(330)] = 24884, + [SMALL_STATE(331)] = 24920, + [SMALL_STATE(332)] = 24956, + [SMALL_STATE(333)] = 24992, + [SMALL_STATE(334)] = 25028, + [SMALL_STATE(335)] = 25068, + [SMALL_STATE(336)] = 25106, + [SMALL_STATE(337)] = 25142, + [SMALL_STATE(338)] = 25178, + [SMALL_STATE(339)] = 25216, + [SMALL_STATE(340)] = 25252, + [SMALL_STATE(341)] = 25314, + [SMALL_STATE(342)] = 25350, + [SMALL_STATE(343)] = 25386, + [SMALL_STATE(344)] = 25422, + [SMALL_STATE(345)] = 25478, + [SMALL_STATE(346)] = 25534, + [SMALL_STATE(347)] = 25590, + [SMALL_STATE(348)] = 25646, + [SMALL_STATE(349)] = 25696, + [SMALL_STATE(350)] = 25752, + [SMALL_STATE(351)] = 25808, + [SMALL_STATE(352)] = 25841, + [SMALL_STATE(353)] = 25890, + [SMALL_STATE(354)] = 25930, + [SMALL_STATE(355)] = 25964, + [SMALL_STATE(356)] = 26004, + [SMALL_STATE(357)] = 26046, + [SMALL_STATE(358)] = 26081, + [SMALL_STATE(359)] = 26112, + [SMALL_STATE(360)] = 26153, + [SMALL_STATE(361)] = 26184, + [SMALL_STATE(362)] = 26215, + [SMALL_STATE(363)] = 26246, + [SMALL_STATE(364)] = 26277, + [SMALL_STATE(365)] = 26308, + [SMALL_STATE(366)] = 26343, + [SMALL_STATE(367)] = 26374, + [SMALL_STATE(368)] = 26405, + [SMALL_STATE(369)] = 26436, + [SMALL_STATE(370)] = 26467, + [SMALL_STATE(371)] = 26498, + [SMALL_STATE(372)] = 26533, + [SMALL_STATE(373)] = 26566, + [SMALL_STATE(374)] = 26597, + [SMALL_STATE(375)] = 26628, + [SMALL_STATE(376)] = 26659, + [SMALL_STATE(377)] = 26690, + [SMALL_STATE(378)] = 26721, + [SMALL_STATE(379)] = 26752, + [SMALL_STATE(380)] = 26787, + [SMALL_STATE(381)] = 26822, + [SMALL_STATE(382)] = 26853, + [SMALL_STATE(383)] = 26888, + [SMALL_STATE(384)] = 26923, + [SMALL_STATE(385)] = 26954, + [SMALL_STATE(386)] = 26988, + [SMALL_STATE(387)] = 27022, + [SMALL_STATE(388)] = 27056, + [SMALL_STATE(389)] = 27085, + [SMALL_STATE(390)] = 27114, + [SMALL_STATE(391)] = 27143, + [SMALL_STATE(392)] = 27172, + [SMALL_STATE(393)] = 27207, + [SMALL_STATE(394)] = 27236, + [SMALL_STATE(395)] = 27265, + [SMALL_STATE(396)] = 27294, + [SMALL_STATE(397)] = 27326, + [SMALL_STATE(398)] = 27358, + [SMALL_STATE(399)] = 27390, + [SMALL_STATE(400)] = 27422, + [SMALL_STATE(401)] = 27450, + [SMALL_STATE(402)] = 27490, + [SMALL_STATE(403)] = 27520, + [SMALL_STATE(404)] = 27548, + [SMALL_STATE(405)] = 27580, + [SMALL_STATE(406)] = 27612, + [SMALL_STATE(407)] = 27644, + [SMALL_STATE(408)] = 27672, + [SMALL_STATE(409)] = 27702, + [SMALL_STATE(410)] = 27742, + [SMALL_STATE(411)] = 27774, + [SMALL_STATE(412)] = 27802, + [SMALL_STATE(413)] = 27830, + [SMALL_STATE(414)] = 27872, + [SMALL_STATE(415)] = 27904, + [SMALL_STATE(416)] = 27936, + [SMALL_STATE(417)] = 27978, + [SMALL_STATE(418)] = 28006, + [SMALL_STATE(419)] = 28038, + [SMALL_STATE(420)] = 28065, + [SMALL_STATE(421)] = 28092, + [SMALL_STATE(422)] = 28119, + [SMALL_STATE(423)] = 28160, + [SMALL_STATE(424)] = 28201, + [SMALL_STATE(425)] = 28230, + [SMALL_STATE(426)] = 28257, + [SMALL_STATE(427)] = 28284, + [SMALL_STATE(428)] = 28311, + [SMALL_STATE(429)] = 28338, + [SMALL_STATE(430)] = 28365, + [SMALL_STATE(431)] = 28396, + [SMALL_STATE(432)] = 28423, + [SMALL_STATE(433)] = 28452, + [SMALL_STATE(434)] = 28489, + [SMALL_STATE(435)] = 28516, + [SMALL_STATE(436)] = 28543, + [SMALL_STATE(437)] = 28570, + [SMALL_STATE(438)] = 28601, + [SMALL_STATE(439)] = 28628, + [SMALL_STATE(440)] = 28659, + [SMALL_STATE(441)] = 28692, + [SMALL_STATE(442)] = 28719, + [SMALL_STATE(443)] = 28746, + [SMALL_STATE(444)] = 28773, + [SMALL_STATE(445)] = 28800, + [SMALL_STATE(446)] = 28827, + [SMALL_STATE(447)] = 28868, + [SMALL_STATE(448)] = 28897, + [SMALL_STATE(449)] = 28928, + [SMALL_STATE(450)] = 28955, + [SMALL_STATE(451)] = 28986, + [SMALL_STATE(452)] = 29015, + [SMALL_STATE(453)] = 29056, + [SMALL_STATE(454)] = 29097, + [SMALL_STATE(455)] = 29126, + [SMALL_STATE(456)] = 29155, + [SMALL_STATE(457)] = 29188, + [SMALL_STATE(458)] = 29229, + [SMALL_STATE(459)] = 29270, + [SMALL_STATE(460)] = 29311, + [SMALL_STATE(461)] = 29342, + [SMALL_STATE(462)] = 29371, + [SMALL_STATE(463)] = 29402, + [SMALL_STATE(464)] = 29429, + [SMALL_STATE(465)] = 29456, + [SMALL_STATE(466)] = 29495, + [SMALL_STATE(467)] = 29526, + [SMALL_STATE(468)] = 29557, + [SMALL_STATE(469)] = 29598, + [SMALL_STATE(470)] = 29627, + [SMALL_STATE(471)] = 29668, + [SMALL_STATE(472)] = 29707, + [SMALL_STATE(473)] = 29734, + [SMALL_STATE(474)] = 29760, + [SMALL_STATE(475)] = 29786, + [SMALL_STATE(476)] = 29812, + [SMALL_STATE(477)] = 29838, + [SMALL_STATE(478)] = 29864, + [SMALL_STATE(479)] = 29890, + [SMALL_STATE(480)] = 29916, + [SMALL_STATE(481)] = 29942, + [SMALL_STATE(482)] = 29968, + [SMALL_STATE(483)] = 29994, + [SMALL_STATE(484)] = 30020, + [SMALL_STATE(485)] = 30046, + [SMALL_STATE(486)] = 30072, + [SMALL_STATE(487)] = 30110, + [SMALL_STATE(488)] = 30136, + [SMALL_STATE(489)] = 30162, + [SMALL_STATE(490)] = 30188, + [SMALL_STATE(491)] = 30216, + [SMALL_STATE(492)] = 30242, + [SMALL_STATE(493)] = 30272, + [SMALL_STATE(494)] = 30298, + [SMALL_STATE(495)] = 30324, + [SMALL_STATE(496)] = 30350, + [SMALL_STATE(497)] = 30376, + [SMALL_STATE(498)] = 30402, + [SMALL_STATE(499)] = 30428, + [SMALL_STATE(500)] = 30454, + [SMALL_STATE(501)] = 30480, + [SMALL_STATE(502)] = 30506, + [SMALL_STATE(503)] = 30532, + [SMALL_STATE(504)] = 30558, + [SMALL_STATE(505)] = 30584, + [SMALL_STATE(506)] = 30610, + [SMALL_STATE(507)] = 30638, + [SMALL_STATE(508)] = 30664, + [SMALL_STATE(509)] = 30690, + [SMALL_STATE(510)] = 30716, + [SMALL_STATE(511)] = 30746, + [SMALL_STATE(512)] = 30774, + [SMALL_STATE(513)] = 30800, + [SMALL_STATE(514)] = 30830, + [SMALL_STATE(515)] = 30860, + [SMALL_STATE(516)] = 30886, + [SMALL_STATE(517)] = 30912, + [SMALL_STATE(518)] = 30940, + [SMALL_STATE(519)] = 30966, + [SMALL_STATE(520)] = 30992, + [SMALL_STATE(521)] = 31018, + [SMALL_STATE(522)] = 31044, + [SMALL_STATE(523)] = 31072, + [SMALL_STATE(524)] = 31098, + [SMALL_STATE(525)] = 31124, + [SMALL_STATE(526)] = 31152, + [SMALL_STATE(527)] = 31178, + [SMALL_STATE(528)] = 31212, + [SMALL_STATE(529)] = 31240, + [SMALL_STATE(530)] = 31266, + [SMALL_STATE(531)] = 31292, + [SMALL_STATE(532)] = 31319, + [SMALL_STATE(533)] = 31354, + [SMALL_STATE(534)] = 31379, + [SMALL_STATE(535)] = 31406, + [SMALL_STATE(536)] = 31441, + [SMALL_STATE(537)] = 31470, + [SMALL_STATE(538)] = 31495, + [SMALL_STATE(539)] = 31522, + [SMALL_STATE(540)] = 31549, + [SMALL_STATE(541)] = 31584, + [SMALL_STATE(542)] = 31611, + [SMALL_STATE(543)] = 31638, + [SMALL_STATE(544)] = 31663, + [SMALL_STATE(545)] = 31688, + [SMALL_STATE(546)] = 31713, + [SMALL_STATE(547)] = 31748, + [SMALL_STATE(548)] = 31773, + [SMALL_STATE(549)] = 31802, + [SMALL_STATE(550)] = 31829, + [SMALL_STATE(551)] = 31858, + [SMALL_STATE(552)] = 31883, + [SMALL_STATE(553)] = 31912, + [SMALL_STATE(554)] = 31947, + [SMALL_STATE(555)] = 31974, + [SMALL_STATE(556)] = 31999, + [SMALL_STATE(557)] = 32026, + [SMALL_STATE(558)] = 32055, + [SMALL_STATE(559)] = 32090, + [SMALL_STATE(560)] = 32125, + [SMALL_STATE(561)] = 32150, + [SMALL_STATE(562)] = 32174, + [SMALL_STATE(563)] = 32206, + [SMALL_STATE(564)] = 32230, + [SMALL_STATE(565)] = 32254, + [SMALL_STATE(566)] = 32280, + [SMALL_STATE(567)] = 32304, + [SMALL_STATE(568)] = 32328, + [SMALL_STATE(569)] = 32354, + [SMALL_STATE(570)] = 32378, + [SMALL_STATE(571)] = 32412, + [SMALL_STATE(572)] = 32438, + [SMALL_STATE(573)] = 32462, + [SMALL_STATE(574)] = 32486, + [SMALL_STATE(575)] = 32510, + [SMALL_STATE(576)] = 32534, + [SMALL_STATE(577)] = 32558, + [SMALL_STATE(578)] = 32582, + [SMALL_STATE(579)] = 32606, + [SMALL_STATE(580)] = 32630, + [SMALL_STATE(581)] = 32654, + [SMALL_STATE(582)] = 32678, + [SMALL_STATE(583)] = 32702, + [SMALL_STATE(584)] = 32726, + [SMALL_STATE(585)] = 32750, + [SMALL_STATE(586)] = 32774, + [SMALL_STATE(587)] = 32807, + [SMALL_STATE(588)] = 32840, + [SMALL_STATE(589)] = 32873, + [SMALL_STATE(590)] = 32906, + [SMALL_STATE(591)] = 32939, + [SMALL_STATE(592)] = 32972, + [SMALL_STATE(593)] = 33005, + [SMALL_STATE(594)] = 33030, + [SMALL_STATE(595)] = 33063, + [SMALL_STATE(596)] = 33088, + [SMALL_STATE(597)] = 33121, + [SMALL_STATE(598)] = 33154, + [SMALL_STATE(599)] = 33179, + [SMALL_STATE(600)] = 33204, + [SMALL_STATE(601)] = 33237, + [SMALL_STATE(602)] = 33270, + [SMALL_STATE(603)] = 33303, + [SMALL_STATE(604)] = 33328, + [SMALL_STATE(605)] = 33361, + [SMALL_STATE(606)] = 33394, + [SMALL_STATE(607)] = 33427, + [SMALL_STATE(608)] = 33460, + [SMALL_STATE(609)] = 33493, + [SMALL_STATE(610)] = 33518, + [SMALL_STATE(611)] = 33548, + [SMALL_STATE(612)] = 33578, + [SMALL_STATE(613)] = 33608, + [SMALL_STATE(614)] = 33638, + [SMALL_STATE(615)] = 33668, + [SMALL_STATE(616)] = 33698, + [SMALL_STATE(617)] = 33720, + [SMALL_STATE(618)] = 33747, + [SMALL_STATE(619)] = 33774, + [SMALL_STATE(620)] = 33801, + [SMALL_STATE(621)] = 33828, + [SMALL_STATE(622)] = 33855, + [SMALL_STATE(623)] = 33882, + [SMALL_STATE(624)] = 33909, + [SMALL_STATE(625)] = 33936, + [SMALL_STATE(626)] = 33963, + [SMALL_STATE(627)] = 33990, + [SMALL_STATE(628)] = 34017, + [SMALL_STATE(629)] = 34044, + [SMALL_STATE(630)] = 34071, + [SMALL_STATE(631)] = 34098, + [SMALL_STATE(632)] = 34125, + [SMALL_STATE(633)] = 34152, + [SMALL_STATE(634)] = 34179, + [SMALL_STATE(635)] = 34206, + [SMALL_STATE(636)] = 34233, + [SMALL_STATE(637)] = 34260, + [SMALL_STATE(638)] = 34287, + [SMALL_STATE(639)] = 34314, + [SMALL_STATE(640)] = 34341, + [SMALL_STATE(641)] = 34368, + [SMALL_STATE(642)] = 34395, + [SMALL_STATE(643)] = 34416, + [SMALL_STATE(644)] = 34437, + [SMALL_STATE(645)] = 34458, + [SMALL_STATE(646)] = 34478, + [SMALL_STATE(647)] = 34498, + [SMALL_STATE(648)] = 34518, + [SMALL_STATE(649)] = 34533, + [SMALL_STATE(650)] = 34547, + [SMALL_STATE(651)] = 34563, + [SMALL_STATE(652)] = 34583, + [SMALL_STATE(653)] = 34595, + [SMALL_STATE(654)] = 34607, + [SMALL_STATE(655)] = 34618, + [SMALL_STATE(656)] = 34633, + [SMALL_STATE(657)] = 34646, + [SMALL_STATE(658)] = 34657, + [SMALL_STATE(659)] = 34671, + [SMALL_STATE(660)] = 34683, + [SMALL_STATE(661)] = 34695, + [SMALL_STATE(662)] = 34709, + [SMALL_STATE(663)] = 34721, + [SMALL_STATE(664)] = 34733, + [SMALL_STATE(665)] = 34745, + [SMALL_STATE(666)] = 34757, + [SMALL_STATE(667)] = 34770, + [SMALL_STATE(668)] = 34781, + [SMALL_STATE(669)] = 34794, + [SMALL_STATE(670)] = 34807, + [SMALL_STATE(671)] = 34820, + [SMALL_STATE(672)] = 34833, + [SMALL_STATE(673)] = 34846, + [SMALL_STATE(674)] = 34859, + [SMALL_STATE(675)] = 34872, + [SMALL_STATE(676)] = 34885, + [SMALL_STATE(677)] = 34898, + [SMALL_STATE(678)] = 34911, + [SMALL_STATE(679)] = 34924, + [SMALL_STATE(680)] = 34937, + [SMALL_STATE(681)] = 34950, + [SMALL_STATE(682)] = 34963, + [SMALL_STATE(683)] = 34974, + [SMALL_STATE(684)] = 34987, + [SMALL_STATE(685)] = 35000, + [SMALL_STATE(686)] = 35011, + [SMALL_STATE(687)] = 35024, + [SMALL_STATE(688)] = 35035, + [SMALL_STATE(689)] = 35048, + [SMALL_STATE(690)] = 35059, + [SMALL_STATE(691)] = 35072, + [SMALL_STATE(692)] = 35085, + [SMALL_STATE(693)] = 35098, + [SMALL_STATE(694)] = 35111, + [SMALL_STATE(695)] = 35124, + [SMALL_STATE(696)] = 35137, + [SMALL_STATE(697)] = 35150, + [SMALL_STATE(698)] = 35163, + [SMALL_STATE(699)] = 35176, + [SMALL_STATE(700)] = 35189, + [SMALL_STATE(701)] = 35202, + [SMALL_STATE(702)] = 35215, + [SMALL_STATE(703)] = 35228, + [SMALL_STATE(704)] = 35239, + [SMALL_STATE(705)] = 35252, + [SMALL_STATE(706)] = 35265, + [SMALL_STATE(707)] = 35278, + [SMALL_STATE(708)] = 35291, + [SMALL_STATE(709)] = 35304, + [SMALL_STATE(710)] = 35317, + [SMALL_STATE(711)] = 35330, + [SMALL_STATE(712)] = 35343, + [SMALL_STATE(713)] = 35356, + [SMALL_STATE(714)] = 35369, + [SMALL_STATE(715)] = 35382, + [SMALL_STATE(716)] = 35395, + [SMALL_STATE(717)] = 35408, + [SMALL_STATE(718)] = 35418, + [SMALL_STATE(719)] = 35428, + [SMALL_STATE(720)] = 35438, + [SMALL_STATE(721)] = 35448, + [SMALL_STATE(722)] = 35458, + [SMALL_STATE(723)] = 35468, + [SMALL_STATE(724)] = 35478, + [SMALL_STATE(725)] = 35488, + [SMALL_STATE(726)] = 35496, + [SMALL_STATE(727)] = 35506, + [SMALL_STATE(728)] = 35514, + [SMALL_STATE(729)] = 35524, + [SMALL_STATE(730)] = 35532, + [SMALL_STATE(731)] = 35540, + [SMALL_STATE(732)] = 35548, + [SMALL_STATE(733)] = 35556, + [SMALL_STATE(734)] = 35566, + [SMALL_STATE(735)] = 35576, + [SMALL_STATE(736)] = 35586, + [SMALL_STATE(737)] = 35596, + [SMALL_STATE(738)] = 35606, + [SMALL_STATE(739)] = 35616, + [SMALL_STATE(740)] = 35626, + [SMALL_STATE(741)] = 35636, + [SMALL_STATE(742)] = 35644, + [SMALL_STATE(743)] = 35654, + [SMALL_STATE(744)] = 35664, + [SMALL_STATE(745)] = 35674, + [SMALL_STATE(746)] = 35684, + [SMALL_STATE(747)] = 35694, + [SMALL_STATE(748)] = 35704, + [SMALL_STATE(749)] = 35714, + [SMALL_STATE(750)] = 35724, + [SMALL_STATE(751)] = 35734, + [SMALL_STATE(752)] = 35744, + [SMALL_STATE(753)] = 35751, + [SMALL_STATE(754)] = 35758, + [SMALL_STATE(755)] = 35765, + [SMALL_STATE(756)] = 35772, + [SMALL_STATE(757)] = 35779, + [SMALL_STATE(758)] = 35786, + [SMALL_STATE(759)] = 35793, + [SMALL_STATE(760)] = 35800, + [SMALL_STATE(761)] = 35807, + [SMALL_STATE(762)] = 35814, + [SMALL_STATE(763)] = 35821, + [SMALL_STATE(764)] = 35828, + [SMALL_STATE(765)] = 35835, + [SMALL_STATE(766)] = 35842, + [SMALL_STATE(767)] = 35849, + [SMALL_STATE(768)] = 35856, + [SMALL_STATE(769)] = 35863, + [SMALL_STATE(770)] = 35870, + [SMALL_STATE(771)] = 35877, + [SMALL_STATE(772)] = 35884, + [SMALL_STATE(773)] = 35891, + [SMALL_STATE(774)] = 35898, + [SMALL_STATE(775)] = 35905, + [SMALL_STATE(776)] = 35912, + [SMALL_STATE(777)] = 35919, + [SMALL_STATE(778)] = 35926, + [SMALL_STATE(779)] = 35933, + [SMALL_STATE(780)] = 35940, + [SMALL_STATE(781)] = 35947, + [SMALL_STATE(782)] = 35954, + [SMALL_STATE(783)] = 35961, + [SMALL_STATE(784)] = 35968, + [SMALL_STATE(785)] = 35975, + [SMALL_STATE(786)] = 35982, + [SMALL_STATE(787)] = 35989, + [SMALL_STATE(788)] = 35996, + [SMALL_STATE(789)] = 36003, + [SMALL_STATE(790)] = 36010, + [SMALL_STATE(791)] = 36017, + [SMALL_STATE(792)] = 36024, + [SMALL_STATE(793)] = 36031, + [SMALL_STATE(794)] = 36038, + [SMALL_STATE(795)] = 36045, + [SMALL_STATE(796)] = 36052, + [SMALL_STATE(797)] = 36059, + [SMALL_STATE(798)] = 36066, + [SMALL_STATE(799)] = 36073, + [SMALL_STATE(800)] = 36080, + [SMALL_STATE(801)] = 36087, + [SMALL_STATE(802)] = 36094, + [SMALL_STATE(803)] = 36101, + [SMALL_STATE(804)] = 36108, + [SMALL_STATE(805)] = 36115, + [SMALL_STATE(806)] = 36122, + [SMALL_STATE(807)] = 36129, + [SMALL_STATE(808)] = 36136, + [SMALL_STATE(809)] = 36143, + [SMALL_STATE(810)] = 36150, + [SMALL_STATE(811)] = 36157, + [SMALL_STATE(812)] = 36164, + [SMALL_STATE(813)] = 36171, + [SMALL_STATE(814)] = 36178, + [SMALL_STATE(815)] = 36185, + [SMALL_STATE(816)] = 36192, + [SMALL_STATE(817)] = 36199, + [SMALL_STATE(818)] = 36206, + [SMALL_STATE(819)] = 36213, + [SMALL_STATE(820)] = 36220, + [SMALL_STATE(821)] = 36227, + [SMALL_STATE(822)] = 36234, + [SMALL_STATE(823)] = 36241, + [SMALL_STATE(824)] = 36248, + [SMALL_STATE(825)] = 36255, + [SMALL_STATE(826)] = 36262, + [SMALL_STATE(827)] = 36269, + [SMALL_STATE(828)] = 36276, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(78), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(161), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(757), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(825), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(81), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(83), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(85), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(158), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(194), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(193), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(220), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(817), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(817), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(48), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(816), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(813), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(812), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(74), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(805), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(85), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(74), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(192), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(775), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(82), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(826), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), + [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(112), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(88), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(90), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(170), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(241), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(240), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(239), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(806), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(806), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(805), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(793), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(785), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(84), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(69), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(781), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 6), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 6), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 1), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 1), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 6), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 6), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_instance, 3), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_instance, 3), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 1), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 3), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 3), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(111), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(112), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 3), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as, 3), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(190), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(180), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(827), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(146), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(663), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(207), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(151), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(154), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(155), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(162), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(761), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(190), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(180), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(815), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(146), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(663), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(207), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(151), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(154), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(155), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(162), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(761), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(261), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(268), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(270), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(206), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(306), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(302), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 3), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 3), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 2), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 2), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 2), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(721), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 3), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 3), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5), - [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(750), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(689), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(79), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(702), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(81), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(81), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(83), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(85), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(158), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(751), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(781), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 4), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe, 3), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(382), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(204), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(381), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(390), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(738), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(472), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(538), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(544), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(461), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(575), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(615), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(527), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(784), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(635), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(636), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 1), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), SHIFT_REPEAT(647), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 4), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), SHIFT_REPEAT(681), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(687), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(705), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 3), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 5), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 4), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 6), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1487] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_instance, 3), + [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_instance, 3), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 3), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 3), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(115), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(122), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 3), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as, 3), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(199), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(173), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(780), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(149), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(666), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(230), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(153), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(152), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(155), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(169), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(769), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(199), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(173), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(765), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(149), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(666), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(230), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(153), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(152), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(155), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(169), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(769), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(269), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(279), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(275), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(209), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(315), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(312), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 2), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 2), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 2), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(747), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 3), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 3), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(792), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(706), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(82), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(715), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(88), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(88), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(91), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(90), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(170), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(797), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(787), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 3), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 3), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 4), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe, 3), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe, 3), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(221), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(390), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(394), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(417), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(721), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(489), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(543), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(555), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(554), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(587), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(639), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(566), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(648), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(649), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 1), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), SHIFT_REPEAT(661), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(693), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(723), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 4), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), SHIFT_REPEAT(673), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 4), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 5), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1418] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 6), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), }; #ifdef __cplusplus