#include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 #define STATE_COUNT 371 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 98 #define ALIAS_COUNT 0 #define TOKEN_COUNT 57 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 4 #define MAX_ALIAS_SEQUENCE_LENGTH 6 #define PRODUCTION_ID_COUNT 3 enum { sym_identifier = 1, sym__comment = 2, anon_sym_async = 3, anon_sym_LBRACE = 4, anon_sym_RBRACE = 5, anon_sym_SEMI = 6, anon_sym_LPAREN = 7, anon_sym_RPAREN = 8, anon_sym_COMMA = 9, sym_integer = 10, sym_float = 11, sym_string = 12, anon_sym_true = 13, anon_sym_false = 14, anon_sym_LBRACK = 15, anon_sym_RBRACK = 16, anon_sym_EQ = 17, anon_sym_COLON = 18, anon_sym_DOT_DOT = 19, anon_sym_PLUS = 20, anon_sym_DASH = 21, anon_sym_STAR = 22, anon_sym_SLASH = 23, anon_sym_PERCENT = 24, anon_sym_EQ_EQ = 25, anon_sym_BANG_EQ = 26, anon_sym_AMP_AMP = 27, anon_sym_PIPE_PIPE = 28, anon_sym_GT = 29, anon_sym_LT = 30, anon_sym_GT_EQ = 31, anon_sym_LT_EQ = 32, anon_sym_PLUS_EQ = 33, anon_sym_DASH_EQ = 34, anon_sym_if = 35, anon_sym_elseif = 36, anon_sym_else = 37, anon_sym_match = 38, anon_sym_EQ_GT = 39, anon_sym_while = 40, anon_sym_for = 41, anon_sym_asyncfor = 42, anon_sym_in = 43, anon_sym_PIPE = 44, anon_sym_table = 45, anon_sym_return = 46, anon_sym_use = 47, anon_sym_any = 48, anon_sym_bool = 49, anon_sym_fn = 50, anon_sym_DASH_GT = 51, anon_sym_int = 52, anon_sym_list = 53, anon_sym_map = 54, anon_sym_num = 55, anon_sym_str = 56, sym_root = 57, sym_block = 58, sym_statement = 59, sym_expression = 60, sym__expression_kind = 61, aux_sym__expression_list = 62, sym_value = 63, sym_boolean = 64, sym_list = 65, sym_map = 66, sym_index = 67, sym_math = 68, sym_math_operator = 69, sym_logic = 70, sym_logic_operator = 71, sym_assignment = 72, sym_index_assignment = 73, sym_assignment_operator = 74, sym_if_else = 75, sym_if = 76, sym_else_if = 77, sym_else = 78, sym_match = 79, sym_while = 80, sym_for = 81, sym_identifier_list = 82, sym_table = 83, sym_return = 84, sym_use = 85, sym_type_definition = 86, sym_type = 87, sym_function = 88, sym_function_call = 89, sym_yield = 90, aux_sym_root_repeat1 = 91, aux_sym_list_repeat1 = 92, aux_sym_map_repeat1 = 93, aux_sym_if_else_repeat1 = 94, aux_sym_match_repeat1 = 95, aux_sym_identifier_list_repeat1 = 96, aux_sym_type_repeat1 = 97, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [sym__comment] = "_comment", [anon_sym_async] = "async", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_SEMI] = ";", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [anon_sym_COMMA] = ",", [sym_integer] = "integer", [sym_float] = "float", [sym_string] = "string", [anon_sym_true] = "true", [anon_sym_false] = "false", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", [anon_sym_COLON] = ":", [anon_sym_DOT_DOT] = "..", [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] = ">", [anon_sym_LT] = "<", [anon_sym_GT_EQ] = ">=", [anon_sym_LT_EQ] = "<=", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", [anon_sym_if] = "if", [anon_sym_elseif] = "else if", [anon_sym_else] = "else", [anon_sym_match] = "match", [anon_sym_EQ_GT] = "=>", [anon_sym_while] = "while", [anon_sym_for] = "for", [anon_sym_asyncfor] = "async for", [anon_sym_in] = "in", [anon_sym_PIPE] = "|", [anon_sym_table] = "table", [anon_sym_return] = "return", [anon_sym_use] = "use", [anon_sym_any] = "any", [anon_sym_bool] = "bool", [anon_sym_fn] = "fn", [anon_sym_DASH_GT] = "->", [anon_sym_int] = "int", [anon_sym_list] = "list", [anon_sym_map] = "map", [anon_sym_num] = "num", [anon_sym_str] = "str", [sym_root] = "root", [sym_block] = "block", [sym_statement] = "statement", [sym_expression] = "expression", [sym__expression_kind] = "_expression_kind", [aux_sym__expression_list] = "_expression_list", [sym_value] = "value", [sym_boolean] = "boolean", [sym_list] = "list", [sym_map] = "map", [sym_index] = "index", [sym_math] = "math", [sym_math_operator] = "math_operator", [sym_logic] = "logic", [sym_logic_operator] = "logic_operator", [sym_assignment] = "assignment", [sym_index_assignment] = "index_assignment", [sym_assignment_operator] = "assignment_operator", [sym_if_else] = "if_else", [sym_if] = "if", [sym_else_if] = "else_if", [sym_else] = "else", [sym_match] = "match", [sym_while] = "while", [sym_for] = "for", [sym_identifier_list] = "identifier_list", [sym_table] = "table", [sym_return] = "return", [sym_use] = "use", [sym_type_definition] = "type_definition", [sym_type] = "type", [sym_function] = "function", [sym_function_call] = "function_call", [sym_yield] = "yield", [aux_sym_root_repeat1] = "root_repeat1", [aux_sym_list_repeat1] = "list_repeat1", [aux_sym_map_repeat1] = "map_repeat1", [aux_sym_if_else_repeat1] = "if_else_repeat1", [aux_sym_match_repeat1] = "match_repeat1", [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", [aux_sym_type_repeat1] = "type_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [sym__comment] = sym__comment, [anon_sym_async] = anon_sym_async, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_COMMA] = anon_sym_COMMA, [sym_integer] = sym_integer, [sym_float] = sym_float, [sym_string] = sym_string, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_STAR] = anon_sym_STAR, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_GT] = anon_sym_GT, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_if] = anon_sym_if, [anon_sym_elseif] = anon_sym_elseif, [anon_sym_else] = anon_sym_else, [anon_sym_match] = anon_sym_match, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_while] = anon_sym_while, [anon_sym_for] = anon_sym_for, [anon_sym_asyncfor] = anon_sym_asyncfor, [anon_sym_in] = anon_sym_in, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_table] = anon_sym_table, [anon_sym_return] = anon_sym_return, [anon_sym_use] = anon_sym_use, [anon_sym_any] = anon_sym_any, [anon_sym_bool] = anon_sym_bool, [anon_sym_fn] = anon_sym_fn, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_int] = anon_sym_int, [anon_sym_list] = anon_sym_list, [anon_sym_map] = anon_sym_map, [anon_sym_num] = anon_sym_num, [anon_sym_str] = anon_sym_str, [sym_root] = sym_root, [sym_block] = sym_block, [sym_statement] = sym_statement, [sym_expression] = sym_expression, [sym__expression_kind] = sym__expression_kind, [aux_sym__expression_list] = aux_sym__expression_list, [sym_value] = sym_value, [sym_boolean] = sym_boolean, [sym_list] = sym_list, [sym_map] = sym_map, [sym_index] = sym_index, [sym_math] = sym_math, [sym_math_operator] = sym_math_operator, [sym_logic] = sym_logic, [sym_logic_operator] = sym_logic_operator, [sym_assignment] = sym_assignment, [sym_index_assignment] = sym_index_assignment, [sym_assignment_operator] = sym_assignment_operator, [sym_if_else] = sym_if_else, [sym_if] = sym_if, [sym_else_if] = sym_else_if, [sym_else] = sym_else, [sym_match] = sym_match, [sym_while] = sym_while, [sym_for] = sym_for, [sym_identifier_list] = sym_identifier_list, [sym_table] = sym_table, [sym_return] = sym_return, [sym_use] = sym_use, [sym_type_definition] = sym_type_definition, [sym_type] = sym_type, [sym_function] = sym_function, [sym_function_call] = sym_function_call, [sym_yield] = sym_yield, [aux_sym_root_repeat1] = aux_sym_root_repeat1, [aux_sym_list_repeat1] = aux_sym_list_repeat1, [aux_sym_map_repeat1] = aux_sym_map_repeat1, [aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1, [aux_sym_match_repeat1] = aux_sym_match_repeat1, [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, [aux_sym_type_repeat1] = aux_sym_type_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { [ts_builtin_sym_end] = { .visible = false, .named = true, }, [sym_identifier] = { .visible = true, .named = true, }, [sym__comment] = { .visible = false, .named = true, }, [anon_sym_async] = { .visible = true, .named = false, }, [anon_sym_LBRACE] = { .visible = true, .named = false, }, [anon_sym_RBRACE] = { .visible = true, .named = false, }, [anon_sym_SEMI] = { .visible = true, .named = false, }, [anon_sym_LPAREN] = { .visible = true, .named = false, }, [anon_sym_RPAREN] = { .visible = true, .named = false, }, [anon_sym_COMMA] = { .visible = true, .named = false, }, [sym_integer] = { .visible = true, .named = true, }, [sym_float] = { .visible = true, .named = true, }, [sym_string] = { .visible = true, .named = true, }, [anon_sym_true] = { .visible = true, .named = false, }, [anon_sym_false] = { .visible = true, .named = false, }, [anon_sym_LBRACK] = { .visible = true, .named = false, }, [anon_sym_RBRACK] = { .visible = true, .named = false, }, [anon_sym_EQ] = { .visible = true, .named = false, }, [anon_sym_COLON] = { .visible = true, .named = false, }, [anon_sym_DOT_DOT] = { .visible = true, .named = false, }, [anon_sym_PLUS] = { .visible = true, .named = false, }, [anon_sym_DASH] = { .visible = true, .named = false, }, [anon_sym_STAR] = { .visible = true, .named = false, }, [anon_sym_SLASH] = { .visible = true, .named = false, }, [anon_sym_PERCENT] = { .visible = true, .named = false, }, [anon_sym_EQ_EQ] = { .visible = true, .named = false, }, [anon_sym_BANG_EQ] = { .visible = true, .named = false, }, [anon_sym_AMP_AMP] = { .visible = true, .named = false, }, [anon_sym_PIPE_PIPE] = { .visible = true, .named = false, }, [anon_sym_GT] = { .visible = true, .named = false, }, [anon_sym_LT] = { .visible = true, .named = false, }, [anon_sym_GT_EQ] = { .visible = true, .named = false, }, [anon_sym_LT_EQ] = { .visible = true, .named = false, }, [anon_sym_PLUS_EQ] = { .visible = true, .named = false, }, [anon_sym_DASH_EQ] = { .visible = true, .named = false, }, [anon_sym_if] = { .visible = true, .named = false, }, [anon_sym_elseif] = { .visible = true, .named = false, }, [anon_sym_else] = { .visible = true, .named = false, }, [anon_sym_match] = { .visible = true, .named = false, }, [anon_sym_EQ_GT] = { .visible = true, .named = false, }, [anon_sym_while] = { .visible = true, .named = false, }, [anon_sym_for] = { .visible = true, .named = false, }, [anon_sym_asyncfor] = { .visible = true, .named = false, }, [anon_sym_in] = { .visible = true, .named = false, }, [anon_sym_PIPE] = { .visible = true, .named = false, }, [anon_sym_table] = { .visible = true, .named = false, }, [anon_sym_return] = { .visible = true, .named = false, }, [anon_sym_use] = { .visible = true, .named = false, }, [anon_sym_any] = { .visible = true, .named = false, }, [anon_sym_bool] = { .visible = true, .named = false, }, [anon_sym_fn] = { .visible = true, .named = false, }, [anon_sym_DASH_GT] = { .visible = true, .named = false, }, [anon_sym_int] = { .visible = true, .named = false, }, [anon_sym_list] = { .visible = true, .named = false, }, [anon_sym_map] = { .visible = true, .named = false, }, [anon_sym_num] = { .visible = true, .named = false, }, [anon_sym_str] = { .visible = true, .named = false, }, [sym_root] = { .visible = true, .named = true, }, [sym_block] = { .visible = true, .named = true, }, [sym_statement] = { .visible = true, .named = true, }, [sym_expression] = { .visible = true, .named = true, }, [sym__expression_kind] = { .visible = false, .named = true, }, [aux_sym__expression_list] = { .visible = false, .named = false, }, [sym_value] = { .visible = true, .named = true, }, [sym_boolean] = { .visible = true, .named = true, }, [sym_list] = { .visible = true, .named = true, }, [sym_map] = { .visible = true, .named = true, }, [sym_index] = { .visible = true, .named = true, }, [sym_math] = { .visible = true, .named = true, }, [sym_math_operator] = { .visible = true, .named = true, }, [sym_logic] = { .visible = true, .named = true, }, [sym_logic_operator] = { .visible = true, .named = true, }, [sym_assignment] = { .visible = true, .named = true, }, [sym_index_assignment] = { .visible = true, .named = true, }, [sym_assignment_operator] = { .visible = true, .named = true, }, [sym_if_else] = { .visible = true, .named = true, }, [sym_if] = { .visible = true, .named = true, }, [sym_else_if] = { .visible = true, .named = true, }, [sym_else] = { .visible = true, .named = true, }, [sym_match] = { .visible = true, .named = true, }, [sym_while] = { .visible = true, .named = true, }, [sym_for] = { .visible = true, .named = true, }, [sym_identifier_list] = { .visible = true, .named = true, }, [sym_table] = { .visible = true, .named = true, }, [sym_return] = { .visible = true, .named = true, }, [sym_use] = { .visible = true, .named = true, }, [sym_type_definition] = { .visible = true, .named = true, }, [sym_type] = { .visible = true, .named = true, }, [sym_function] = { .visible = true, .named = true, }, [sym_function_call] = { .visible = true, .named = true, }, [sym_yield] = { .visible = true, .named = true, }, [aux_sym_root_repeat1] = { .visible = false, .named = false, }, [aux_sym_list_repeat1] = { .visible = false, .named = false, }, [aux_sym_map_repeat1] = { .visible = false, .named = false, }, [aux_sym_if_else_repeat1] = { .visible = false, .named = false, }, [aux_sym_match_repeat1] = { .visible = false, .named = false, }, [aux_sym_identifier_list_repeat1] = { .visible = false, .named = false, }, [aux_sym_type_repeat1] = { .visible = false, .named = false, }, }; enum { field_assignment_operator = 1, field_identifier = 2, field_statement = 3, field_type = 4, }; static const char * const ts_field_names[] = { [0] = NULL, [field_assignment_operator] = "assignment_operator", [field_identifier] = "identifier", [field_statement] = "statement", [field_type] = "type", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 3}, [2] = {.index = 3, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_assignment_operator, 1}, {field_identifier, 0}, {field_statement, 2}, [3] = {field_assignment_operator, 2}, {field_identifier, 0}, {field_statement, 3}, {field_type, 1}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; static const uint16_t ts_non_terminal_alias_map[] = { 0, }; static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, [3] = 2, [4] = 4, [5] = 5, [6] = 6, [7] = 5, [8] = 5, [9] = 6, [10] = 5, [11] = 6, [12] = 5, [13] = 5, [14] = 6, [15] = 5, [16] = 6, [17] = 6, [18] = 18, [19] = 6, [20] = 20, [21] = 20, [22] = 20, [23] = 20, [24] = 24, [25] = 24, [26] = 20, [27] = 24, [28] = 24, [29] = 20, [30] = 24, [31] = 20, [32] = 24, [33] = 24, [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 34, [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, [45] = 42, [46] = 46, [47] = 46, [48] = 42, [49] = 49, [50] = 40, [51] = 37, [52] = 40, [53] = 38, [54] = 54, [55] = 54, [56] = 35, [57] = 41, [58] = 43, [59] = 44, [60] = 60, [61] = 61, [62] = 62, [63] = 63, [64] = 64, [65] = 65, [66] = 66, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, [75] = 75, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 79, [81] = 81, [82] = 82, [83] = 83, [84] = 67, [85] = 46, [86] = 46, [87] = 41, [88] = 43, [89] = 44, [90] = 64, [91] = 35, [92] = 44, [93] = 43, [94] = 35, [95] = 41, [96] = 78, [97] = 74, [98] = 98, [99] = 75, [100] = 63, [101] = 72, [102] = 68, [103] = 65, [104] = 104, [105] = 61, [106] = 76, [107] = 62, [108] = 69, [109] = 66, [110] = 71, [111] = 70, [112] = 83, [113] = 82, [114] = 114, [115] = 115, [116] = 116, [117] = 116, [118] = 116, [119] = 71, [120] = 120, [121] = 76, [122] = 68, [123] = 78, [124] = 61, [125] = 63, [126] = 75, [127] = 70, [128] = 72, [129] = 74, [130] = 130, [131] = 69, [132] = 120, [133] = 133, [134] = 65, [135] = 62, [136] = 136, [137] = 130, [138] = 138, [139] = 139, [140] = 139, [141] = 66, [142] = 130, [143] = 136, [144] = 144, [145] = 139, [146] = 120, [147] = 136, [148] = 64, [149] = 46, [150] = 46, [151] = 35, [152] = 44, [153] = 43, [154] = 41, [155] = 67, [156] = 156, [157] = 157, [158] = 64, [159] = 159, [160] = 160, [161] = 161, [162] = 162, [163] = 157, [164] = 162, [165] = 165, [166] = 166, [167] = 167, [168] = 168, [169] = 162, [170] = 166, [171] = 171, [172] = 162, [173] = 35, [174] = 156, [175] = 41, [176] = 43, [177] = 44, [178] = 67, [179] = 162, [180] = 157, [181] = 165, [182] = 165, [183] = 157, [184] = 60, [185] = 162, [186] = 166, [187] = 167, [188] = 188, [189] = 157, [190] = 165, [191] = 191, [192] = 192, [193] = 191, [194] = 162, [195] = 157, [196] = 165, [197] = 197, [198] = 166, [199] = 162, [200] = 165, [201] = 192, [202] = 156, [203] = 166, [204] = 157, [205] = 165, [206] = 166, [207] = 166, [208] = 191, [209] = 192, [210] = 188, [211] = 171, [212] = 157, [213] = 165, [214] = 166, [215] = 156, [216] = 168, [217] = 160, [218] = 159, [219] = 67, [220] = 73, [221] = 64, [222] = 64, [223] = 223, [224] = 67, [225] = 225, [226] = 226, [227] = 227, [228] = 228, [229] = 229, [230] = 230, [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 223, [236] = 236, [237] = 46, [238] = 41, [239] = 43, [240] = 44, [241] = 81, [242] = 35, [243] = 79, [244] = 79, [245] = 46, [246] = 43, [247] = 44, [248] = 248, [249] = 248, [250] = 250, [251] = 251, [252] = 252, [253] = 251, [254] = 35, [255] = 250, [256] = 252, [257] = 41, [258] = 258, [259] = 259, [260] = 259, [261] = 234, [262] = 67, [263] = 64, [264] = 264, [265] = 265, [266] = 266, [267] = 266, [268] = 268, [269] = 269, [270] = 265, [271] = 264, [272] = 272, [273] = 273, [274] = 274, [275] = 275, [276] = 276, [277] = 276, [278] = 278, [279] = 279, [280] = 280, [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 285, [286] = 114, [287] = 287, [288] = 283, [289] = 284, [290] = 285, [291] = 115, [292] = 133, [293] = 197, [294] = 161, [295] = 295, [296] = 232, [297] = 223, [298] = 230, [299] = 233, [300] = 228, [301] = 226, [302] = 236, [303] = 227, [304] = 295, [305] = 229, [306] = 223, [307] = 225, [308] = 231, [309] = 309, [310] = 310, [311] = 311, [312] = 312, [313] = 313, [314] = 314, [315] = 315, [316] = 316, [317] = 317, [318] = 318, [319] = 312, [320] = 310, [321] = 321, [322] = 311, [323] = 315, [324] = 324, [325] = 311, [326] = 326, [327] = 310, [328] = 321, [329] = 309, [330] = 314, [331] = 331, [332] = 315, [333] = 310, [334] = 334, [335] = 321, [336] = 309, [337] = 318, [338] = 312, [339] = 312, [340] = 311, [341] = 315, [342] = 342, [343] = 342, [344] = 344, [345] = 342, [346] = 342, [347] = 342, [348] = 342, [349] = 342, [350] = 350, [351] = 342, [352] = 352, [353] = 353, [354] = 354, [355] = 355, [356] = 355, [357] = 357, [358] = 357, [359] = 359, [360] = 353, [361] = 352, [362] = 362, [363] = 355, [364] = 357, [365] = 365, [366] = 355, [367] = 355, [368] = 355, [369] = 355, [370] = 354, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(30); if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(61); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(64); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(57); if (lookahead == '>') ADVANCE(74); if (lookahead == '[') ADVANCE(53); if (lookahead == ']') ADVANCE(54); if (lookahead == '`') ADVANCE(15); if (lookahead == 'a') ADVANCE(46); if (lookahead == 'e') ADVANCE(44); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 1: if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(60); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(65); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(13); if (lookahead == '>') ADVANCE(74); if (lookahead == '[') ADVANCE(53); if (lookahead == ']') ADVANCE(54); if (lookahead == '`') ADVANCE(15); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 2: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(61); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(57); if (lookahead == '>') ADVANCE(74); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 3: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(61); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(62); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(56); if (lookahead == '>') ADVANCE(74); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 4: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(60); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(63); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(14); if (lookahead == '>') ADVANCE(74); if (lookahead == 'e') ADVANCE(44); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 5: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(60); if (lookahead == '-') ADVANCE(63); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (lookahead == ':') ADVANCE(58); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(14); if (lookahead == '>') ADVANCE(74); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 6: if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); if (lookahead == ',') ADVANCE(38); if (lookahead == '-') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ';') ADVANCE(35); if (lookahead == '>') ADVANCE(73); if (lookahead == '[') ADVANCE(53); if (lookahead == ']') ADVANCE(54); if (lookahead == '`') ADVANCE(15); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(83); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 7: if (lookahead == '"') ADVANCE(52); if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: if (lookahead == '&') ADVANCE(71); END_STATE(); case 9: if (lookahead == '\'') ADVANCE(52); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: if (lookahead == '.') ADVANCE(59); END_STATE(); case 11: if (lookahead == '=') ADVANCE(70); END_STATE(); case 12: if (lookahead == '=') ADVANCE(78); END_STATE(); case 13: if (lookahead == '=') ADVANCE(69); END_STATE(); case 14: if (lookahead == '=') ADVANCE(69); if (lookahead == '>') ADVANCE(81); END_STATE(); case 15: if (lookahead == '`') ADVANCE(52); if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: if (lookahead == 'f') ADVANCE(19); END_STATE(); case 17: if (lookahead == 'f') ADVANCE(80); END_STATE(); case 18: if (lookahead == 'i') ADVANCE(17); END_STATE(); case 19: if (lookahead == 'o') ADVANCE(20); END_STATE(); case 20: if (lookahead == 'r') ADVANCE(82); END_STATE(); case 21: if (lookahead == '|') ADVANCE(32); if (lookahead == '\n' || lookahead == '#') ADVANCE(31); if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: if (lookahead == '|') ADVANCE(72); END_STATE(); case 23: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 24: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == '=') ADVANCE(79); END_STATE(); case 25: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == '>') ADVANCE(85); END_STATE(); case 26: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); case 27: if (eof) ADVANCE(30); if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(68); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == '*') ADVANCE(66); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(64); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ':') ADVANCE(58); if (lookahead == ';') ADVANCE(35); if (lookahead == '<') ADVANCE(75); if (lookahead == '=') ADVANCE(56); if (lookahead == '>') ADVANCE(74); if (lookahead == '[') ADVANCE(53); if (lookahead == '`') ADVANCE(15); if (lookahead == 'a') ADVANCE(46); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 28: if (eof) ADVANCE(30); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == '+') ADVANCE(12); if (lookahead == '-') ADVANCE(24); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ';') ADVANCE(35); if (lookahead == '=') ADVANCE(55); if (lookahead == '>') ADVANCE(73); if (lookahead == '[') ADVANCE(53); if (lookahead == '`') ADVANCE(15); if (lookahead == 'a') ADVANCE(46); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(83); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 29: if (eof) ADVANCE(30); if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); if (lookahead == '(') ADVANCE(36); if (lookahead == '-') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == ';') ADVANCE(35); if (lookahead == '[') ADVANCE(53); if (lookahead == '`') ADVANCE(15); if (lookahead == 'a') ADVANCE(46); if (lookahead == 'e') ADVANCE(44); if (lookahead == '{') ADVANCE(33); if (lookahead == '|') ADVANCE(83); if (lookahead == '}') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 30: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 31: ACCEPT_TOKEN(sym__comment); END_STATE(); case 32: ACCEPT_TOKEN(sym__comment); if (lookahead == '|') ADVANCE(32); if (lookahead == '\n' || lookahead == '#') ADVANCE(31); if (lookahead != 0) ADVANCE(21); END_STATE(); case 33: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 34: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 35: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 37: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 38: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); if (lookahead == ' ') ADVANCE(18); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); if (lookahead == ' ') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(47); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 45: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') ADVANCE(42); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 46: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 47: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 48: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'y') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 49: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 50: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(26); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 51: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); case 52: ACCEPT_TOKEN(sym_string); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 56: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(69); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(69); if (lookahead == '>') ADVANCE(81); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 60: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') ADVANCE(78); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(79); if (lookahead == '>') ADVANCE(85); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '>') ADVANCE(85); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == '=') ADVANCE(79); if (lookahead == '>') ADVANCE(85); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead == '>') ADVANCE(85); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 68: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 70: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 71: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 74: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(76); END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(77); END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 77: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 79: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(72); END_STATE(); case 85: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); default: return false; } } static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == 'a') ADVANCE(1); if (lookahead == 'b') ADVANCE(2); if (lookahead == 'e') ADVANCE(3); if (lookahead == 'f') ADVANCE(4); if (lookahead == 'i') ADVANCE(5); if (lookahead == 'l') ADVANCE(6); if (lookahead == 'm') ADVANCE(7); if (lookahead == 'n') ADVANCE(8); if (lookahead == 'r') ADVANCE(9); if (lookahead == 's') ADVANCE(10); if (lookahead == 't') ADVANCE(11); if (lookahead == 'u') ADVANCE(12); if (lookahead == 'w') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: if (lookahead == 'n') ADVANCE(14); if (lookahead == 's') ADVANCE(15); END_STATE(); case 2: if (lookahead == 'o') ADVANCE(16); END_STATE(); case 3: if (lookahead == 'l') ADVANCE(17); END_STATE(); case 4: if (lookahead == 'a') ADVANCE(18); if (lookahead == 'n') ADVANCE(19); if (lookahead == 'o') ADVANCE(20); END_STATE(); case 5: if (lookahead == 'f') ADVANCE(21); if (lookahead == 'n') ADVANCE(22); END_STATE(); case 6: if (lookahead == 'i') ADVANCE(23); END_STATE(); case 7: if (lookahead == 'a') ADVANCE(24); END_STATE(); case 8: if (lookahead == 'u') ADVANCE(25); END_STATE(); case 9: if (lookahead == 'e') ADVANCE(26); END_STATE(); case 10: if (lookahead == 't') ADVANCE(27); END_STATE(); case 11: if (lookahead == 'a') ADVANCE(28); if (lookahead == 'r') ADVANCE(29); END_STATE(); case 12: if (lookahead == 's') ADVANCE(30); END_STATE(); case 13: if (lookahead == 'h') ADVANCE(31); END_STATE(); case 14: if (lookahead == 'y') ADVANCE(32); END_STATE(); case 15: if (lookahead == 'y') ADVANCE(33); END_STATE(); case 16: if (lookahead == 'o') ADVANCE(34); END_STATE(); case 17: if (lookahead == 's') ADVANCE(35); END_STATE(); case 18: if (lookahead == 'l') ADVANCE(36); END_STATE(); case 19: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 20: if (lookahead == 'r') ADVANCE(37); END_STATE(); case 21: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 22: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 't') ADVANCE(38); END_STATE(); case 23: if (lookahead == 's') ADVANCE(39); END_STATE(); case 24: if (lookahead == 'p') ADVANCE(40); if (lookahead == 't') ADVANCE(41); END_STATE(); case 25: if (lookahead == 'm') ADVANCE(42); END_STATE(); case 26: if (lookahead == 't') ADVANCE(43); END_STATE(); case 27: if (lookahead == 'r') ADVANCE(44); END_STATE(); case 28: if (lookahead == 'b') ADVANCE(45); END_STATE(); case 29: if (lookahead == 'u') ADVANCE(46); END_STATE(); case 30: if (lookahead == 'e') ADVANCE(47); END_STATE(); case 31: if (lookahead == 'i') ADVANCE(48); END_STATE(); case 32: ACCEPT_TOKEN(anon_sym_any); END_STATE(); case 33: if (lookahead == 'n') ADVANCE(49); END_STATE(); case 34: if (lookahead == 'l') ADVANCE(50); END_STATE(); case 35: if (lookahead == 'e') ADVANCE(51); END_STATE(); case 36: if (lookahead == 's') ADVANCE(52); END_STATE(); case 37: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 38: ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 39: if (lookahead == 't') ADVANCE(53); END_STATE(); case 40: ACCEPT_TOKEN(anon_sym_map); END_STATE(); case 41: if (lookahead == 'c') ADVANCE(54); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_num); END_STATE(); case 43: if (lookahead == 'u') ADVANCE(55); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_str); END_STATE(); case 45: if (lookahead == 'l') ADVANCE(56); END_STATE(); case 46: if (lookahead == 'e') ADVANCE(57); END_STATE(); case 47: ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 48: if (lookahead == 'l') ADVANCE(58); END_STATE(); case 49: if (lookahead == 'c') ADVANCE(59); END_STATE(); case 50: ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 51: ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 52: if (lookahead == 'e') ADVANCE(60); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_list); END_STATE(); case 54: if (lookahead == 'h') ADVANCE(61); END_STATE(); case 55: if (lookahead == 'r') ADVANCE(62); END_STATE(); case 56: if (lookahead == 'e') ADVANCE(63); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 58: if (lookahead == 'e') ADVANCE(64); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 60: ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 62: if (lookahead == 'n') ADVANCE(65); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_table); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_return); END_STATE(); default: return false; } } static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 28}, [2] = {.lex_state = 28}, [3] = {.lex_state = 28}, [4] = {.lex_state = 28}, [5] = {.lex_state = 28}, [6] = {.lex_state = 28}, [7] = {.lex_state = 28}, [8] = {.lex_state = 28}, [9] = {.lex_state = 28}, [10] = {.lex_state = 28}, [11] = {.lex_state = 28}, [12] = {.lex_state = 28}, [13] = {.lex_state = 28}, [14] = {.lex_state = 28}, [15] = {.lex_state = 28}, [16] = {.lex_state = 28}, [17] = {.lex_state = 28}, [18] = {.lex_state = 28}, [19] = {.lex_state = 28}, [20] = {.lex_state = 28}, [21] = {.lex_state = 28}, [22] = {.lex_state = 28}, [23] = {.lex_state = 28}, [24] = {.lex_state = 28}, [25] = {.lex_state = 28}, [26] = {.lex_state = 28}, [27] = {.lex_state = 28}, [28] = {.lex_state = 28}, [29] = {.lex_state = 28}, [30] = {.lex_state = 28}, [31] = {.lex_state = 28}, [32] = {.lex_state = 28}, [33] = {.lex_state = 28}, [34] = {.lex_state = 28}, [35] = {.lex_state = 27}, [36] = {.lex_state = 28}, [37] = {.lex_state = 28}, [38] = {.lex_state = 28}, [39] = {.lex_state = 28}, [40] = {.lex_state = 1}, [41] = {.lex_state = 27}, [42] = {.lex_state = 1}, [43] = {.lex_state = 27}, [44] = {.lex_state = 27}, [45] = {.lex_state = 1}, [46] = {.lex_state = 27}, [47] = {.lex_state = 27}, [48] = {.lex_state = 1}, [49] = {.lex_state = 28}, [50] = {.lex_state = 1}, [51] = {.lex_state = 28}, [52] = {.lex_state = 1}, [53] = {.lex_state = 28}, [54] = {.lex_state = 1}, [55] = {.lex_state = 1}, [56] = {.lex_state = 27}, [57] = {.lex_state = 27}, [58] = {.lex_state = 27}, [59] = {.lex_state = 27}, [60] = {.lex_state = 27}, [61] = {.lex_state = 27}, [62] = {.lex_state = 27}, [63] = {.lex_state = 27}, [64] = {.lex_state = 27}, [65] = {.lex_state = 27}, [66] = {.lex_state = 27}, [67] = {.lex_state = 27}, [68] = {.lex_state = 27}, [69] = {.lex_state = 27}, [70] = {.lex_state = 27}, [71] = {.lex_state = 27}, [72] = {.lex_state = 27}, [73] = {.lex_state = 27}, [74] = {.lex_state = 27}, [75] = {.lex_state = 27}, [76] = {.lex_state = 27}, [77] = {.lex_state = 27}, [78] = {.lex_state = 27}, [79] = {.lex_state = 27}, [80] = {.lex_state = 27}, [81] = {.lex_state = 27}, [82] = {.lex_state = 28}, [83] = {.lex_state = 28}, [84] = {.lex_state = 1}, [85] = {.lex_state = 1}, [86] = {.lex_state = 1}, [87] = {.lex_state = 1}, [88] = {.lex_state = 1}, [89] = {.lex_state = 1}, [90] = {.lex_state = 1}, [91] = {.lex_state = 1}, [92] = {.lex_state = 1}, [93] = {.lex_state = 1}, [94] = {.lex_state = 1}, [95] = {.lex_state = 1}, [96] = {.lex_state = 1}, [97] = {.lex_state = 1}, [98] = {.lex_state = 1}, [99] = {.lex_state = 1}, [100] = {.lex_state = 1}, [101] = {.lex_state = 1}, [102] = {.lex_state = 1}, [103] = {.lex_state = 1}, [104] = {.lex_state = 1}, [105] = {.lex_state = 1}, [106] = {.lex_state = 1}, [107] = {.lex_state = 1}, [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, [110] = {.lex_state = 1}, [111] = {.lex_state = 1}, [112] = {.lex_state = 6}, [113] = {.lex_state = 6}, [114] = {.lex_state = 29}, [115] = {.lex_state = 29}, [116] = {.lex_state = 1}, [117] = {.lex_state = 1}, [118] = {.lex_state = 1}, [119] = {.lex_state = 2}, [120] = {.lex_state = 6}, [121] = {.lex_state = 2}, [122] = {.lex_state = 2}, [123] = {.lex_state = 2}, [124] = {.lex_state = 2}, [125] = {.lex_state = 2}, [126] = {.lex_state = 2}, [127] = {.lex_state = 2}, [128] = {.lex_state = 2}, [129] = {.lex_state = 2}, [130] = {.lex_state = 6}, [131] = {.lex_state = 2}, [132] = {.lex_state = 6}, [133] = {.lex_state = 29}, [134] = {.lex_state = 2}, [135] = {.lex_state = 2}, [136] = {.lex_state = 6}, [137] = {.lex_state = 6}, [138] = {.lex_state = 6}, [139] = {.lex_state = 6}, [140] = {.lex_state = 6}, [141] = {.lex_state = 2}, [142] = {.lex_state = 6}, [143] = {.lex_state = 6}, [144] = {.lex_state = 6}, [145] = {.lex_state = 6}, [146] = {.lex_state = 6}, [147] = {.lex_state = 6}, [148] = {.lex_state = 4}, [149] = {.lex_state = 3}, [150] = {.lex_state = 3}, [151] = {.lex_state = 3}, [152] = {.lex_state = 3}, [153] = {.lex_state = 3}, [154] = {.lex_state = 3}, [155] = {.lex_state = 4}, [156] = {.lex_state = 6}, [157] = {.lex_state = 6}, [158] = {.lex_state = 29}, [159] = {.lex_state = 6}, [160] = {.lex_state = 6}, [161] = {.lex_state = 29}, [162] = {.lex_state = 6}, [163] = {.lex_state = 6}, [164] = {.lex_state = 6}, [165] = {.lex_state = 6}, [166] = {.lex_state = 6}, [167] = {.lex_state = 6}, [168] = {.lex_state = 6}, [169] = {.lex_state = 6}, [170] = {.lex_state = 6}, [171] = {.lex_state = 6}, [172] = {.lex_state = 6}, [173] = {.lex_state = 3}, [174] = {.lex_state = 6}, [175] = {.lex_state = 3}, [176] = {.lex_state = 3}, [177] = {.lex_state = 3}, [178] = {.lex_state = 29}, [179] = {.lex_state = 6}, [180] = {.lex_state = 6}, [181] = {.lex_state = 6}, [182] = {.lex_state = 6}, [183] = {.lex_state = 6}, [184] = {.lex_state = 3}, [185] = {.lex_state = 6}, [186] = {.lex_state = 6}, [187] = {.lex_state = 6}, [188] = {.lex_state = 6}, [189] = {.lex_state = 6}, [190] = {.lex_state = 6}, [191] = {.lex_state = 6}, [192] = {.lex_state = 6}, [193] = {.lex_state = 6}, [194] = {.lex_state = 6}, [195] = {.lex_state = 6}, [196] = {.lex_state = 6}, [197] = {.lex_state = 29}, [198] = {.lex_state = 6}, [199] = {.lex_state = 6}, [200] = {.lex_state = 6}, [201] = {.lex_state = 6}, [202] = {.lex_state = 6}, [203] = {.lex_state = 6}, [204] = {.lex_state = 6}, [205] = {.lex_state = 6}, [206] = {.lex_state = 6}, [207] = {.lex_state = 6}, [208] = {.lex_state = 6}, [209] = {.lex_state = 6}, [210] = {.lex_state = 6}, [211] = {.lex_state = 6}, [212] = {.lex_state = 6}, [213] = {.lex_state = 6}, [214] = {.lex_state = 6}, [215] = {.lex_state = 6}, [216] = {.lex_state = 6}, [217] = {.lex_state = 6}, [218] = {.lex_state = 6}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, [222] = {.lex_state = 28}, [223] = {.lex_state = 28}, [224] = {.lex_state = 28}, [225] = {.lex_state = 28}, [226] = {.lex_state = 28}, [227] = {.lex_state = 28}, [228] = {.lex_state = 28}, [229] = {.lex_state = 28}, [230] = {.lex_state = 28}, [231] = {.lex_state = 28}, [232] = {.lex_state = 28}, [233] = {.lex_state = 28}, [234] = {.lex_state = 28}, [235] = {.lex_state = 28}, [236] = {.lex_state = 28}, [237] = {.lex_state = 5}, [238] = {.lex_state = 5}, [239] = {.lex_state = 5}, [240] = {.lex_state = 5}, [241] = {.lex_state = 2}, [242] = {.lex_state = 5}, [243] = {.lex_state = 2}, [244] = {.lex_state = 2}, [245] = {.lex_state = 5}, [246] = {.lex_state = 5}, [247] = {.lex_state = 5}, [248] = {.lex_state = 2}, [249] = {.lex_state = 2}, [250] = {.lex_state = 2}, [251] = {.lex_state = 2}, [252] = {.lex_state = 2}, [253] = {.lex_state = 2}, [254] = {.lex_state = 5}, [255] = {.lex_state = 2}, [256] = {.lex_state = 2}, [257] = {.lex_state = 5}, [258] = {.lex_state = 28}, [259] = {.lex_state = 4}, [260] = {.lex_state = 4}, [261] = {.lex_state = 6}, [262] = {.lex_state = 6}, [263] = {.lex_state = 6}, [264] = {.lex_state = 6}, [265] = {.lex_state = 6}, [266] = {.lex_state = 6}, [267] = {.lex_state = 6}, [268] = {.lex_state = 6}, [269] = {.lex_state = 6}, [270] = {.lex_state = 6}, [271] = {.lex_state = 6}, [272] = {.lex_state = 6}, [273] = {.lex_state = 6}, [274] = {.lex_state = 6}, [275] = {.lex_state = 6}, [276] = {.lex_state = 6}, [277] = {.lex_state = 6}, [278] = {.lex_state = 6}, [279] = {.lex_state = 6}, [280] = {.lex_state = 6}, [281] = {.lex_state = 6}, [282] = {.lex_state = 6}, [283] = {.lex_state = 1}, [284] = {.lex_state = 1}, [285] = {.lex_state = 1}, [286] = {.lex_state = 4}, [287] = {.lex_state = 1}, [288] = {.lex_state = 1}, [289] = {.lex_state = 1}, [290] = {.lex_state = 1}, [291] = {.lex_state = 4}, [292] = {.lex_state = 4}, [293] = {.lex_state = 4}, [294] = {.lex_state = 4}, [295] = {.lex_state = 28}, [296] = {.lex_state = 1}, [297] = {.lex_state = 1}, [298] = {.lex_state = 1}, [299] = {.lex_state = 1}, [300] = {.lex_state = 1}, [301] = {.lex_state = 1}, [302] = {.lex_state = 1}, [303] = {.lex_state = 1}, [304] = {.lex_state = 28}, [305] = {.lex_state = 1}, [306] = {.lex_state = 1}, [307] = {.lex_state = 1}, [308] = {.lex_state = 1}, [309] = {.lex_state = 1}, [310] = {.lex_state = 1}, [311] = {.lex_state = 6}, [312] = {.lex_state = 1}, [313] = {.lex_state = 28}, [314] = {.lex_state = 1}, [315] = {.lex_state = 6}, [316] = {.lex_state = 1}, [317] = {.lex_state = 6}, [318] = {.lex_state = 1}, [319] = {.lex_state = 1}, [320] = {.lex_state = 1}, [321] = {.lex_state = 1}, [322] = {.lex_state = 6}, [323] = {.lex_state = 6}, [324] = {.lex_state = 6}, [325] = {.lex_state = 6}, [326] = {.lex_state = 6}, [327] = {.lex_state = 1}, [328] = {.lex_state = 1}, [329] = {.lex_state = 1}, [330] = {.lex_state = 1}, [331] = {.lex_state = 1}, [332] = {.lex_state = 6}, [333] = {.lex_state = 1}, [334] = {.lex_state = 6}, [335] = {.lex_state = 1}, [336] = {.lex_state = 1}, [337] = {.lex_state = 1}, [338] = {.lex_state = 1}, [339] = {.lex_state = 1}, [340] = {.lex_state = 6}, [341] = {.lex_state = 6}, [342] = {.lex_state = 28}, [343] = {.lex_state = 28}, [344] = {.lex_state = 1}, [345] = {.lex_state = 28}, [346] = {.lex_state = 28}, [347] = {.lex_state = 28}, [348] = {.lex_state = 28}, [349] = {.lex_state = 28}, [350] = {.lex_state = 6}, [351] = {.lex_state = 28}, [352] = {.lex_state = 1}, [353] = {.lex_state = 0}, [354] = {.lex_state = 1}, [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, [358] = {.lex_state = 0}, [359] = {.lex_state = 28}, [360] = {.lex_state = 0}, [361] = {.lex_state = 1}, [362] = {.lex_state = 0}, [363] = {.lex_state = 0}, [364] = {.lex_state = 0}, [365] = {.lex_state = 28}, [366] = {.lex_state = 0}, [367] = {.lex_state = 0}, [368] = {.lex_state = 0}, [369] = {.lex_state = 0}, [370] = {.lex_state = 1}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym_string] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_elseif] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_asyncfor] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_table] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_use] = ACTIONS(1), [anon_sym_any] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), [anon_sym_list] = ACTIONS(1), [anon_sym_map] = ACTIONS(1), [anon_sym_num] = ACTIONS(1), [anon_sym_str] = ACTIONS(1), }, [1] = { [sym_root] = STATE(362), [sym_block] = STATE(223), [sym_statement] = STATE(18), [sym_expression] = STATE(79), [sym__expression_kind] = STATE(61), [sym_value] = STATE(61), [sym_boolean] = STATE(75), [sym_list] = STATE(75), [sym_map] = STATE(75), [sym_index] = STATE(73), [sym_math] = STATE(61), [sym_logic] = STATE(61), [sym_assignment] = STATE(223), [sym_index_assignment] = STATE(223), [sym_if_else] = STATE(223), [sym_if] = STATE(114), [sym_match] = STATE(223), [sym_while] = STATE(223), [sym_for] = STATE(223), [sym_table] = STATE(75), [sym_return] = STATE(223), [sym_use] = STATE(223), [sym_function] = STATE(75), [sym_function_call] = STATE(61), [sym_yield] = STATE(61), [aux_sym_root_repeat1] = STATE(18), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(11), [sym_integer] = ACTIONS(13), [sym_float] = ACTIONS(15), [sym_string] = ACTIONS(15), [anon_sym_true] = ACTIONS(17), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACK] = ACTIONS(19), [anon_sym_if] = ACTIONS(21), [anon_sym_match] = ACTIONS(23), [anon_sym_while] = ACTIONS(25), [anon_sym_for] = ACTIONS(27), [anon_sym_asyncfor] = ACTIONS(29), [anon_sym_PIPE] = ACTIONS(31), [anon_sym_table] = ACTIONS(33), [anon_sym_return] = ACTIONS(35), [anon_sym_use] = ACTIONS(37), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(39), 1, sym_identifier, ACTIONS(41), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, STATE(329), 1, aux_sym_map_repeat1, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(5), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [102] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(39), 1, sym_identifier, ACTIONS(43), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, STATE(309), 1, aux_sym_map_repeat1, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(8), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [204] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, sym_identifier, ACTIONS(50), 1, anon_sym_async, ACTIONS(53), 1, anon_sym_LBRACE, ACTIONS(56), 1, anon_sym_LPAREN, ACTIONS(59), 1, sym_integer, ACTIONS(68), 1, anon_sym_LBRACK, ACTIONS(71), 1, anon_sym_if, ACTIONS(74), 1, anon_sym_match, ACTIONS(77), 1, anon_sym_while, ACTIONS(80), 1, anon_sym_for, ACTIONS(83), 1, anon_sym_asyncfor, ACTIONS(86), 1, anon_sym_PIPE, ACTIONS(89), 1, anon_sym_table, ACTIONS(92), 1, anon_sym_return, ACTIONS(95), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(45), 2, ts_builtin_sym_end, anon_sym_RBRACE, ACTIONS(62), 2, sym_float, sym_string, ACTIONS(65), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [304] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(98), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [403] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(100), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [502] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(102), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [601] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(104), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [700] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(106), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [799] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(108), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [898] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(110), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [997] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(112), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1096] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(114), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1195] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(116), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1294] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(118), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1393] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(120), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1492] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(122), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1591] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(124), 1, ts_builtin_sym_end, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1690] = 26, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, ACTIONS(126), 1, anon_sym_RBRACE, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(4), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1789] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(7), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1885] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(10), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [1981] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(13), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2077] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(5), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2173] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(16), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2269] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(6), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2365] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(15), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2461] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(14), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2557] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(9), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2653] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(8), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2749] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(19), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2845] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(12), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [2941] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(17), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3037] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(79), 1, sym_expression, STATE(114), 1, sym_if, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(11), 2, sym_statement, aux_sym_root_repeat1, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(223), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3133] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(128), 1, sym_identifier, ACTIONS(130), 1, anon_sym_async, ACTIONS(132), 1, anon_sym_LBRACE, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(144), 1, anon_sym_if, ACTIONS(146), 1, anon_sym_match, ACTIONS(148), 1, anon_sym_while, ACTIONS(150), 1, anon_sym_for, ACTIONS(152), 1, anon_sym_asyncfor, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_return, ACTIONS(160), 1, anon_sym_use, STATE(220), 1, sym_index, STATE(244), 1, sym_expression, STATE(286), 1, sym_if, STATE(299), 1, sym_statement, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(297), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3228] = 5, ACTIONS(3), 1, sym__comment, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(164), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(162), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [3283] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(128), 1, sym_identifier, ACTIONS(130), 1, anon_sym_async, ACTIONS(132), 1, anon_sym_LBRACE, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(144), 1, anon_sym_if, ACTIONS(146), 1, anon_sym_match, ACTIONS(148), 1, anon_sym_while, ACTIONS(150), 1, anon_sym_for, ACTIONS(152), 1, anon_sym_asyncfor, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_return, ACTIONS(160), 1, anon_sym_use, STATE(220), 1, sym_index, STATE(243), 1, sym_expression, STATE(286), 1, sym_if, STATE(316), 1, sym_statement, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(306), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3378] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(80), 1, sym_expression, STATE(114), 1, sym_if, STATE(231), 1, sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(235), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3473] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(80), 1, sym_expression, STATE(114), 1, sym_if, STATE(228), 1, sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(235), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3568] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym_identifier, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(21), 1, anon_sym_if, ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, anon_sym_while, ACTIONS(27), 1, anon_sym_for, ACTIONS(29), 1, anon_sym_asyncfor, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(35), 1, anon_sym_return, ACTIONS(37), 1, anon_sym_use, STATE(73), 1, sym_index, STATE(80), 1, sym_expression, STATE(114), 1, sym_if, STATE(233), 1, sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(235), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [3663] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(172), 1, anon_sym_RPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, STATE(104), 1, sym_expression, STATE(146), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [3754] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(202), 1, anon_sym_COLON, ACTIONS(204), 1, anon_sym_DASH_GT, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(198), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(200), 14, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [3821] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(206), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(147), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [3912] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(202), 1, anon_sym_COLON, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(210), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(208), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [3969] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(202), 1, anon_sym_COLON, ACTIONS(204), 1, anon_sym_DASH_GT, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(212), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(214), 14, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [4036] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(216), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(143), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4127] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(222), 1, anon_sym_DOT_DOT, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(220), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(218), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [4184] = 5, ACTIONS(3), 1, sym__comment, STATE(212), 1, sym_logic_operator, STATE(213), 1, sym_math_operator, ACTIONS(220), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(218), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [4239] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(224), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(136), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4330] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(128), 1, sym_identifier, ACTIONS(130), 1, anon_sym_async, ACTIONS(132), 1, anon_sym_LBRACE, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(144), 1, anon_sym_if, ACTIONS(146), 1, anon_sym_match, ACTIONS(148), 1, anon_sym_while, ACTIONS(150), 1, anon_sym_for, ACTIONS(152), 1, anon_sym_asyncfor, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_return, ACTIONS(160), 1, anon_sym_use, STATE(220), 1, sym_index, STATE(243), 1, sym_expression, STATE(286), 1, sym_if, STATE(316), 1, sym_statement, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(306), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [4425] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(226), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(132), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4516] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(128), 1, sym_identifier, ACTIONS(130), 1, anon_sym_async, ACTIONS(132), 1, anon_sym_LBRACE, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(144), 1, anon_sym_if, ACTIONS(146), 1, anon_sym_match, ACTIONS(148), 1, anon_sym_while, ACTIONS(150), 1, anon_sym_for, ACTIONS(152), 1, anon_sym_asyncfor, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_return, ACTIONS(160), 1, anon_sym_use, STATE(220), 1, sym_index, STATE(244), 1, sym_expression, STATE(286), 1, sym_if, STATE(308), 1, sym_statement, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(297), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [4611] = 23, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(192), 1, anon_sym_PIPE, ACTIONS(194), 1, anon_sym_table, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(228), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(120), 1, aux_sym__expression_list, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4702] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(128), 1, sym_identifier, ACTIONS(130), 1, anon_sym_async, ACTIONS(132), 1, anon_sym_LBRACE, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(144), 1, anon_sym_if, ACTIONS(146), 1, anon_sym_match, ACTIONS(148), 1, anon_sym_while, ACTIONS(150), 1, anon_sym_for, ACTIONS(152), 1, anon_sym_asyncfor, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(158), 1, anon_sym_return, ACTIONS(160), 1, anon_sym_use, STATE(220), 1, sym_index, STATE(244), 1, sym_expression, STATE(286), 1, sym_if, STATE(300), 1, sym_statement, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, STATE(297), 9, sym_block, sym_assignment, sym_index_assignment, sym_if_else, sym_match, sym_while, sym_for, sym_return, sym_use, [4797] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(234), 1, anon_sym_PIPE, ACTIONS(236), 1, anon_sym_table, STATE(82), 1, aux_sym_match_repeat1, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, STATE(260), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4885] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(234), 1, anon_sym_PIPE, ACTIONS(236), 1, anon_sym_table, STATE(113), 1, aux_sym_match_repeat1, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, STATE(259), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(188), 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, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [4973] = 5, ACTIONS(3), 1, sym__comment, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(164), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(162), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [5027] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(204), 1, anon_sym_DASH_GT, ACTIONS(238), 1, anon_sym_COLON, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(198), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(200), 14, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [5093] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(238), 1, anon_sym_COLON, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(210), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(208), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [5149] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(204), 1, anon_sym_DASH_GT, ACTIONS(238), 1, anon_sym_COLON, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(212), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_asyncfor, ACTIONS(214), 14, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [5215] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(244), 1, anon_sym_EQ, ACTIONS(246), 1, anon_sym_LT, STATE(37), 1, sym_assignment_operator, STATE(295), 1, sym_type_definition, ACTIONS(248), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(242), 16, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(240), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [5275] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(252), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(250), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5324] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(256), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(254), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5373] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(260), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(258), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5422] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(264), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(262), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5471] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(268), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(266), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5520] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(272), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(270), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5569] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(276), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(274), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5618] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(280), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(278), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5667] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(284), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(282), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5716] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(288), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(286), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5765] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(290), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5814] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(296), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(294), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5863] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(244), 1, anon_sym_EQ, STATE(38), 1, sym_assignment_operator, ACTIONS(248), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(242), 17, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(240), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [5918] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(300), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(298), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [5967] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(304), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(302), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [6016] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(308), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(306), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [6065] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(246), 1, anon_sym_LT, ACTIONS(310), 1, anon_sym_EQ, STATE(37), 1, sym_assignment_operator, STATE(295), 1, sym_type_definition, ACTIONS(248), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(242), 16, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(240), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, 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, anon_sym_DASH_GT, [6124] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(314), 18, anon_sym_async, sym_identifier, sym_integer, 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_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, ACTIONS(312), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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, anon_sym_DASH_GT, [6173] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(204), 1, anon_sym_DASH_GT, ACTIONS(238), 1, anon_sym_COLON, ACTIONS(320), 1, anon_sym_SEMI, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(316), 8, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, ACTIONS(318), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [6238] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(204), 1, anon_sym_DASH_GT, ACTIONS(238), 1, anon_sym_COLON, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(316), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, ACTIONS(318), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [6301] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(204), 1, anon_sym_DASH_GT, ACTIONS(238), 1, anon_sym_COLON, STATE(189), 1, sym_logic_operator, STATE(190), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(322), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, ACTIONS(324), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_PIPE, anon_sym_table, anon_sym_return, anon_sym_use, [6364] = 16, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(83), 1, aux_sym_match_repeat1, STATE(260), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, ACTIONS(326), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_asyncfor, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(328), 7, anon_sym_async, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_return, anon_sym_use, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [6434] = 16, ACTIONS(3), 1, sym__comment, ACTIONS(334), 1, sym_identifier, ACTIONS(339), 1, anon_sym_LBRACE, ACTIONS(342), 1, anon_sym_LPAREN, ACTIONS(345), 1, sym_integer, ACTIONS(354), 1, anon_sym_LBRACK, ACTIONS(357), 1, anon_sym_PIPE, ACTIONS(360), 1, anon_sym_table, STATE(83), 1, aux_sym_match_repeat1, STATE(260), 1, sym_expression, ACTIONS(348), 2, sym_float, sym_string, ACTIONS(351), 2, anon_sym_true, anon_sym_false, ACTIONS(332), 4, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_asyncfor, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, ACTIONS(337), 7, anon_sym_async, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_return, anon_sym_use, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [6504] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(276), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(274), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [6544] = 5, ACTIONS(3), 1, sym__comment, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(220), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(218), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [6588] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(363), 1, anon_sym_DOT_DOT, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(220), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(218), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, 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, anon_sym_DASH_GT, [6634] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(365), 1, anon_sym_COLON, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(200), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(198), 9, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT, [6690] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(365), 1, anon_sym_COLON, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(210), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(208), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [6736] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(365), 1, anon_sym_COLON, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(214), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(212), 9, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT_DOT, [6792] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(264), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(262), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [6832] = 5, ACTIONS(3), 1, sym__comment, STATE(204), 1, sym_logic_operator, STATE(205), 1, sym_math_operator, ACTIONS(164), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(162), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [6876] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(214), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(212), 8, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, [6931] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(182), 1, anon_sym_COLON, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(210), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(208), 19, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, 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, anon_sym_DASH_GT, [6976] = 5, ACTIONS(3), 1, sym__comment, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(164), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(162), 20, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, 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, anon_sym_DASH_GT, [7019] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(200), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(198), 8, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, [7074] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(314), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(312), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7112] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(300), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(298), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7150] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(371), 1, anon_sym_COMMA, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(367), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(369), 6, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, [7206] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(304), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(302), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7244] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(260), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(258), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7282] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(296), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(294), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7320] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(280), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(278), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7358] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(268), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(266), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7396] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(182), 1, anon_sym_COLON, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(196), 1, anon_sym_DASH_GT, ACTIONS(377), 1, anon_sym_COMMA, STATE(182), 1, sym_math_operator, STATE(183), 1, sym_logic_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(373), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_PIPE, anon_sym_table, ACTIONS(375), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, [7452] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(252), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(250), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7490] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(308), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(306), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7528] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(256), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(254), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7566] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(284), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(282), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7604] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(272), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(270), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7642] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(290), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7680] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(288), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(286), 21, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_DASH_GT, [7718] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(334), 1, sym_identifier, ACTIONS(339), 1, anon_sym_LBRACE, ACTIONS(342), 1, anon_sym_LPAREN, ACTIONS(345), 1, sym_integer, ACTIONS(354), 1, anon_sym_LBRACK, ACTIONS(357), 1, anon_sym_PIPE, ACTIONS(360), 1, anon_sym_table, STATE(112), 1, aux_sym_match_repeat1, STATE(259), 1, sym_expression, ACTIONS(348), 2, sym_float, sym_string, ACTIONS(351), 2, anon_sym_true, anon_sym_false, ACTIONS(332), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [7778] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(112), 1, aux_sym_match_repeat1, STATE(259), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, ACTIONS(326), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [7838] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(383), 1, anon_sym_elseif, ACTIONS(385), 1, anon_sym_else, STATE(236), 1, sym_else, STATE(115), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(379), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(381), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [7881] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(383), 1, anon_sym_elseif, ACTIONS(385), 1, anon_sym_else, STATE(225), 1, sym_else, STATE(133), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(387), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(389), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [7924] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(391), 1, anon_sym_RPAREN, ACTIONS(252), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(250), 17, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, 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, anon_sym_DASH_GT, [7961] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(393), 1, anon_sym_RPAREN, ACTIONS(252), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(250), 17, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, 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, anon_sym_DASH_GT, [7998] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(395), 1, anon_sym_RPAREN, ACTIONS(252), 9, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, anon_sym_table, ACTIONS(250), 17, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_COLON, 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, anon_sym_DASH_GT, [8035] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(292), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(290), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8069] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(397), 1, anon_sym_RPAREN, ACTIONS(399), 1, anon_sym_PIPE, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8127] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(308), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(306), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8161] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(280), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(278), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8195] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(314), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(312), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8229] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(252), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(250), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8263] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(260), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(258), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8297] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(304), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(302), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8331] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(288), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(286), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8365] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(296), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(294), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8399] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(300), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(298), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8433] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(401), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(144), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8491] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(284), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(282), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8525] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(403), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8583] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(409), 1, anon_sym_elseif, STATE(133), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(405), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(407), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [8621] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(268), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(266), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8655] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(256), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(254), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [8689] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(412), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8747] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(414), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(144), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8805] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(416), 1, sym_identifier, ACTIONS(419), 1, anon_sym_LBRACE, ACTIONS(422), 1, anon_sym_LPAREN, ACTIONS(425), 1, anon_sym_RPAREN, ACTIONS(427), 1, sym_integer, ACTIONS(436), 1, anon_sym_LBRACK, ACTIONS(439), 1, anon_sym_PIPE, ACTIONS(442), 1, anon_sym_table, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(430), 2, sym_float, sym_string, ACTIONS(433), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8863] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(445), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(142), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8921] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(447), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(137), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [8979] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(272), 7, anon_sym_async, sym_identifier, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(270), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [9013] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(449), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(144), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9071] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(451), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9129] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(453), 1, sym_identifier, ACTIONS(456), 1, anon_sym_LBRACE, ACTIONS(459), 1, anon_sym_LPAREN, ACTIONS(462), 1, sym_integer, ACTIONS(471), 1, anon_sym_LBRACK, ACTIONS(474), 1, anon_sym_RBRACK, ACTIONS(476), 1, anon_sym_PIPE, ACTIONS(479), 1, anon_sym_table, STATE(98), 1, sym_expression, STATE(144), 1, aux_sym_list_repeat1, ACTIONS(465), 2, sym_float, sym_string, ACTIONS(468), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9187] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(482), 1, anon_sym_RBRACK, STATE(98), 1, sym_expression, STATE(130), 1, aux_sym_list_repeat1, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9245] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(484), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9303] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(486), 1, anon_sym_RPAREN, STATE(104), 1, sym_expression, STATE(138), 1, aux_sym__expression_list, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9361] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(264), 6, anon_sym_async, sym_identifier, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_else, ACTIONS(262), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_DASH_GT, [9394] = 5, ACTIONS(3), 1, sym__comment, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(220), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(218), 18, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [9431] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(488), 1, anon_sym_DOT_DOT, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(220), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(218), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, 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_DASH_GT, [9470] = 5, ACTIONS(3), 1, sym__comment, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(164), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(162), 18, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [9507] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(214), 1, anon_sym_EQ, ACTIONS(490), 1, anon_sym_COLON, ACTIONS(492), 1, anon_sym_DASH_GT, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(212), 7, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [9556] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(490), 1, anon_sym_COLON, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(210), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(208), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [9595] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(200), 1, anon_sym_EQ, ACTIONS(490), 1, anon_sym_COLON, ACTIONS(492), 1, anon_sym_DASH_GT, STATE(163), 1, sym_logic_operator, STATE(165), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(198), 7, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [9644] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(276), 6, anon_sym_async, sym_identifier, anon_sym_DASH, anon_sym_GT, anon_sym_LT, anon_sym_else, ACTIONS(274), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_elseif, anon_sym_EQ_GT, anon_sym_DASH_GT, [9677] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(94), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9729] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(257), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9781] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(262), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(264), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [9813] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(255), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9865] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(54), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [9917] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(494), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(496), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [9949] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, ACTIONS(502), 1, anon_sym_table, STATE(47), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10001] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(504), 1, anon_sym_table, STATE(154), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10053] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(506), 1, anon_sym_table, STATE(85), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10105] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(504), 1, anon_sym_table, STATE(153), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10157] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(504), 1, anon_sym_table, STATE(152), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10209] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, STATE(241), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10261] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(249), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10313] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(330), 1, anon_sym_PIPE, ACTIONS(508), 1, anon_sym_table, STATE(245), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10365] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(92), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10417] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(251), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10469] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(504), 1, anon_sym_table, STATE(149), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10521] = 5, ACTIONS(3), 1, sym__comment, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(164), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(162), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, 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_DASH_GT, [10557] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, STATE(173), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10609] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(200), 1, anon_sym_EQ, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(510), 1, anon_sym_COLON, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(198), 6, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [10657] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(510), 1, anon_sym_COLON, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(210), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(208), 16, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [10695] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(214), 1, anon_sym_EQ, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(510), 1, anon_sym_COLON, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(186), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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(212), 6, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [10743] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(274), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(276), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [10775] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(506), 1, anon_sym_table, STATE(86), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10827] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, STATE(175), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10879] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, STATE(176), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10931] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(93), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [10983] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(95), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11035] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(244), 1, anon_sym_EQ, ACTIONS(246), 1, anon_sym_LT, STATE(51), 1, sym_assignment_operator, STATE(304), 1, sym_type_definition, ACTIONS(248), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(242), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, ACTIONS(240), 15, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, 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_DASH_GT, [11077] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(504), 1, anon_sym_table, STATE(150), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11129] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(154), 1, anon_sym_PIPE, ACTIONS(156), 1, anon_sym_table, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, STATE(177), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11181] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, STATE(81), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11233] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(252), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11285] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, STATE(57), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11337] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, STATE(58), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11389] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(52), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11441] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(512), 1, sym_identifier, STATE(48), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(118), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11493] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(50), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11545] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, ACTIONS(502), 1, anon_sym_table, STATE(46), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11597] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(330), 1, anon_sym_PIPE, ACTIONS(508), 1, anon_sym_table, STATE(238), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11649] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(330), 1, anon_sym_PIPE, ACTIONS(508), 1, anon_sym_table, STATE(239), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11701] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(514), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_elseif, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(516), 13, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [11733] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(247), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11785] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(330), 1, anon_sym_PIPE, ACTIONS(508), 1, anon_sym_table, STATE(237), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11837] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(246), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11889] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(518), 1, sym_identifier, STATE(42), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(116), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11941] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, STATE(56), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [11993] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(330), 1, anon_sym_PIPE, ACTIONS(508), 1, anon_sym_table, STATE(240), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12045] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(506), 1, anon_sym_table, STATE(87), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12097] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(506), 1, anon_sym_table, STATE(88), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12149] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(33), 1, anon_sym_table, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, STATE(59), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12201] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(506), 1, anon_sym_table, STATE(89), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12253] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(40), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12305] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, ACTIONS(520), 1, sym_identifier, STATE(45), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(117), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12357] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(256), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12409] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(253), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12461] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, ACTIONS(502), 1, anon_sym_table, STATE(41), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12513] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, ACTIONS(502), 1, anon_sym_table, STATE(43), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12565] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, anon_sym_LPAREN, ACTIONS(13), 1, sym_integer, ACTIONS(19), 1, anon_sym_LBRACK, ACTIONS(31), 1, anon_sym_PIPE, ACTIONS(498), 1, sym_identifier, ACTIONS(500), 1, anon_sym_LBRACE, ACTIONS(502), 1, anon_sym_table, STATE(44), 1, sym_expression, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, STATE(75), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(61), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12617] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(254), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12669] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(248), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12721] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(166), 1, sym_identifier, ACTIONS(168), 1, anon_sym_LBRACE, ACTIONS(170), 1, anon_sym_LPAREN, ACTIONS(174), 1, sym_integer, ACTIONS(180), 1, anon_sym_LBRACK, ACTIONS(194), 1, anon_sym_table, ACTIONS(399), 1, anon_sym_PIPE, STATE(55), 1, sym_expression, ACTIONS(176), 2, sym_float, sym_string, ACTIONS(178), 2, anon_sym_true, anon_sym_false, STATE(99), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(105), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12773] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(134), 1, anon_sym_LPAREN, ACTIONS(136), 1, sym_integer, ACTIONS(142), 1, anon_sym_LBRACK, ACTIONS(230), 1, sym_identifier, ACTIONS(232), 1, anon_sym_LBRACE, ACTIONS(236), 1, anon_sym_table, ACTIONS(330), 1, anon_sym_PIPE, STATE(250), 1, sym_expression, ACTIONS(138), 2, sym_float, sym_string, ACTIONS(140), 2, anon_sym_true, anon_sym_false, STATE(126), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, STATE(124), 7, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, [12825] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(276), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(274), 18, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [12856] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(244), 1, anon_sym_EQ, STATE(53), 1, sym_assignment_operator, ACTIONS(248), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, ACTIONS(242), 4, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(240), 15, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, 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_DASH_GT, [12893] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(264), 5, anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(262), 18, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, 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_DASH_GT, [12924] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(262), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(264), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [12954] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(320), 1, anon_sym_SEMI, ACTIONS(316), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(318), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [12986] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(274), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(276), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13016] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(522), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(524), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13046] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(526), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(528), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13076] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(530), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(532), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13106] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(534), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(536), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13136] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(538), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(540), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13166] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(542), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(544), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13196] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(546), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(548), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13226] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(550), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(552), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13256] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(554), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(556), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13286] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(558), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(560), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13316] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(316), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(318), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13346] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(387), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(389), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [13376] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(562), 1, anon_sym_DOT_DOT, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(220), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(218), 15, anon_sym_async, anon_sym_LBRACE, anon_sym_COLON, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [13411] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(564), 1, anon_sym_COLON, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(198), 4, anon_sym_async, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_EQ_GT, ACTIONS(188), 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, [13454] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(564), 1, anon_sym_COLON, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(210), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(208), 15, anon_sym_async, anon_sym_LBRACE, anon_sym_DOT_DOT, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [13489] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(564), 1, anon_sym_COLON, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(212), 4, anon_sym_async, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_EQ_GT, ACTIONS(188), 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, [13532] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(510), 1, anon_sym_COLON, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(322), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, ACTIONS(188), 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, [13575] = 5, ACTIONS(3), 1, sym__comment, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(164), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(162), 16, anon_sym_async, anon_sym_LBRACE, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [13608] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(510), 1, anon_sym_COLON, ACTIONS(566), 1, anon_sym_SEMI, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(316), 3, anon_sym_RBRACE, anon_sym_COMMA, sym_identifier, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13653] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(510), 1, anon_sym_COLON, STATE(180), 1, sym_logic_operator, STATE(181), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(316), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, ACTIONS(188), 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, [13696] = 5, ACTIONS(3), 1, sym__comment, STATE(195), 1, sym_logic_operator, STATE(196), 1, sym_math_operator, ACTIONS(220), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(218), 16, anon_sym_async, anon_sym_LBRACE, anon_sym_COLON, anon_sym_DOT_DOT, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [13729] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(568), 1, anon_sym_COLON, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(210), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(208), 14, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [13763] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(212), 3, anon_sym_async, anon_sym_LBRACE, anon_sym_EQ_GT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13805] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(570), 1, anon_sym_async, ACTIONS(572), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(305), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13851] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(574), 1, anon_sym_async, ACTIONS(576), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(229), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13897] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(578), 1, anon_sym_async, ACTIONS(580), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(294), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13943] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(582), 1, anon_sym_async, ACTIONS(584), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(197), 1, sym_block, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [13989] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(574), 1, anon_sym_async, ACTIONS(576), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(232), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14035] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(578), 1, anon_sym_async, ACTIONS(580), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(293), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14081] = 5, ACTIONS(3), 1, sym__comment, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(164), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(162), 15, anon_sym_async, anon_sym_LBRACE, anon_sym_COLON, 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, anon_sym_EQ_GT, anon_sym_DASH_GT, [14113] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(582), 1, anon_sym_async, ACTIONS(584), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(161), 1, sym_block, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14159] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(570), 1, anon_sym_async, ACTIONS(572), 1, anon_sym_LBRACE, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, STATE(296), 1, sym_block, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14205] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(198), 3, anon_sym_async, anon_sym_LBRACE, anon_sym_EQ_GT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14247] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(588), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(586), 12, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_table, anon_sym_return, anon_sym_use, [14274] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(590), 1, anon_sym_EQ_GT, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14314] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(186), 1, anon_sym_DASH, ACTIONS(492), 1, anon_sym_DASH_GT, ACTIONS(568), 1, anon_sym_COLON, ACTIONS(592), 1, anon_sym_EQ_GT, STATE(157), 1, sym_logic_operator, STATE(200), 1, sym_math_operator, ACTIONS(190), 2, anon_sym_GT, anon_sym_LT, ACTIONS(184), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(188), 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, [14354] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(560), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(558), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14376] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(276), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(274), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14398] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(264), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(262), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14420] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(599), 1, anon_sym_fn, ACTIONS(602), 1, anon_sym_list, STATE(264), 1, aux_sym_type_repeat1, STATE(277), 1, sym_type, ACTIONS(594), 3, anon_sym_COMMA, anon_sym_GT, anon_sym_DASH_GT, ACTIONS(596), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14449] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(611), 1, anon_sym_DASH_GT, ACTIONS(613), 1, anon_sym_list, STATE(264), 1, aux_sym_type_repeat1, STATE(277), 1, sym_type, ACTIONS(605), 2, anon_sym_COMMA, anon_sym_GT, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14480] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, ACTIONS(617), 1, anon_sym_DASH_GT, STATE(265), 1, aux_sym_type_repeat1, STATE(277), 1, sym_type, ACTIONS(615), 2, anon_sym_COMMA, anon_sym_GT, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14511] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, ACTIONS(615), 1, anon_sym_GT, ACTIONS(619), 1, anon_sym_DASH_GT, STATE(270), 1, aux_sym_type_repeat1, STATE(276), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14541] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(621), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(425), 7, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14561] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(623), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(474), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, [14581] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(605), 1, anon_sym_GT, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, ACTIONS(625), 1, anon_sym_DASH_GT, STATE(271), 1, aux_sym_type_repeat1, STATE(276), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14611] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(599), 1, anon_sym_fn, ACTIONS(602), 1, anon_sym_list, STATE(271), 1, aux_sym_type_repeat1, STATE(276), 1, sym_type, ACTIONS(594), 2, anon_sym_GT, anon_sym_DASH_GT, ACTIONS(596), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14639] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(627), 11, anon_sym_COMMA, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14656] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(615), 11, anon_sym_COMMA, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14673] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(629), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(631), 6, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14692] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(633), 11, anon_sym_COMMA, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14709] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(635), 1, anon_sym_COMMA, ACTIONS(637), 10, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14728] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(639), 1, anon_sym_COMMA, ACTIONS(637), 10, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14747] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(642), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(644), 6, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14766] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(646), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(648), 6, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14785] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(605), 11, anon_sym_COMMA, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14802] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(650), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, ACTIONS(652), 6, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_PIPE, [14821] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(594), 11, anon_sym_COMMA, anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_fn, anon_sym_DASH_GT, anon_sym_int, anon_sym_list, anon_sym_map, anon_sym_num, anon_sym_str, [14838] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(654), 1, anon_sym_fn, ACTIONS(656), 1, anon_sym_list, STATE(280), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14859] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(654), 1, anon_sym_fn, ACTIONS(656), 1, anon_sym_list, STATE(275), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14880] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(654), 1, anon_sym_fn, ACTIONS(656), 1, anon_sym_list, STATE(272), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14901] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(381), 1, sym_identifier, ACTIONS(658), 1, anon_sym_elseif, ACTIONS(660), 1, anon_sym_else, STATE(302), 1, sym_else, STATE(291), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(379), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [14926] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(654), 1, anon_sym_fn, ACTIONS(656), 1, anon_sym_list, STATE(365), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14947] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, STATE(280), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14968] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, STATE(275), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [14989] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(609), 1, anon_sym_fn, ACTIONS(613), 1, anon_sym_list, STATE(272), 1, sym_type, ACTIONS(607), 6, anon_sym_any, anon_sym_bool, anon_sym_int, anon_sym_map, anon_sym_num, anon_sym_str, [15010] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(389), 1, sym_identifier, ACTIONS(658), 1, anon_sym_elseif, ACTIONS(660), 1, anon_sym_else, STATE(307), 1, sym_else, STATE(292), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(387), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [15035] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(662), 1, anon_sym_elseif, ACTIONS(407), 2, sym_identifier, anon_sym_else, STATE(292), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(405), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, [15055] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(516), 2, sym_identifier, anon_sym_else, ACTIONS(514), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [15069] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(496), 2, sym_identifier, anon_sym_else, ACTIONS(494), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, [15083] = 3, ACTIONS(3), 1, sym__comment, STATE(39), 1, sym_assignment_operator, ACTIONS(248), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [15095] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(550), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15105] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(316), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15115] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(542), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15125] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(554), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15135] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(534), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15145] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(526), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15155] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(387), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15165] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(530), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15175] = 3, ACTIONS(3), 1, sym__comment, STATE(34), 1, sym_assignment_operator, ACTIONS(248), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [15187] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(538), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15197] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(566), 1, anon_sym_SEMI, ACTIONS(316), 3, anon_sym_RBRACE, anon_sym_COMMA, sym_identifier, [15209] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(522), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15219] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(546), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, [15229] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(665), 1, sym_identifier, ACTIONS(667), 1, anon_sym_RBRACE, STATE(331), 1, aux_sym_map_repeat1, [15242] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(669), 1, anon_sym_async, ACTIONS(671), 1, anon_sym_LBRACE, STATE(134), 1, sym_block, [15255] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(675), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15268] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(570), 1, anon_sym_async, ACTIONS(572), 1, anon_sym_LBRACE, STATE(101), 1, sym_block, [15281] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(677), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, [15290] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(574), 1, anon_sym_async, ACTIONS(576), 1, anon_sym_LBRACE, STATE(234), 1, sym_block, [15303] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(679), 1, anon_sym_PIPE, STATE(311), 1, aux_sym_identifier_list_repeat1, [15316] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(683), 1, anon_sym_COMMA, ACTIONS(681), 2, anon_sym_RBRACE, sym_identifier, [15327] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(687), 1, anon_sym_COMMA, ACTIONS(685), 2, sym_identifier, anon_sym_PIPE, [15338] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(570), 1, anon_sym_async, ACTIONS(572), 1, anon_sym_LBRACE, STATE(301), 1, sym_block, [15351] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(689), 1, anon_sym_async, ACTIONS(691), 1, anon_sym_LBRACE, STATE(72), 1, sym_block, [15364] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(570), 1, anon_sym_async, ACTIONS(572), 1, anon_sym_LBRACE, STATE(103), 1, sym_block, [15377] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(41), 1, anon_sym_RBRACE, ACTIONS(665), 1, sym_identifier, STATE(329), 1, aux_sym_map_repeat1, [15390] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(693), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15403] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(695), 1, anon_sym_PIPE, STATE(325), 1, aux_sym_identifier_list_repeat1, [15416] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(697), 1, anon_sym_PIPE, STATE(326), 1, aux_sym_identifier_list_repeat1, [15429] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(699), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15442] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(701), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15455] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(578), 1, anon_sym_async, ACTIONS(580), 1, anon_sym_LBRACE, STATE(134), 1, sym_block, [15468] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(665), 1, sym_identifier, ACTIONS(703), 1, anon_sym_RBRACE, STATE(336), 1, aux_sym_map_repeat1, [15481] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(665), 1, sym_identifier, ACTIONS(705), 1, anon_sym_RBRACE, STATE(331), 1, aux_sym_map_repeat1, [15494] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(707), 1, anon_sym_async, ACTIONS(709), 1, anon_sym_LBRACE, STATE(261), 1, sym_block, [15507] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(711), 1, sym_identifier, ACTIONS(714), 1, anon_sym_RBRACE, STATE(331), 1, aux_sym_map_repeat1, [15520] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(716), 1, anon_sym_PIPE, STATE(322), 1, aux_sym_identifier_list_repeat1, [15533] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(689), 1, anon_sym_async, ACTIONS(691), 1, anon_sym_LBRACE, STATE(65), 1, sym_block, [15546] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(718), 1, sym_identifier, ACTIONS(721), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15559] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(43), 1, anon_sym_RBRACE, ACTIONS(665), 1, sym_identifier, STATE(309), 1, aux_sym_map_repeat1, [15572] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(665), 1, sym_identifier, ACTIONS(723), 1, anon_sym_RBRACE, STATE(331), 1, aux_sym_map_repeat1, [15585] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(574), 1, anon_sym_async, ACTIONS(576), 1, anon_sym_LBRACE, STATE(226), 1, sym_block, [15598] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(578), 1, anon_sym_async, ACTIONS(580), 1, anon_sym_LBRACE, STATE(128), 1, sym_block, [15611] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(669), 1, anon_sym_async, ACTIONS(671), 1, anon_sym_LBRACE, STATE(128), 1, sym_block, [15624] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(725), 1, anon_sym_PIPE, STATE(334), 1, aux_sym_identifier_list_repeat1, [15637] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(673), 1, sym_identifier, ACTIONS(727), 1, anon_sym_PIPE, STATE(340), 1, aux_sym_identifier_list_repeat1, [15650] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(186), 1, sym_identifier_list, [15660] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(198), 1, sym_identifier_list, [15670] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(731), 2, anon_sym_RBRACE, sym_identifier, [15678] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(166), 1, sym_identifier_list, [15688] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(207), 1, sym_identifier_list, [15698] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(203), 1, sym_identifier_list, [15708] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(170), 1, sym_identifier_list, [15718] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(206), 1, sym_identifier_list, [15728] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(721), 2, sym_identifier, anon_sym_PIPE, [15736] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(729), 1, anon_sym_PIPE, STATE(214), 1, sym_identifier_list, [15746] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(733), 1, sym_identifier, [15753] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(735), 1, sym_string, [15760] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(737), 1, anon_sym_in, [15767] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(739), 1, anon_sym_LBRACE, [15774] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(741), 1, anon_sym_LBRACE, [15781] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(743), 1, anon_sym_LPAREN, [15788] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(745), 1, anon_sym_LPAREN, [15795] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(747), 1, anon_sym_EQ, [15802] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(749), 1, sym_string, [15809] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(751), 1, sym_identifier, [15816] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(753), 1, ts_builtin_sym_end, [15823] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(755), 1, anon_sym_LBRACE, [15830] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(757), 1, anon_sym_LPAREN, [15837] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(759), 1, anon_sym_GT, [15844] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(761), 1, anon_sym_LBRACE, [15851] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(763), 1, anon_sym_LBRACE, [15858] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(765), 1, anon_sym_LBRACE, [15865] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(767), 1, anon_sym_LBRACE, [15872] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(769), 1, anon_sym_in, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 102, [SMALL_STATE(4)] = 204, [SMALL_STATE(5)] = 304, [SMALL_STATE(6)] = 403, [SMALL_STATE(7)] = 502, [SMALL_STATE(8)] = 601, [SMALL_STATE(9)] = 700, [SMALL_STATE(10)] = 799, [SMALL_STATE(11)] = 898, [SMALL_STATE(12)] = 997, [SMALL_STATE(13)] = 1096, [SMALL_STATE(14)] = 1195, [SMALL_STATE(15)] = 1294, [SMALL_STATE(16)] = 1393, [SMALL_STATE(17)] = 1492, [SMALL_STATE(18)] = 1591, [SMALL_STATE(19)] = 1690, [SMALL_STATE(20)] = 1789, [SMALL_STATE(21)] = 1885, [SMALL_STATE(22)] = 1981, [SMALL_STATE(23)] = 2077, [SMALL_STATE(24)] = 2173, [SMALL_STATE(25)] = 2269, [SMALL_STATE(26)] = 2365, [SMALL_STATE(27)] = 2461, [SMALL_STATE(28)] = 2557, [SMALL_STATE(29)] = 2653, [SMALL_STATE(30)] = 2749, [SMALL_STATE(31)] = 2845, [SMALL_STATE(32)] = 2941, [SMALL_STATE(33)] = 3037, [SMALL_STATE(34)] = 3133, [SMALL_STATE(35)] = 3228, [SMALL_STATE(36)] = 3283, [SMALL_STATE(37)] = 3378, [SMALL_STATE(38)] = 3473, [SMALL_STATE(39)] = 3568, [SMALL_STATE(40)] = 3663, [SMALL_STATE(41)] = 3754, [SMALL_STATE(42)] = 3821, [SMALL_STATE(43)] = 3912, [SMALL_STATE(44)] = 3969, [SMALL_STATE(45)] = 4036, [SMALL_STATE(46)] = 4127, [SMALL_STATE(47)] = 4184, [SMALL_STATE(48)] = 4239, [SMALL_STATE(49)] = 4330, [SMALL_STATE(50)] = 4425, [SMALL_STATE(51)] = 4516, [SMALL_STATE(52)] = 4611, [SMALL_STATE(53)] = 4702, [SMALL_STATE(54)] = 4797, [SMALL_STATE(55)] = 4885, [SMALL_STATE(56)] = 4973, [SMALL_STATE(57)] = 5027, [SMALL_STATE(58)] = 5093, [SMALL_STATE(59)] = 5149, [SMALL_STATE(60)] = 5215, [SMALL_STATE(61)] = 5275, [SMALL_STATE(62)] = 5324, [SMALL_STATE(63)] = 5373, [SMALL_STATE(64)] = 5422, [SMALL_STATE(65)] = 5471, [SMALL_STATE(66)] = 5520, [SMALL_STATE(67)] = 5569, [SMALL_STATE(68)] = 5618, [SMALL_STATE(69)] = 5667, [SMALL_STATE(70)] = 5716, [SMALL_STATE(71)] = 5765, [SMALL_STATE(72)] = 5814, [SMALL_STATE(73)] = 5863, [SMALL_STATE(74)] = 5918, [SMALL_STATE(75)] = 5967, [SMALL_STATE(76)] = 6016, [SMALL_STATE(77)] = 6065, [SMALL_STATE(78)] = 6124, [SMALL_STATE(79)] = 6173, [SMALL_STATE(80)] = 6238, [SMALL_STATE(81)] = 6301, [SMALL_STATE(82)] = 6364, [SMALL_STATE(83)] = 6434, [SMALL_STATE(84)] = 6504, [SMALL_STATE(85)] = 6544, [SMALL_STATE(86)] = 6588, [SMALL_STATE(87)] = 6634, [SMALL_STATE(88)] = 6690, [SMALL_STATE(89)] = 6736, [SMALL_STATE(90)] = 6792, [SMALL_STATE(91)] = 6832, [SMALL_STATE(92)] = 6876, [SMALL_STATE(93)] = 6931, [SMALL_STATE(94)] = 6976, [SMALL_STATE(95)] = 7019, [SMALL_STATE(96)] = 7074, [SMALL_STATE(97)] = 7112, [SMALL_STATE(98)] = 7150, [SMALL_STATE(99)] = 7206, [SMALL_STATE(100)] = 7244, [SMALL_STATE(101)] = 7282, [SMALL_STATE(102)] = 7320, [SMALL_STATE(103)] = 7358, [SMALL_STATE(104)] = 7396, [SMALL_STATE(105)] = 7452, [SMALL_STATE(106)] = 7490, [SMALL_STATE(107)] = 7528, [SMALL_STATE(108)] = 7566, [SMALL_STATE(109)] = 7604, [SMALL_STATE(110)] = 7642, [SMALL_STATE(111)] = 7680, [SMALL_STATE(112)] = 7718, [SMALL_STATE(113)] = 7778, [SMALL_STATE(114)] = 7838, [SMALL_STATE(115)] = 7881, [SMALL_STATE(116)] = 7924, [SMALL_STATE(117)] = 7961, [SMALL_STATE(118)] = 7998, [SMALL_STATE(119)] = 8035, [SMALL_STATE(120)] = 8069, [SMALL_STATE(121)] = 8127, [SMALL_STATE(122)] = 8161, [SMALL_STATE(123)] = 8195, [SMALL_STATE(124)] = 8229, [SMALL_STATE(125)] = 8263, [SMALL_STATE(126)] = 8297, [SMALL_STATE(127)] = 8331, [SMALL_STATE(128)] = 8365, [SMALL_STATE(129)] = 8399, [SMALL_STATE(130)] = 8433, [SMALL_STATE(131)] = 8491, [SMALL_STATE(132)] = 8525, [SMALL_STATE(133)] = 8583, [SMALL_STATE(134)] = 8621, [SMALL_STATE(135)] = 8655, [SMALL_STATE(136)] = 8689, [SMALL_STATE(137)] = 8747, [SMALL_STATE(138)] = 8805, [SMALL_STATE(139)] = 8863, [SMALL_STATE(140)] = 8921, [SMALL_STATE(141)] = 8979, [SMALL_STATE(142)] = 9013, [SMALL_STATE(143)] = 9071, [SMALL_STATE(144)] = 9129, [SMALL_STATE(145)] = 9187, [SMALL_STATE(146)] = 9245, [SMALL_STATE(147)] = 9303, [SMALL_STATE(148)] = 9361, [SMALL_STATE(149)] = 9394, [SMALL_STATE(150)] = 9431, [SMALL_STATE(151)] = 9470, [SMALL_STATE(152)] = 9507, [SMALL_STATE(153)] = 9556, [SMALL_STATE(154)] = 9595, [SMALL_STATE(155)] = 9644, [SMALL_STATE(156)] = 9677, [SMALL_STATE(157)] = 9729, [SMALL_STATE(158)] = 9781, [SMALL_STATE(159)] = 9813, [SMALL_STATE(160)] = 9865, [SMALL_STATE(161)] = 9917, [SMALL_STATE(162)] = 9949, [SMALL_STATE(163)] = 10001, [SMALL_STATE(164)] = 10053, [SMALL_STATE(165)] = 10105, [SMALL_STATE(166)] = 10157, [SMALL_STATE(167)] = 10209, [SMALL_STATE(168)] = 10261, [SMALL_STATE(169)] = 10313, [SMALL_STATE(170)] = 10365, [SMALL_STATE(171)] = 10417, [SMALL_STATE(172)] = 10469, [SMALL_STATE(173)] = 10521, [SMALL_STATE(174)] = 10557, [SMALL_STATE(175)] = 10609, [SMALL_STATE(176)] = 10657, [SMALL_STATE(177)] = 10695, [SMALL_STATE(178)] = 10743, [SMALL_STATE(179)] = 10775, [SMALL_STATE(180)] = 10827, [SMALL_STATE(181)] = 10879, [SMALL_STATE(182)] = 10931, [SMALL_STATE(183)] = 10983, [SMALL_STATE(184)] = 11035, [SMALL_STATE(185)] = 11077, [SMALL_STATE(186)] = 11129, [SMALL_STATE(187)] = 11181, [SMALL_STATE(188)] = 11233, [SMALL_STATE(189)] = 11285, [SMALL_STATE(190)] = 11337, [SMALL_STATE(191)] = 11389, [SMALL_STATE(192)] = 11441, [SMALL_STATE(193)] = 11493, [SMALL_STATE(194)] = 11545, [SMALL_STATE(195)] = 11597, [SMALL_STATE(196)] = 11649, [SMALL_STATE(197)] = 11701, [SMALL_STATE(198)] = 11733, [SMALL_STATE(199)] = 11785, [SMALL_STATE(200)] = 11837, [SMALL_STATE(201)] = 11889, [SMALL_STATE(202)] = 11941, [SMALL_STATE(203)] = 11993, [SMALL_STATE(204)] = 12045, [SMALL_STATE(205)] = 12097, [SMALL_STATE(206)] = 12149, [SMALL_STATE(207)] = 12201, [SMALL_STATE(208)] = 12253, [SMALL_STATE(209)] = 12305, [SMALL_STATE(210)] = 12357, [SMALL_STATE(211)] = 12409, [SMALL_STATE(212)] = 12461, [SMALL_STATE(213)] = 12513, [SMALL_STATE(214)] = 12565, [SMALL_STATE(215)] = 12617, [SMALL_STATE(216)] = 12669, [SMALL_STATE(217)] = 12721, [SMALL_STATE(218)] = 12773, [SMALL_STATE(219)] = 12825, [SMALL_STATE(220)] = 12856, [SMALL_STATE(221)] = 12893, [SMALL_STATE(222)] = 12924, [SMALL_STATE(223)] = 12954, [SMALL_STATE(224)] = 12986, [SMALL_STATE(225)] = 13016, [SMALL_STATE(226)] = 13046, [SMALL_STATE(227)] = 13076, [SMALL_STATE(228)] = 13106, [SMALL_STATE(229)] = 13136, [SMALL_STATE(230)] = 13166, [SMALL_STATE(231)] = 13196, [SMALL_STATE(232)] = 13226, [SMALL_STATE(233)] = 13256, [SMALL_STATE(234)] = 13286, [SMALL_STATE(235)] = 13316, [SMALL_STATE(236)] = 13346, [SMALL_STATE(237)] = 13376, [SMALL_STATE(238)] = 13411, [SMALL_STATE(239)] = 13454, [SMALL_STATE(240)] = 13489, [SMALL_STATE(241)] = 13532, [SMALL_STATE(242)] = 13575, [SMALL_STATE(243)] = 13608, [SMALL_STATE(244)] = 13653, [SMALL_STATE(245)] = 13696, [SMALL_STATE(246)] = 13729, [SMALL_STATE(247)] = 13763, [SMALL_STATE(248)] = 13805, [SMALL_STATE(249)] = 13851, [SMALL_STATE(250)] = 13897, [SMALL_STATE(251)] = 13943, [SMALL_STATE(252)] = 13989, [SMALL_STATE(253)] = 14035, [SMALL_STATE(254)] = 14081, [SMALL_STATE(255)] = 14113, [SMALL_STATE(256)] = 14159, [SMALL_STATE(257)] = 14205, [SMALL_STATE(258)] = 14247, [SMALL_STATE(259)] = 14274, [SMALL_STATE(260)] = 14314, [SMALL_STATE(261)] = 14354, [SMALL_STATE(262)] = 14376, [SMALL_STATE(263)] = 14398, [SMALL_STATE(264)] = 14420, [SMALL_STATE(265)] = 14449, [SMALL_STATE(266)] = 14480, [SMALL_STATE(267)] = 14511, [SMALL_STATE(268)] = 14541, [SMALL_STATE(269)] = 14561, [SMALL_STATE(270)] = 14581, [SMALL_STATE(271)] = 14611, [SMALL_STATE(272)] = 14639, [SMALL_STATE(273)] = 14656, [SMALL_STATE(274)] = 14673, [SMALL_STATE(275)] = 14692, [SMALL_STATE(276)] = 14709, [SMALL_STATE(277)] = 14728, [SMALL_STATE(278)] = 14747, [SMALL_STATE(279)] = 14766, [SMALL_STATE(280)] = 14785, [SMALL_STATE(281)] = 14802, [SMALL_STATE(282)] = 14821, [SMALL_STATE(283)] = 14838, [SMALL_STATE(284)] = 14859, [SMALL_STATE(285)] = 14880, [SMALL_STATE(286)] = 14901, [SMALL_STATE(287)] = 14926, [SMALL_STATE(288)] = 14947, [SMALL_STATE(289)] = 14968, [SMALL_STATE(290)] = 14989, [SMALL_STATE(291)] = 15010, [SMALL_STATE(292)] = 15035, [SMALL_STATE(293)] = 15055, [SMALL_STATE(294)] = 15069, [SMALL_STATE(295)] = 15083, [SMALL_STATE(296)] = 15095, [SMALL_STATE(297)] = 15105, [SMALL_STATE(298)] = 15115, [SMALL_STATE(299)] = 15125, [SMALL_STATE(300)] = 15135, [SMALL_STATE(301)] = 15145, [SMALL_STATE(302)] = 15155, [SMALL_STATE(303)] = 15165, [SMALL_STATE(304)] = 15175, [SMALL_STATE(305)] = 15187, [SMALL_STATE(306)] = 15197, [SMALL_STATE(307)] = 15209, [SMALL_STATE(308)] = 15219, [SMALL_STATE(309)] = 15229, [SMALL_STATE(310)] = 15242, [SMALL_STATE(311)] = 15255, [SMALL_STATE(312)] = 15268, [SMALL_STATE(313)] = 15281, [SMALL_STATE(314)] = 15290, [SMALL_STATE(315)] = 15303, [SMALL_STATE(316)] = 15316, [SMALL_STATE(317)] = 15327, [SMALL_STATE(318)] = 15338, [SMALL_STATE(319)] = 15351, [SMALL_STATE(320)] = 15364, [SMALL_STATE(321)] = 15377, [SMALL_STATE(322)] = 15390, [SMALL_STATE(323)] = 15403, [SMALL_STATE(324)] = 15416, [SMALL_STATE(325)] = 15429, [SMALL_STATE(326)] = 15442, [SMALL_STATE(327)] = 15455, [SMALL_STATE(328)] = 15468, [SMALL_STATE(329)] = 15481, [SMALL_STATE(330)] = 15494, [SMALL_STATE(331)] = 15507, [SMALL_STATE(332)] = 15520, [SMALL_STATE(333)] = 15533, [SMALL_STATE(334)] = 15546, [SMALL_STATE(335)] = 15559, [SMALL_STATE(336)] = 15572, [SMALL_STATE(337)] = 15585, [SMALL_STATE(338)] = 15598, [SMALL_STATE(339)] = 15611, [SMALL_STATE(340)] = 15624, [SMALL_STATE(341)] = 15637, [SMALL_STATE(342)] = 15650, [SMALL_STATE(343)] = 15660, [SMALL_STATE(344)] = 15670, [SMALL_STATE(345)] = 15678, [SMALL_STATE(346)] = 15688, [SMALL_STATE(347)] = 15698, [SMALL_STATE(348)] = 15708, [SMALL_STATE(349)] = 15718, [SMALL_STATE(350)] = 15728, [SMALL_STATE(351)] = 15736, [SMALL_STATE(352)] = 15746, [SMALL_STATE(353)] = 15753, [SMALL_STATE(354)] = 15760, [SMALL_STATE(355)] = 15767, [SMALL_STATE(356)] = 15774, [SMALL_STATE(357)] = 15781, [SMALL_STATE(358)] = 15788, [SMALL_STATE(359)] = 15795, [SMALL_STATE(360)] = 15802, [SMALL_STATE(361)] = 15809, [SMALL_STATE(362)] = 15816, [SMALL_STATE(363)] = 15823, [SMALL_STATE(364)] = 15830, [SMALL_STATE(365)] = 15837, [SMALL_STATE(366)] = 15844, [SMALL_STATE(367)] = 15851, [SMALL_STATE(368)] = 15858, [SMALL_STATE(369)] = 15865, [SMALL_STATE(370)] = 15872, }; 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(60), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(60), [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363), [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(201), [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75), [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75), [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(63), [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(145), [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(159), [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160), [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168), [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352), [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352), [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(332), [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(349), [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(187), [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360), [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), [164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3), [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3), [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(124), [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(335), [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(192), [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(126), [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(126), [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(125), [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(140), [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(323), [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(343), [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(171), [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(105), [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(328), [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(209), [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99), [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99), [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(100), [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(139), [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315), [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(348), [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(105), [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(328), [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(209), [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99), [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99), [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(100), [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(139), [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(315), [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(348), [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1), [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1), [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 2), [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 2), [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(273), [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(266), [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(288), [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(282), [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(211), [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(359), [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(317), [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [753] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), }; #ifdef __cplusplus extern "C" { #endif #ifdef _WIN32 #define extern __declspec(dllexport) #endif extern const TSLanguage *tree_sitter_dust(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], .small_parse_table = ts_small_parse_table, .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .primary_state_ids = ts_primary_state_ids, }; return &language; } #ifdef __cplusplus } #endif