diff --git a/corpus/control_flow.txt b/corpus/control_flow.txt index c8cf7a2..1e7c226 100644 --- a/corpus/control_flow.txt +++ b/corpus/control_flow.txt @@ -9,16 +9,14 @@ if true then "True" (root (item (statement - (expression - (control_flow + (control_flow + (expression + (value + (boolean))) + (statement (expression (value - (boolean))) - (statement - (expression - (value - (string))))))))) - + (string)))))))) ================== If/Then Assignment @@ -29,18 +27,89 @@ x = if true then 1 --- (root + (item + (statement + (assignment + (identifier) + (expression + (identifier))))) (item (statement (expression - (assignment - (identifier) - (statement + (value + (boolean))))) + (item + (statement + (expression + (identifier)))) + (item + (statement + (expression + (value + (integer)))))) + +================== +If/Else +================== + +if false then "True" else "False" + +--- + +(root + (item + (statement + (control_flow + (expression + (value + (boolean))) + (statement + (expression + (value + (string)))) + (statement + (expression + (value + (string)))))))) + +================== +If/Else If +================== + +if 1 == 1 + then "math is fun" +else if 4 == 9 + then "math is broken" + +--- + +(root + (item + (statement + (control_flow + (expression + (logic (expression - (control_flow - (expression - (value - (boolean))) - (statement - (expression - (value - (integer)))))))))))) + (value + (integer))) + (logic_operator) + (expression + (value + (integer))))) + (statement + (expression + (value + (string)))) + (expression + (logic + (expression + (value + (integer))) + (logic_operator) + (expression + (value + (integer))))) + (statement + (expression + (value + (string)))))))) diff --git a/corpus/lists.txt b/corpus/lists.txt index 6543db7..5fa8be0 100644 --- a/corpus/lists.txt +++ b/corpus/lists.txt @@ -28,17 +28,15 @@ foobar = ['answer', 42] (root (item (statement - (expression - (assignment - (identifier) - (statement - (expression + (assignment + (identifier) + (expression + (value + (list (value - (list - (value - (string)) - (value - (integer))))))))))) + (string)) + (value + (integer))))))))) ================== List Nesting @@ -64,3 +62,28 @@ List Nesting (list (value (integer)))))))))))) + +================== +Optional Commas +================== + +['answers' [42 [666]]] + +--- + +(root + (item + (statement + (expression + (value + (list + (value + (string)) + (value + (list + (value + (integer)) + (value + (list + (value + (integer)))))))))))) diff --git a/corpus/operators.txt b/corpus/operators.txt index 1096288..e84db2a 100644 --- a/corpus/operators.txt +++ b/corpus/operators.txt @@ -23,7 +23,7 @@ Simple Equality Complex Equality ================== -(1 + 1) == 2 +1 + 1 + 1 != 3 --- @@ -35,8 +35,14 @@ Complex Equality (expression (math (expression - (value - (integer))) + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) (math_operator) (expression (value diff --git a/corpus/statements.txt b/corpus/statements.txt index dddd66d..e88e16a 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -36,22 +36,18 @@ y = "one" (root (item (statement - (expression - (assignment - (identifier) - (statement - (expression - (value - (integer)))))))) + (assignment + (identifier) + (expression + (value + (integer)))))) (item (statement - (expression - (assignment - (identifier) - (statement - (expression - (value - (string))))))))) + (assignment + (identifier) + (expression + (value + (string))))))) ================== Complex Assignment @@ -59,21 +55,19 @@ Complex Assignment x = 1 + 1 ---- +-- (root (item (statement - (expression - (assignment - (identifier) - (statement + (assignment + (identifier) + (expression + (math (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))))))))) + (value + (integer))) + (math_operator) + (expression + (value + (integer))))))))) diff --git a/corpus/tables.txt b/corpus/tables.txt index 21b29d1..4a44f5f 100644 --- a/corpus/tables.txt +++ b/corpus/tables.txt @@ -35,21 +35,19 @@ foobar = table { (root (item (statement - (expression - (assignment - (identifier) - (statement - (expression - (value - (table - (identifier) - (identifier) - (list - (value - (string)) - (value - (integer)))))))))))) - + (assignment + (identifier) + (expression + (value + (table + (identifier) + (identifier) + (list + (value + (string)) + (value + (integer)))))))))) + ================== Table Access ================== @@ -61,18 +59,17 @@ select number from foobar where text == 'answer' (root (item (statement - (expression - (select - (identifier) - (identifier) - (expression - (logic - (expression - (identifier)) - (logic_operator) - (expression - (value - (string)))))))))) + (select + (identifier) + (identifier) + (expression + (logic + (expression + (identifier)) + (logic_operator) + (expression + (value + (string))))))))) ================== @@ -86,11 +83,10 @@ insert ['bob was here', 0] into foobar (root (item (statement - (expression - (insert - (list - (value - (string)) - (value - (integer))) - (identifier)))))) + (insert + (list + (value + (string)) + (value + (integer))) + (identifier))))) diff --git a/corpus/yield.txt b/corpus/yield.txt index 2bf878a..ce9f22a 100644 --- a/corpus/yield.txt +++ b/corpus/yield.txt @@ -41,31 +41,3 @@ Complex Yield (identifier)) (expression (identifier)))))) - -================== -Yield Assignment -================== - -x = 1 + 1 -> to_string - ---- - -(root - (item - (statement - (expression - (assignment - (identifier) - (statement - (yield - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))) - (expression - (identifier))))))))) diff --git a/grammar.js b/grammar.js index 3ffd532..125e50e 100644 --- a/grammar.js +++ b/grammar.js @@ -5,20 +5,26 @@ module.exports = grammar({ rules: { root: $ => repeat1($.item), - + item: $ => choice( $.comment, $.statement, ), - comment: $ => seq(token('#'), /.*/), + comment: $ => seq('#', /.*/), - statement: $ => prec.right(choice( + statement: $ => prec.right(1, choice( + $.assignment, $.expression, + $.control_flow, $.yield, + $.insert, + $.select, + $.loop, + $.match, )), - - yield: $ => prec.left( + + yield: $ => prec.right(2, seq( $.expression, '->', @@ -27,23 +33,12 @@ module.exports = grammar({ ) ), - expression: $ => choice( - $._expression_kind, - seq('(', $._expression_kind, ')') - ), - - _expression_kind: $ => prec.right(choice( + expression: $ => prec.right(choice( $.value, $.identifier, - $.control_flow, - $.select, - $.insert, $.function_call, - $.assignment, $.math, $.logic, - $.loop, - $.match, )), identifier: $ => /[a-z|_|.]+[0-9]?/, @@ -59,10 +54,10 @@ module.exports = grammar({ $.map, ), - float: $ => /[-]*[0-9]*[.]{1}[0-9]+/, - integer: $ => /[-]*[0-9]+[.]{0}/, + float: $ => /[-]*[0-9]*[.]{1}[0-9]+/, + string: $ => /("[^"]*?")|('[^']*?')|(`[^`]*?`)/, boolean: $ => choice( @@ -94,11 +89,11 @@ module.exports = grammar({ map: $ => seq( '{', - repeat(seq($.identifier, "=", $.value)), + repeat(seq($.identifier, "=", $.value)), // TODO: Replace value with expression '}', ), - math: $ => prec.right(seq( + math: $ => prec.left(seq( $.expression, $.math_operator, $.expression, @@ -112,7 +107,7 @@ module.exports = grammar({ '%', ), - logic: $ => prec.right(seq( + logic: $ => prec.left(seq( $.expression, $.logic_operator, $.expression, @@ -120,6 +115,7 @@ module.exports = grammar({ logic_operator: $ => choice( '==', + '!=', '&&', '||', 'and', @@ -129,7 +125,7 @@ module.exports = grammar({ assignment: $ => prec.right(seq( $.identifier, choice("=", "+=", "-="), - $.statement, + $.expression, )), select: $ => prec.right(seq( @@ -154,14 +150,19 @@ module.exports = grammar({ control_flow: $ => prec.right(seq( 'if', - field('if_expression', $.expression), + $.expression, 'then', - field('then_statement', $.statement), - optional( - seq('else', - field('else_statement', $.statement), - ), - ), + $.statement, + prec.left(repeat(seq( + 'else if', + $.expression, + 'then', + $.statement, + ))), + optional(seq( + 'else', + $.statement, + )), )), function_call: $ => prec.right(seq( @@ -187,7 +188,9 @@ module.exports = grammar({ break_loop: $ => seq( 'loop', '{', - $.statement, + repeat($.statement), + 'break', + optional($.value), '}', ), diff --git a/src/grammar.json b/src/grammar.json index fea38f8..a46557e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -26,11 +26,8 @@ "type": "SEQ", "members": [ { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "#" - } + "type": "STRING", + "value": "#" }, { "type": "PATTERN", @@ -40,24 +37,48 @@ }, "statement": { "type": "PREC_RIGHT", - "value": 0, + "value": 1, "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "assignment" + }, { "type": "SYMBOL", "name": "expression" }, + { + "type": "SYMBOL", + "name": "control_flow" + }, { "type": "SYMBOL", "name": "yield" + }, + { + "type": "SYMBOL", + "name": "insert" + }, + { + "type": "SYMBOL", + "name": "select" + }, + { + "type": "SYMBOL", + "name": "loop" + }, + { + "type": "SYMBOL", + "name": "match" } ] } }, "yield": { - "type": "PREC_LEFT", - "value": 0, + "type": "PREC_RIGHT", + "value": 2, "content": { "type": "SEQ", "members": [ @@ -97,32 +118,6 @@ } }, "expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_kind" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expression_kind" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_expression_kind": { "type": "PREC_RIGHT", "value": 0, "content": { @@ -136,26 +131,10 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "control_flow" - }, - { - "type": "SYMBOL", - "name": "select" - }, - { - "type": "SYMBOL", - "name": "insert" - }, { "type": "SYMBOL", "name": "function_call" }, - { - "type": "SYMBOL", - "name": "assignment" - }, { "type": "SYMBOL", "name": "math" @@ -163,14 +142,6 @@ { "type": "SYMBOL", "name": "logic" - }, - { - "type": "SYMBOL", - "name": "loop" - }, - { - "type": "SYMBOL", - "name": "match" } ] } @@ -216,14 +187,14 @@ } ] }, - "float": { - "type": "PATTERN", - "value": "[-]*[0-9]*[.]{1}[0-9]+" - }, "integer": { "type": "PATTERN", "value": "[-]*[0-9]+[.]{0}" }, + "float": { + "type": "PATTERN", + "value": "[-]*[0-9]*[.]{1}[0-9]+" + }, "string": { "type": "PATTERN", "value": "(\"[^\"]*?\")|('[^']*?')|(`[^`]*?`)" @@ -442,7 +413,7 @@ ] }, "math": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 0, "content": { "type": "SEQ", @@ -488,7 +459,7 @@ ] }, "logic": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 0, "content": { "type": "SEQ", @@ -515,6 +486,10 @@ "type": "STRING", "value": "==" }, + { + "type": "STRING", + "value": "!=" + }, { "type": "STRING", "value": "&&" @@ -562,7 +537,7 @@ }, { "type": "SYMBOL", - "name": "statement" + "name": "expression" } ] } @@ -673,23 +648,43 @@ "value": "if" }, { - "type": "FIELD", - "name": "if_expression", - "content": { - "type": "SYMBOL", - "name": "expression" - } + "type": "SYMBOL", + "name": "expression" }, { "type": "STRING", "value": "then" }, { - "type": "FIELD", - "name": "then_statement", + "type": "SYMBOL", + "name": "statement" + }, + { + "type": "PREC_LEFT", + "value": 0, "content": { - "type": "SYMBOL", - "name": "statement" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else if" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "then" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + } } }, { @@ -703,12 +698,8 @@ "value": "else" }, { - "type": "FIELD", - "name": "else_statement", - "content": { - "type": "SYMBOL", - "name": "statement" - } + "type": "SYMBOL", + "name": "statement" } ] }, @@ -803,8 +794,27 @@ "value": "{" }, { - "type": "SYMBOL", - "name": "statement" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "value" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index d54d97b..0b08e3a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -8,11 +8,11 @@ "required": true, "types": [ { - "type": "identifier", + "type": "expression", "named": true }, { - "type": "statement", + "type": "identifier", "named": true } ] @@ -28,12 +28,16 @@ "named": true, "fields": {}, "children": { - "multiple": false, - "required": true, + "multiple": true, + "required": false, "types": [ { "type": "statement", "named": true + }, + { + "type": "value", + "named": true } ] } @@ -46,37 +50,20 @@ { "type": "control_flow", "named": true, - "fields": { - "else_statement": { - "multiple": false, - "required": false, - "types": [ - { - "type": "statement", - "named": true - } - ] - }, - "if_expression": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - }, - "then_statement": { - "multiple": false, - "required": true, - "types": [ - { - "type": "statement", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "statement", + "named": true + } + ] } }, { @@ -87,14 +74,6 @@ "multiple": false, "required": true, "types": [ - { - "type": "assignment", - "named": true - }, - { - "type": "control_flow", - "named": true - }, { "type": "function_call", "named": true @@ -103,30 +82,14 @@ "type": "identifier", "named": true }, - { - "type": "insert", - "named": true - }, { "type": "logic", "named": true }, - { - "type": "loop", - "named": true - }, - { - "type": "match", - "named": true - }, { "type": "math", "named": true }, - { - "type": "select", - "named": true - }, { "type": "value", "named": true @@ -376,10 +339,34 @@ "multiple": false, "required": true, "types": [ + { + "type": "assignment", + "named": true + }, + { + "type": "control_flow", + "named": true + }, { "type": "expression", "named": true }, + { + "type": "insert", + "named": true + }, + { + "type": "loop", + "named": true + }, + { + "type": "match", + "named": true + }, + { + "type": "select", + "named": true + }, { "type": "yield", "named": true @@ -483,6 +470,10 @@ ] } }, + { + "type": "!=", + "named": false + }, { "type": "#", "named": false @@ -495,14 +486,6 @@ "type": "&&", "named": false }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, { "type": "*", "named": false @@ -567,10 +550,18 @@ "type": "and", "named": false }, + { + "type": "break", + "named": false + }, { "type": "else", "named": false }, + { + "type": "else if", + "named": false + }, { "type": "false", "named": false diff --git a/src/parser.c b/src/parser.c index 0a662d0..4aa1dfa 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,69 +6,69 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 427 -#define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 81 +#define STATE_COUNT 400 +#define LARGE_STATE_COUNT 2 +#define SYMBOL_COUNT 82 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 46 +#define TOKEN_COUNT 47 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 3 +#define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 3 +#define PRODUCTION_ID_COUNT 1 enum { sym_identifier = 1, anon_sym_POUND = 2, aux_sym_comment_token1 = 3, anon_sym_DASH_GT = 4, - anon_sym_LPAREN = 5, - anon_sym_RPAREN = 6, - sym_float = 7, - sym_integer = 8, - sym_string = 9, - anon_sym_true = 10, - anon_sym_false = 11, - anon_sym_LBRACK = 12, - anon_sym_COMMA = 13, - anon_sym_RBRACK = 14, - anon_sym_function = 15, - anon_sym_LT = 16, - anon_sym_GT = 17, - anon_sym_LBRACE = 18, - anon_sym_RBRACE = 19, - anon_sym_table = 20, - anon_sym_EQ = 21, - anon_sym_PLUS = 22, - anon_sym_DASH = 23, - anon_sym_STAR = 24, - anon_sym_SLASH = 25, - anon_sym_PERCENT = 26, - anon_sym_EQ_EQ = 27, - anon_sym_AMP_AMP = 28, - anon_sym_PIPE_PIPE = 29, - anon_sym_and = 30, - anon_sym_or = 31, - anon_sym_PLUS_EQ = 32, - anon_sym_DASH_EQ = 33, - anon_sym_select = 34, - anon_sym_from = 35, - anon_sym_where = 36, - anon_sym_insert = 37, - anon_sym_into = 38, - anon_sym_if = 39, - anon_sym_then = 40, + sym_integer = 5, + sym_float = 6, + sym_string = 7, + anon_sym_true = 8, + anon_sym_false = 9, + anon_sym_LBRACK = 10, + anon_sym_COMMA = 11, + anon_sym_RBRACK = 12, + anon_sym_function = 13, + anon_sym_LT = 14, + anon_sym_GT = 15, + anon_sym_LBRACE = 16, + anon_sym_RBRACE = 17, + anon_sym_table = 18, + anon_sym_EQ = 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_and = 29, + anon_sym_or = 30, + anon_sym_PLUS_EQ = 31, + anon_sym_DASH_EQ = 32, + anon_sym_select = 33, + anon_sym_from = 34, + anon_sym_where = 35, + anon_sym_insert = 36, + anon_sym_into = 37, + anon_sym_if = 38, + anon_sym_then = 39, + anon_sym_elseif = 40, anon_sym_else = 41, anon_sym_while = 42, anon_sym_loop = 43, - anon_sym_match = 44, - anon_sym_EQ_GT = 45, - sym_root = 46, - sym_item = 47, - sym_comment = 48, - sym_statement = 49, - sym_yield = 50, - sym_expression = 51, - sym__expression_kind = 52, + anon_sym_break = 44, + anon_sym_match = 45, + anon_sym_EQ_GT = 46, + sym_root = 47, + sym_item = 48, + sym_comment = 49, + sym_statement = 50, + sym_yield = 51, + sym_expression = 52, sym_value = 53, sym_boolean = 54, sym_list = 55, @@ -95,8 +95,9 @@ enum { aux_sym_function_repeat2 = 76, aux_sym_table_repeat1 = 77, aux_sym_map_repeat1 = 78, - aux_sym_function_call_repeat1 = 79, - aux_sym_match_repeat1 = 80, + aux_sym_control_flow_repeat1 = 79, + aux_sym_function_call_repeat1 = 80, + aux_sym_match_repeat1 = 81, }; static const char * const ts_symbol_names[] = { @@ -105,10 +106,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND] = "#", [aux_sym_comment_token1] = "comment_token1", [anon_sym_DASH_GT] = "->", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [sym_float] = "float", [sym_integer] = "integer", + [sym_float] = "float", [sym_string] = "string", [anon_sym_true] = "true", [anon_sym_false] = "false", @@ -128,6 +127,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", [anon_sym_and] = "and", @@ -141,9 +141,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_into] = "into", [anon_sym_if] = "if", [anon_sym_then] = "then", + [anon_sym_elseif] = "else if", [anon_sym_else] = "else", [anon_sym_while] = "while", [anon_sym_loop] = "loop", + [anon_sym_break] = "break", [anon_sym_match] = "match", [anon_sym_EQ_GT] = "=>", [sym_root] = "root", @@ -152,7 +154,6 @@ static const char * const ts_symbol_names[] = { [sym_statement] = "statement", [sym_yield] = "yield", [sym_expression] = "expression", - [sym__expression_kind] = "_expression_kind", [sym_value] = "value", [sym_boolean] = "boolean", [sym_list] = "list", @@ -179,6 +180,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_function_repeat2] = "function_repeat2", [aux_sym_table_repeat1] = "table_repeat1", [aux_sym_map_repeat1] = "map_repeat1", + [aux_sym_control_flow_repeat1] = "control_flow_repeat1", [aux_sym_function_call_repeat1] = "function_call_repeat1", [aux_sym_match_repeat1] = "match_repeat1", }; @@ -189,10 +191,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND] = anon_sym_POUND, [aux_sym_comment_token1] = aux_sym_comment_token1, [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [sym_float] = sym_float, [sym_integer] = sym_integer, + [sym_float] = sym_float, [sym_string] = sym_string, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, @@ -212,6 +212,7 @@ static const TSSymbol ts_symbol_map[] = { [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_and] = anon_sym_and, @@ -225,9 +226,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_into] = anon_sym_into, [anon_sym_if] = anon_sym_if, [anon_sym_then] = anon_sym_then, + [anon_sym_elseif] = anon_sym_elseif, [anon_sym_else] = anon_sym_else, [anon_sym_while] = anon_sym_while, [anon_sym_loop] = anon_sym_loop, + [anon_sym_break] = anon_sym_break, [anon_sym_match] = anon_sym_match, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [sym_root] = sym_root, @@ -236,7 +239,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_statement] = sym_statement, [sym_yield] = sym_yield, [sym_expression] = sym_expression, - [sym__expression_kind] = sym__expression_kind, [sym_value] = sym_value, [sym_boolean] = sym_boolean, [sym_list] = sym_list, @@ -263,6 +265,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_function_repeat2] = aux_sym_function_repeat2, [aux_sym_table_repeat1] = aux_sym_table_repeat1, [aux_sym_map_repeat1] = aux_sym_map_repeat1, + [aux_sym_control_flow_repeat1] = aux_sym_control_flow_repeat1, [aux_sym_function_call_repeat1] = aux_sym_function_call_repeat1, [aux_sym_match_repeat1] = aux_sym_match_repeat1, }; @@ -288,19 +291,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [sym_float] = { + [sym_integer] = { .visible = true, .named = true, }, - [sym_integer] = { + [sym_float] = { .visible = true, .named = true, }, @@ -380,6 +375,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_AMP_AMP] = { .visible = true, .named = false, @@ -432,6 +431,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_elseif] = { + .visible = true, + .named = false, + }, [anon_sym_else] = { .visible = true, .named = false, @@ -444,6 +447,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, [anon_sym_match] = { .visible = true, .named = false, @@ -476,10 +483,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression_kind] = { - .visible = false, - .named = true, - }, [sym_value] = { .visible = true, .named = true, @@ -584,6 +587,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_control_flow_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_function_call_repeat1] = { .visible = false, .named = false, @@ -594,34 +601,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { - field_else_statement = 1, - field_if_expression = 2, - field_then_statement = 3, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_else_statement] = "else_statement", - [field_if_expression] = "if_expression", - [field_then_statement] = "then_statement", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 2}, - [2] = {.index = 2, .length = 3}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_if_expression, 1}, - {field_then_statement, 3}, - [2] = - {field_else_statement, 5}, - {field_if_expression, 1}, - {field_then_statement, 3}, -}; - static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; @@ -637,427 +616,400 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 5, + [6] = 6, [7] = 7, - [8] = 4, - [9] = 5, - [10] = 10, - [11] = 7, - [12] = 7, - [13] = 4, - [14] = 5, - [15] = 7, - [16] = 4, + [8] = 5, + [9] = 9, + [10] = 7, + [11] = 5, + [12] = 6, + [13] = 7, + [14] = 14, + [15] = 6, + [16] = 9, [17] = 5, - [18] = 7, - [19] = 4, - [20] = 20, - [21] = 21, - [22] = 21, - [23] = 23, - [24] = 23, - [25] = 20, - [26] = 21, - [27] = 23, - [28] = 21, - [29] = 20, - [30] = 23, - [31] = 20, - [32] = 21, - [33] = 20, - [34] = 23, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 39, - [42] = 38, - [43] = 37, - [44] = 39, - [45] = 39, - [46] = 36, - [47] = 38, + [18] = 5, + [19] = 6, + [20] = 7, + [21] = 7, + [22] = 6, + [23] = 14, + [24] = 14, + [25] = 9, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 27, + [30] = 28, + [31] = 26, + [32] = 28, + [33] = 33, + [34] = 26, + [35] = 27, + [36] = 28, + [37] = 26, + [38] = 27, + [39] = 28, + [40] = 26, + [41] = 27, + [42] = 42, + [43] = 43, + [44] = 43, + [45] = 45, + [46] = 46, + [47] = 47, [48] = 48, - [49] = 35, - [50] = 40, + [49] = 46, + [50] = 45, [51] = 51, - [52] = 39, - [53] = 37, - [54] = 51, - [55] = 37, - [56] = 35, - [57] = 37, - [58] = 36, + [52] = 47, + [53] = 43, + [54] = 54, + [55] = 45, + [56] = 56, + [57] = 51, + [58] = 47, [59] = 59, [60] = 60, - [61] = 61, - [62] = 38, - [63] = 38, - [64] = 60, - [65] = 40, - [66] = 51, - [67] = 60, - [68] = 68, - [69] = 68, - [70] = 68, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 71, + [61] = 45, + [62] = 51, + [63] = 47, + [64] = 43, + [65] = 33, + [66] = 66, + [67] = 67, + [68] = 42, + [69] = 69, + [70] = 70, + [71] = 59, + [72] = 60, + [73] = 54, + [74] = 74, [75] = 75, - [76] = 73, - [77] = 72, + [76] = 76, + [77] = 77, [78] = 78, [79] = 79, [80] = 80, - [81] = 78, - [82] = 75, - [83] = 73, + [81] = 81, + [82] = 56, + [83] = 83, [84] = 84, - [85] = 71, - [86] = 75, - [87] = 71, + [85] = 85, + [86] = 86, + [87] = 67, [88] = 88, - [89] = 71, - [90] = 80, - [91] = 84, - [92] = 88, - [93] = 79, - [94] = 80, + [89] = 74, + [90] = 66, + [91] = 76, + [92] = 81, + [93] = 78, + [94] = 86, [95] = 84, - [96] = 78, - [97] = 80, - [98] = 79, - [99] = 72, - [100] = 88, - [101] = 101, - [102] = 88, - [103] = 78, - [104] = 79, - [105] = 79, - [106] = 101, - [107] = 71, - [108] = 73, - [109] = 78, - [110] = 101, - [111] = 75, - [112] = 80, - [113] = 88, - [114] = 71, - [115] = 71, - [116] = 75, - [117] = 73, + [96] = 83, + [97] = 79, + [98] = 85, + [99] = 70, + [100] = 80, + [101] = 69, + [102] = 75, + [103] = 77, + [104] = 88, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 109, + [113] = 108, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, [118] = 118, - [119] = 119, + [119] = 106, [120] = 120, - [121] = 118, + [121] = 120, [122] = 122, - [123] = 119, - [124] = 124, - [125] = 118, + [123] = 123, + [124] = 122, + [125] = 125, [126] = 126, [127] = 127, [128] = 128, - [129] = 118, + [129] = 129, [130] = 130, - [131] = 124, - [132] = 120, - [133] = 133, - [134] = 127, - [135] = 126, - [136] = 122, - [137] = 137, - [138] = 124, - [139] = 122, + [131] = 131, + [132] = 132, + [133] = 122, + [134] = 117, + [135] = 105, + [136] = 120, + [137] = 117, + [138] = 111, + [139] = 110, [140] = 140, - [141] = 141, - [142] = 142, + [141] = 140, + [142] = 140, [143] = 143, - [144] = 128, - [145] = 137, - [146] = 130, + [144] = 144, + [145] = 123, + [146] = 143, [147] = 147, [148] = 143, - [149] = 133, - [150] = 124, + [149] = 149, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, [154] = 154, [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 147, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 118, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 140, - [172] = 165, - [173] = 155, - [174] = 142, - [175] = 119, - [176] = 130, - [177] = 153, - [178] = 163, - [179] = 159, - [180] = 158, - [181] = 168, - [182] = 169, - [183] = 170, - [184] = 167, - [185] = 160, - [186] = 162, - [187] = 156, - [188] = 154, - [189] = 157, - [190] = 152, - [191] = 164, - [192] = 151, - [193] = 124, - [194] = 141, - [195] = 126, - [196] = 120, - [197] = 127, - [198] = 198, - [199] = 130, - [200] = 147, - [201] = 137, - [202] = 128, - [203] = 130, - [204] = 133, - [205] = 119, - [206] = 151, - [207] = 118, - [208] = 122, - [209] = 209, - [210] = 124, - [211] = 118, - [212] = 212, - [213] = 127, - [214] = 120, - [215] = 126, - [216] = 216, - [217] = 124, - [218] = 133, - [219] = 137, - [220] = 128, - [221] = 130, - [222] = 222, - [223] = 151, - [224] = 224, - [225] = 162, - [226] = 163, - [227] = 142, - [228] = 169, - [229] = 224, - [230] = 224, - [231] = 170, - [232] = 164, - [233] = 157, - [234] = 224, - [235] = 224, - [236] = 155, - [237] = 147, - [238] = 143, - [239] = 168, - [240] = 240, - [241] = 154, - [242] = 156, - [243] = 243, - [244] = 167, - [245] = 158, - [246] = 140, - [247] = 141, - [248] = 165, - [249] = 160, - [250] = 152, - [251] = 119, - [252] = 153, - [253] = 130, - [254] = 159, - [255] = 126, + [156] = 147, + [157] = 125, + [158] = 144, + [159] = 59, + [160] = 60, + [161] = 150, + [162] = 152, + [163] = 153, + [164] = 151, + [165] = 130, + [166] = 150, + [167] = 155, + [168] = 147, + [169] = 127, + [170] = 154, + [171] = 132, + [172] = 172, + [173] = 172, + [174] = 115, + [175] = 151, + [176] = 172, + [177] = 131, + [178] = 116, + [179] = 129, + [180] = 155, + [181] = 149, + [182] = 143, + [183] = 149, + [184] = 154, + [185] = 153, + [186] = 152, + [187] = 42, + [188] = 33, + [189] = 79, + [190] = 78, + [191] = 74, + [192] = 76, + [193] = 83, + [194] = 70, + [195] = 77, + [196] = 196, + [197] = 85, + [198] = 75, + [199] = 84, + [200] = 86, + [201] = 81, + [202] = 202, + [203] = 80, + [204] = 69, + [205] = 205, + [206] = 205, + [207] = 205, + [208] = 56, + [209] = 205, + [210] = 210, + [211] = 205, + [212] = 54, + [213] = 67, + [214] = 214, + [215] = 215, + [216] = 214, + [217] = 217, + [218] = 217, + [219] = 214, + [220] = 215, + [221] = 214, + [222] = 66, + [223] = 215, + [224] = 214, + [225] = 217, + [226] = 226, + [227] = 227, + [228] = 227, + [229] = 229, + [230] = 227, + [231] = 231, + [232] = 232, + [233] = 229, + [234] = 234, + [235] = 227, + [236] = 234, + [237] = 231, + [238] = 231, + [239] = 88, + [240] = 229, + [241] = 241, + [242] = 241, + [243] = 241, + [244] = 244, + [245] = 74, + [246] = 76, + [247] = 84, + [248] = 85, + [249] = 79, + [250] = 250, + [251] = 77, + [252] = 70, + [253] = 83, + [254] = 86, + [255] = 75, [256] = 256, - [257] = 120, - [258] = 127, - [259] = 256, - [260] = 256, - [261] = 256, - [262] = 256, - [263] = 128, - [264] = 264, - [265] = 118, - [266] = 147, - [267] = 137, - [268] = 122, - [269] = 124, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 271, - [274] = 272, - [275] = 270, - [276] = 271, - [277] = 271, - [278] = 278, - [279] = 270, - [280] = 271, - [281] = 272, - [282] = 282, - [283] = 282, - [284] = 282, - [285] = 282, - [286] = 282, - [287] = 158, - [288] = 160, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 105, + [261] = 106, + [262] = 262, + [263] = 262, + [264] = 262, + [265] = 265, + [266] = 114, + [267] = 109, + [268] = 268, + [269] = 265, + [270] = 262, + [271] = 265, + [272] = 111, + [273] = 110, + [274] = 265, + [275] = 109, + [276] = 108, + [277] = 262, + [278] = 268, + [279] = 108, + [280] = 268, + [281] = 268, + [282] = 265, + [283] = 116, + [284] = 123, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 287, [289] = 289, [290] = 290, - [291] = 289, - [292] = 140, - [293] = 142, - [294] = 143, - [295] = 154, - [296] = 289, - [297] = 165, - [298] = 155, - [299] = 168, - [300] = 159, - [301] = 301, - [302] = 302, + [291] = 286, + [292] = 289, + [293] = 290, + [294] = 286, + [295] = 287, + [296] = 290, + [297] = 289, + [298] = 286, + [299] = 289, + [300] = 128, + [301] = 290, + [302] = 131, [303] = 303, - [304] = 304, - [305] = 304, + [304] = 290, + [305] = 303, [306] = 303, - [307] = 303, - [308] = 308, - [309] = 304, - [310] = 308, - [311] = 303, - [312] = 304, - [313] = 308, - [314] = 304, - [315] = 308, - [316] = 303, - [317] = 308, - [318] = 133, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 323, - [325] = 322, - [326] = 321, + [307] = 307, + [308] = 289, + [309] = 285, + [310] = 287, + [311] = 311, + [312] = 127, + [313] = 286, + [314] = 314, + [315] = 303, + [316] = 130, + [317] = 303, + [318] = 132, + [319] = 115, + [320] = 129, + [321] = 285, + [322] = 125, + [323] = 285, + [324] = 287, + [325] = 325, + [326] = 325, [327] = 327, - [328] = 328, - [329] = 130, - [330] = 330, - [331] = 331, - [332] = 321, - [333] = 331, - [334] = 330, - [335] = 331, - [336] = 321, - [337] = 323, - [338] = 330, - [339] = 322, - [340] = 322, - [341] = 330, - [342] = 331, - [343] = 321, - [344] = 327, - [345] = 327, - [346] = 331, - [347] = 330, - [348] = 323, - [349] = 327, - [350] = 327, - [351] = 323, - [352] = 322, - [353] = 154, + [328] = 86, + [329] = 85, + [330] = 327, + [331] = 76, + [332] = 327, + [333] = 74, + [334] = 84, + [335] = 327, + [336] = 70, + [337] = 75, + [338] = 327, + [339] = 111, + [340] = 340, + [341] = 325, + [342] = 325, + [343] = 83, + [344] = 325, + [345] = 345, + [346] = 77, + [347] = 79, + [348] = 110, + [349] = 349, + [350] = 350, + [351] = 350, + [352] = 352, + [353] = 353, [354] = 354, [355] = 355, - [356] = 356, + [356] = 353, [357] = 357, - [358] = 357, - [359] = 357, + [358] = 358, + [359] = 359, [360] = 355, - [361] = 357, - [362] = 165, - [363] = 355, - [364] = 355, + [361] = 350, + [362] = 362, + [363] = 357, + [364] = 354, [365] = 355, - [366] = 168, - [367] = 140, - [368] = 160, - [369] = 159, - [370] = 158, - [371] = 155, - [372] = 143, - [373] = 357, - [374] = 142, - [375] = 375, - [376] = 376, + [366] = 366, + [367] = 357, + [368] = 359, + [369] = 355, + [370] = 353, + [371] = 357, + [372] = 358, + [373] = 355, + [374] = 362, + [375] = 357, + [376] = 359, [377] = 377, - [378] = 378, + [378] = 358, [379] = 379, - [380] = 380, - [381] = 380, + [380] = 377, + [381] = 358, [382] = 382, - [383] = 383, - [384] = 380, - [385] = 385, - [386] = 385, - [387] = 387, - [388] = 388, - [389] = 385, - [390] = 388, - [391] = 376, - [392] = 382, - [393] = 377, - [394] = 376, - [395] = 382, - [396] = 377, - [397] = 387, - [398] = 382, - [399] = 377, - [400] = 400, - [401] = 377, - [402] = 402, - [403] = 375, - [404] = 376, - [405] = 382, - [406] = 402, - [407] = 407, - [408] = 388, - [409] = 402, - [410] = 402, - [411] = 387, - [412] = 385, - [413] = 375, - [414] = 375, - [415] = 375, - [416] = 402, - [417] = 407, - [418] = 400, - [419] = 407, - [420] = 407, - [421] = 387, - [422] = 387, - [423] = 407, - [424] = 385, - [425] = 400, - [426] = 376, + [383] = 349, + [384] = 377, + [385] = 349, + [386] = 359, + [387] = 358, + [388] = 354, + [389] = 366, + [390] = 362, + [391] = 350, + [392] = 353, + [393] = 393, + [394] = 354, + [395] = 379, + [396] = 366, + [397] = 379, + [398] = 379, + [399] = 379, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1066,363 +1018,349 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(4); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ')') ADVANCE(53); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(109); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '<') ADVANCE(100); - if (lookahead == '=') ADVANCE(107); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '[') ADVANCE(95); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 't') ADVANCE(55); - if (lookahead == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '%') ADVANCE(110); + if (lookahead == '&') ADVANCE(5); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '+') ADVANCE(104); + if (lookahead == ',') ADVANCE(90); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(109); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '[') ADVANCE(89); + if (lookahead == ']') ADVANCE(91); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'e') ADVANCE(65); + if (lookahead == 'f') ADVANCE(55); + if (lookahead == 'o') ADVANCE(73); + if (lookahead == 't') ADVANCE(53); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(2); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (lookahead == '[') ADVANCE(95); - if (lookahead == ']') ADVANCE(97); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'f') ADVANCE(12); - if (lookahead == 't') ADVANCE(11); - if (lookahead == '{') ADVANCE(102); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '%') ADVANCE(110); + if (lookahead == '&') ADVANCE(5); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '+') ADVANCE(104); + if (lookahead == '-') ADVANCE(106); + if (lookahead == '/') ADVANCE(109); + if (lookahead == '=') ADVANCE(101); + if (lookahead == 'a') ADVANCE(31); + if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'o') ADVANCE(36); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(41); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(90); - if (lookahead != 0) ADVANCE(2); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '%') ADVANCE(110); + if (lookahead == '&') ADVANCE(5); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '+') ADVANCE(103); + if (lookahead == '-') ADVANCE(107); + if (lookahead == '/') ADVANCE(109); + if (lookahead == '=') ADVANCE(11); + if (lookahead == 'a') ADVANCE(31); + if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'o') ADVANCE(36); + if (lookahead == 't') ADVANCE(25); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(41); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) END_STATE(); case 3: - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == ')') ADVANCE(53); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(109); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '=') ADVANCE(107); - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'e') ADVANCE(26); - if (lookahead == 'o') ADVANCE(34); - if (lookahead == 't') ADVANCE(23); - if (lookahead == 'w') ADVANCE(24); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(40); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '"') ADVANCE(4); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == ',') ADVANCE(90); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '[') ADVANCE(89); + if (lookahead == ']') ADVANCE(91); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'f') ADVANCE(14); + if (lookahead == 't') ADVANCE(13); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 4: - if (lookahead == '&') ADVANCE(117); + if (lookahead == '"') ADVANCE(84); + if (lookahead != 0) ADVANCE(4); END_STATE(); case 5: - if (lookahead == '\'') ADVANCE(90); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '&') ADVANCE(113); END_STATE(); case 6: - if (lookahead == ',') ADVANCE(96); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '\'') ADVANCE(84); + if (lookahead != 0) ADVANCE(6); + END_STATE(); + case 7: + if (lookahead == ',') ADVANCE(90); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(6) + lookahead == ' ') SKIP(7) if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 7: - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (lookahead == '>') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + lookahead == '|') ADVANCE(80); END_STATE(); case 8: - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(116); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 10: - if (lookahead == '`') ADVANCE(90); - if (lookahead != 0) ADVANCE(10); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'r') ADVANCE(39); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(127); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(28); - if (lookahead == 'u') ADVANCE(31); + if (lookahead == '`') ADVANCE(84); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 13: - if (lookahead == 'b') ADVANCE(27); + if (lookahead == 'a') ADVANCE(15); + if (lookahead == 'r') ADVANCE(40); END_STATE(); case 14: - if (lookahead == 'c') ADVANCE(38); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'u') ADVANCE(33); END_STATE(); case 15: - if (lookahead == 'd') ADVANCE(120); + if (lookahead == 'b') ADVANCE(29); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'c') ADVANCE(39); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'd') ADVANCE(116); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'e') ADVANCE(65); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 20: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(85); END_STATE(); case 21: - if (lookahead == 'e') ADVANCE(30); + if (lookahead == 'e') ADVANCE(87); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 23: - if (lookahead == 'h') ADVANCE(21); + if (lookahead == 'e') ADVANCE(32); END_STATE(); case 24: - if (lookahead == 'h') ADVANCE(22); + if (lookahead == 'f') ADVANCE(124); END_STATE(); case 25: - if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'h') ADVANCE(23); END_STATE(); case 26: - if (lookahead == 'l') ADVANCE(36); + if (lookahead == 'i') ADVANCE(24); END_STATE(); case 27: - if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'i') ADVANCE(35); END_STATE(); case 28: if (lookahead == 'l') ADVANCE(37); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(15); + if (lookahead == 'l') ADVANCE(22); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'l') ADVANCE(38); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'n') ADVANCE(17); END_STATE(); case 32: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 'n') ADVANCE(122); END_STATE(); case 33: - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'n') ADVANCE(16); END_STATE(); case 34: - if (lookahead == 'r') ADVANCE(122); + if (lookahead == 'n') ADVANCE(92); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(17); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 36: - if (lookahead == 's') ADVANCE(16); + if (lookahead == 'r') ADVANCE(118); END_STATE(); case 37: if (lookahead == 's') ADVANCE(19); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(25); + if (lookahead == 's') ADVANCE(21); END_STATE(); case 39: - if (lookahead == 'u') ADVANCE(18); + if (lookahead == 't') ADVANCE(27); END_STATE(); case 40: - if (lookahead == '|') ADVANCE(118); + if (lookahead == 'u') ADVANCE(20); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + if (lookahead == '|') ADVANCE(114); END_STATE(); case 42: - if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); - if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(109); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 't') ADVANCE(56); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(42) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 43: if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(4); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(109); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '=') ADVANCE(106); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 't') ADVANCE(56); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '%') ADVANCE(110); + if (lookahead == '&') ADVANCE(5); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '+') ADVANCE(104); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(109); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'e') ADVANCE(65); + if (lookahead == 'f') ADVANCE(55); + if (lookahead == 'o') ADVANCE(73); + if (lookahead == 't') ADVANCE(54); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 44: if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(4); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(108); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '=') ADVANCE(9); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'e') ADVANCE(70); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 't') ADVANCE(56); - if (lookahead == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '%') ADVANCE(110); + if (lookahead == '&') ADVANCE(5); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '+') ADVANCE(104); + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(109); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'f') ADVANCE(55); + if (lookahead == 'o') ADVANCE(73); + if (lookahead == 't') ADVANCE(54); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 45: if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); + if (lookahead == '"') ADVANCE(4); if (lookahead == '#') ADVANCE(48); - if (lookahead == '%') ADVANCE(115); - if (lookahead == '&') ADVANCE(4); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '+') ADVANCE(108); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '=') ADVANCE(9); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 'o') ADVANCE(78); - if (lookahead == 't') ADVANCE(56); - if (lookahead == 'w') ADVANCE(68); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == '-') ADVANCE(8); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'f') ADVANCE(55); + if (lookahead == 't') ADVANCE(54); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('_' <= lookahead && lookahead <= '|')) ADVANCE(80); END_STATE(); case 46: if (eof) ADVANCE(47); - if (lookahead == '"') ADVANCE(2); + if (lookahead == '"') ADVANCE(4); if (lookahead == '#') ADVANCE(48); - if (lookahead == '\'') ADVANCE(5); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '-') ADVANCE(7); - if (lookahead == '.') ADVANCE(85); - if (lookahead == '[') ADVANCE(95); - if (lookahead == '`') ADVANCE(10); - if (lookahead == 'f') ADVANCE(57); - if (lookahead == 't') ADVANCE(56); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '\'') ADVANCE(6); + if (lookahead == '-') ADVANCE(8); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '[') ADVANCE(89); + if (lookahead == '`') ADVANCE(12); + if (lookahead == 'e') ADVANCE(65); + if (lookahead == 'f') ADVANCE(55); + if (lookahead == 't') ADVANCE(54); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '}') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - if (('_' <= lookahead && lookahead <= '|')) ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('_' <= lookahead && lookahead <= '|')) ADVANCE(80); END_STATE(); case 47: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1447,508 +1385,463 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym_identifier); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'h') ADVANCE(63); + if (lookahead == 'r') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 54: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(56); + if (lookahead == 'r') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 55: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'h') ADVANCE(67); - if (lookahead == 'r') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'u') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 56: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'r') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'b') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 57: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(72); - if (lookahead == 'u') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'c') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 58: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'd') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 59: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'e') ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 60: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'e') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 61: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'e') ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 62: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(92); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'e') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(94); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'e') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 64: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'i') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 65: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'l') ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 66: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'l') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 67: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(75); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'l') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 68: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'n') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 69: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'n') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 70: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'n') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 71: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'n') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 72: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'o') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 73: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'r') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 74: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 's') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 75: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 's') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 76: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 't') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 77: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == 'u') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 78: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (lookahead == '|') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 79: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 80: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 81: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 82: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 83: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 84: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '|') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); - END_STATE(); - case 85: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 86: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 87: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); - END_STATE(); - case 88: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); - END_STATE(); - case 89: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - END_STATE(); - case 90: ACCEPT_TOKEN(sym_string); END_STATE(); - case 91: + case 85: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 92: + case 86: ACCEPT_TOKEN(anon_sym_true); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); - case 93: + case 87: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 94: + case 88: ACCEPT_TOKEN(anon_sym_false); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); - case 95: + case 89: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 96: + case 90: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 97: + case 91: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 98: + case 92: ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 99: + case 93: ACCEPT_TOKEN(anon_sym_function); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); - case 100: + case 94: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 101: + case 95: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 102: + case 96: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 103: + case 97: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 104: + case 98: ACCEPT_TOKEN(anon_sym_table); END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_table); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(111); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(127); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(120); + END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_table); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '=') ADVANCE(121); + if (lookahead == '>') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(121); + if (lookahead == '>') ADVANCE(51); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(51); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(124); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (lookahead == '=') ADVANCE(125); - if (lookahead == '>') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(8); - if (lookahead == '.') ADVANCE(41); - if (lookahead == '>') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(89); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(125); - if (lookahead == '>') ADVANCE(51); - END_STATE(); - case 113: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 114: + case 109: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 115: + case 110: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 116: + case 111: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 117: + case 112: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 113: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 118: + case 114: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_and); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); + ACCEPT_TOKEN(anon_sym_or); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead == '.' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(80); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_and); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_and); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 122: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 124: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 125: + case 121: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_then); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_elseif); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ' ') ADVANCE(26); + END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ' ') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '.' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(80); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_where); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_then); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); - if (lookahead == '.' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); - END_STATE(); - case 132: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); default: @@ -1961,116 +1854,142 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'f') ADVANCE(1); - if (lookahead == 'i') ADVANCE(2); - if (lookahead == 'l') ADVANCE(3); - if (lookahead == 'm') ADVANCE(4); - if (lookahead == 's') ADVANCE(5); - if (lookahead == 'w') ADVANCE(6); + if (lookahead == 'b') ADVANCE(1); + if (lookahead == 'f') ADVANCE(2); + if (lookahead == 'i') ADVANCE(3); + if (lookahead == 'l') ADVANCE(4); + if (lookahead == 'm') ADVANCE(5); + if (lookahead == 's') ADVANCE(6); + if (lookahead == 'w') ADVANCE(7); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'r') ADVANCE(7); + if (lookahead == 'r') ADVANCE(8); END_STATE(); case 2: - if (lookahead == 'f') ADVANCE(8); - if (lookahead == 'n') ADVANCE(9); + if (lookahead == 'r') ADVANCE(9); END_STATE(); case 3: - if (lookahead == 'o') ADVANCE(10); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'n') ADVANCE(11); END_STATE(); case 4: - if (lookahead == 'a') ADVANCE(11); + if (lookahead == 'o') ADVANCE(12); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(12); + if (lookahead == 'a') ADVANCE(13); END_STATE(); case 6: - if (lookahead == 'h') ADVANCE(13); + if (lookahead == 'e') ADVANCE(14); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(14); + if (lookahead == 'h') ADVANCE(15); END_STATE(); case 8: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'e') ADVANCE(16); END_STATE(); case 9: - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - END_STATE(); - case 10: if (lookahead == 'o') ADVANCE(17); END_STATE(); + case 10: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); case 11: - if (lookahead == 't') ADVANCE(18); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 12: - if (lookahead == 'l') ADVANCE(19); + if (lookahead == 'o') ADVANCE(20); END_STATE(); case 13: - if (lookahead == 'i') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); END_STATE(); case 14: - if (lookahead == 'm') ADVANCE(21); + if (lookahead == 'l') ADVANCE(22); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(22); + if (lookahead == 'e') ADVANCE(23); + if (lookahead == 'i') ADVANCE(24); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'a') ADVANCE(25); END_STATE(); case 17: - if (lookahead == 'p') ADVANCE(24); + if (lookahead == 'm') ADVANCE(26); END_STATE(); case 18: - if (lookahead == 'c') ADVANCE(25); + if (lookahead == 'e') ADVANCE(27); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(28); END_STATE(); case 20: - if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'p') ADVANCE(29); END_STATE(); case 21: - ACCEPT_TOKEN(anon_sym_from); - END_STATE(); - case 22: - if (lookahead == 'r') ADVANCE(28); - END_STATE(); - case 23: - ACCEPT_TOKEN(anon_sym_into); - END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_loop); - END_STATE(); - case 25: - if (lookahead == 'h') ADVANCE(29); - END_STATE(); - case 26: if (lookahead == 'c') ADVANCE(30); END_STATE(); - case 27: + case 22: if (lookahead == 'e') ADVANCE(31); END_STATE(); + case 23: + if (lookahead == 'r') ADVANCE(32); + END_STATE(); + case 24: + if (lookahead == 'l') ADVANCE(33); + END_STATE(); + case 25: + if (lookahead == 'k') ADVANCE(34); + END_STATE(); + case 26: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 27: + if (lookahead == 'r') ADVANCE(35); + END_STATE(); case 28: - if (lookahead == 't') ADVANCE(32); + ACCEPT_TOKEN(anon_sym_into); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(33); + if (lookahead == 'h') ADVANCE(36); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'c') ADVANCE(37); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_insert); + if (lookahead == 'e') ADVANCE(38); END_STATE(); case 33: + if (lookahead == 'e') ADVANCE(39); + END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(40); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 37: + if (lookahead == 't') ADVANCE(41); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_insert); + END_STATE(); + case 41: ACCEPT_TOKEN(anon_sym_select); END_STATE(); default: @@ -2080,113 +1999,113 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 46}, - [2] = {.lex_state = 46}, - [3] = {.lex_state = 46}, - [4] = {.lex_state = 46}, - [5] = {.lex_state = 46}, - [6] = {.lex_state = 46}, - [7] = {.lex_state = 46}, - [8] = {.lex_state = 46}, - [9] = {.lex_state = 46}, - [10] = {.lex_state = 46}, - [11] = {.lex_state = 46}, - [12] = {.lex_state = 46}, - [13] = {.lex_state = 46}, - [14] = {.lex_state = 46}, - [15] = {.lex_state = 46}, - [16] = {.lex_state = 46}, - [17] = {.lex_state = 46}, - [18] = {.lex_state = 46}, - [19] = {.lex_state = 46}, - [20] = {.lex_state = 46}, - [21] = {.lex_state = 46}, - [22] = {.lex_state = 46}, - [23] = {.lex_state = 46}, - [24] = {.lex_state = 46}, - [25] = {.lex_state = 46}, - [26] = {.lex_state = 46}, - [27] = {.lex_state = 46}, - [28] = {.lex_state = 46}, - [29] = {.lex_state = 46}, - [30] = {.lex_state = 46}, - [31] = {.lex_state = 46}, - [32] = {.lex_state = 46}, - [33] = {.lex_state = 46}, - [34] = {.lex_state = 46}, - [35] = {.lex_state = 46}, - [36] = {.lex_state = 46}, - [37] = {.lex_state = 46}, - [38] = {.lex_state = 46}, - [39] = {.lex_state = 46}, - [40] = {.lex_state = 46}, - [41] = {.lex_state = 46}, - [42] = {.lex_state = 46}, - [43] = {.lex_state = 46}, - [44] = {.lex_state = 46}, - [45] = {.lex_state = 46}, - [46] = {.lex_state = 46}, - [47] = {.lex_state = 46}, - [48] = {.lex_state = 46}, - [49] = {.lex_state = 46}, - [50] = {.lex_state = 46}, - [51] = {.lex_state = 46}, - [52] = {.lex_state = 46}, - [53] = {.lex_state = 46}, - [54] = {.lex_state = 46}, - [55] = {.lex_state = 46}, - [56] = {.lex_state = 46}, - [57] = {.lex_state = 46}, - [58] = {.lex_state = 46}, - [59] = {.lex_state = 46}, - [60] = {.lex_state = 46}, - [61] = {.lex_state = 46}, - [62] = {.lex_state = 46}, - [63] = {.lex_state = 46}, - [64] = {.lex_state = 46}, - [65] = {.lex_state = 46}, - [66] = {.lex_state = 46}, - [67] = {.lex_state = 46}, - [68] = {.lex_state = 46}, - [69] = {.lex_state = 46}, - [70] = {.lex_state = 46}, - [71] = {.lex_state = 46}, - [72] = {.lex_state = 46}, - [73] = {.lex_state = 46}, - [74] = {.lex_state = 46}, - [75] = {.lex_state = 46}, - [76] = {.lex_state = 46}, - [77] = {.lex_state = 46}, - [78] = {.lex_state = 46}, - [79] = {.lex_state = 46}, - [80] = {.lex_state = 46}, - [81] = {.lex_state = 46}, - [82] = {.lex_state = 46}, - [83] = {.lex_state = 46}, - [84] = {.lex_state = 46}, - [85] = {.lex_state = 46}, - [86] = {.lex_state = 46}, - [87] = {.lex_state = 46}, - [88] = {.lex_state = 46}, - [89] = {.lex_state = 46}, - [90] = {.lex_state = 46}, - [91] = {.lex_state = 46}, - [92] = {.lex_state = 46}, - [93] = {.lex_state = 46}, - [94] = {.lex_state = 46}, - [95] = {.lex_state = 46}, - [96] = {.lex_state = 46}, - [97] = {.lex_state = 46}, - [98] = {.lex_state = 46}, - [99] = {.lex_state = 46}, - [100] = {.lex_state = 46}, - [101] = {.lex_state = 46}, - [102] = {.lex_state = 46}, - [103] = {.lex_state = 46}, - [104] = {.lex_state = 46}, + [1] = {.lex_state = 45}, + [2] = {.lex_state = 45}, + [3] = {.lex_state = 45}, + [4] = {.lex_state = 45}, + [5] = {.lex_state = 45}, + [6] = {.lex_state = 45}, + [7] = {.lex_state = 45}, + [8] = {.lex_state = 45}, + [9] = {.lex_state = 45}, + [10] = {.lex_state = 45}, + [11] = {.lex_state = 45}, + [12] = {.lex_state = 45}, + [13] = {.lex_state = 45}, + [14] = {.lex_state = 45}, + [15] = {.lex_state = 45}, + [16] = {.lex_state = 45}, + [17] = {.lex_state = 45}, + [18] = {.lex_state = 45}, + [19] = {.lex_state = 45}, + [20] = {.lex_state = 45}, + [21] = {.lex_state = 45}, + [22] = {.lex_state = 45}, + [23] = {.lex_state = 45}, + [24] = {.lex_state = 45}, + [25] = {.lex_state = 45}, + [26] = {.lex_state = 45}, + [27] = {.lex_state = 45}, + [28] = {.lex_state = 45}, + [29] = {.lex_state = 45}, + [30] = {.lex_state = 45}, + [31] = {.lex_state = 45}, + [32] = {.lex_state = 45}, + [33] = {.lex_state = 43}, + [34] = {.lex_state = 45}, + [35] = {.lex_state = 45}, + [36] = {.lex_state = 45}, + [37] = {.lex_state = 45}, + [38] = {.lex_state = 45}, + [39] = {.lex_state = 45}, + [40] = {.lex_state = 45}, + [41] = {.lex_state = 45}, + [42] = {.lex_state = 43}, + [43] = {.lex_state = 45}, + [44] = {.lex_state = 45}, + [45] = {.lex_state = 45}, + [46] = {.lex_state = 45}, + [47] = {.lex_state = 45}, + [48] = {.lex_state = 45}, + [49] = {.lex_state = 45}, + [50] = {.lex_state = 45}, + [51] = {.lex_state = 45}, + [52] = {.lex_state = 45}, + [53] = {.lex_state = 45}, + [54] = {.lex_state = 43}, + [55] = {.lex_state = 45}, + [56] = {.lex_state = 43}, + [57] = {.lex_state = 45}, + [58] = {.lex_state = 45}, + [59] = {.lex_state = 43}, + [60] = {.lex_state = 43}, + [61] = {.lex_state = 45}, + [62] = {.lex_state = 45}, + [63] = {.lex_state = 45}, + [64] = {.lex_state = 45}, + [65] = {.lex_state = 44}, + [66] = {.lex_state = 43}, + [67] = {.lex_state = 43}, + [68] = {.lex_state = 44}, + [69] = {.lex_state = 43}, + [70] = {.lex_state = 43}, + [71] = {.lex_state = 44}, + [72] = {.lex_state = 44}, + [73] = {.lex_state = 44}, + [74] = {.lex_state = 43}, + [75] = {.lex_state = 43}, + [76] = {.lex_state = 43}, + [77] = {.lex_state = 43}, + [78] = {.lex_state = 43}, + [79] = {.lex_state = 43}, + [80] = {.lex_state = 43}, + [81] = {.lex_state = 43}, + [82] = {.lex_state = 44}, + [83] = {.lex_state = 43}, + [84] = {.lex_state = 43}, + [85] = {.lex_state = 43}, + [86] = {.lex_state = 43}, + [87] = {.lex_state = 44}, + [88] = {.lex_state = 43}, + [89] = {.lex_state = 44}, + [90] = {.lex_state = 44}, + [91] = {.lex_state = 44}, + [92] = {.lex_state = 44}, + [93] = {.lex_state = 44}, + [94] = {.lex_state = 44}, + [95] = {.lex_state = 44}, + [96] = {.lex_state = 44}, + [97] = {.lex_state = 44}, + [98] = {.lex_state = 44}, + [99] = {.lex_state = 44}, + [100] = {.lex_state = 44}, + [101] = {.lex_state = 44}, + [102] = {.lex_state = 44}, + [103] = {.lex_state = 44}, + [104] = {.lex_state = 44}, [105] = {.lex_state = 46}, [106] = {.lex_state = 46}, - [107] = {.lex_state = 46}, + [107] = {.lex_state = 44}, [108] = {.lex_state = 46}, [109] = {.lex_state = 46}, [110] = {.lex_state = 46}, @@ -2196,316 +2115,289 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 46}, [115] = {.lex_state = 46}, [116] = {.lex_state = 46}, - [117] = {.lex_state = 46}, - [118] = {.lex_state = 42}, - [119] = {.lex_state = 42}, - [120] = {.lex_state = 42}, - [121] = {.lex_state = 43}, - [122] = {.lex_state = 42}, - [123] = {.lex_state = 43}, - [124] = {.lex_state = 42}, - [125] = {.lex_state = 43}, - [126] = {.lex_state = 42}, - [127] = {.lex_state = 42}, - [128] = {.lex_state = 44}, - [129] = {.lex_state = 42}, - [130] = {.lex_state = 42}, - [131] = {.lex_state = 43}, - [132] = {.lex_state = 43}, - [133] = {.lex_state = 42}, - [134] = {.lex_state = 43}, - [135] = {.lex_state = 43}, - [136] = {.lex_state = 43}, - [137] = {.lex_state = 44}, - [138] = {.lex_state = 43}, - [139] = {.lex_state = 43}, - [140] = {.lex_state = 42}, - [141] = {.lex_state = 42}, - [142] = {.lex_state = 42}, - [143] = {.lex_state = 42}, + [117] = {.lex_state = 45}, + [118] = {.lex_state = 45}, + [119] = {.lex_state = 45}, + [120] = {.lex_state = 45}, + [121] = {.lex_state = 45}, + [122] = {.lex_state = 45}, + [123] = {.lex_state = 46}, + [124] = {.lex_state = 45}, + [125] = {.lex_state = 46}, + [126] = {.lex_state = 45}, + [127] = {.lex_state = 46}, + [128] = {.lex_state = 46}, + [129] = {.lex_state = 46}, + [130] = {.lex_state = 46}, + [131] = {.lex_state = 46}, + [132] = {.lex_state = 46}, + [133] = {.lex_state = 45}, + [134] = {.lex_state = 45}, + [135] = {.lex_state = 45}, + [136] = {.lex_state = 45}, + [137] = {.lex_state = 45}, + [138] = {.lex_state = 45}, + [139] = {.lex_state = 45}, + [140] = {.lex_state = 45}, + [141] = {.lex_state = 45}, + [142] = {.lex_state = 45}, + [143] = {.lex_state = 45}, [144] = {.lex_state = 45}, [145] = {.lex_state = 45}, - [146] = {.lex_state = 43}, - [147] = {.lex_state = 42}, - [148] = {.lex_state = 43}, - [149] = {.lex_state = 43}, - [150] = {.lex_state = 42}, - [151] = {.lex_state = 42}, - [152] = {.lex_state = 42}, - [153] = {.lex_state = 42}, - [154] = {.lex_state = 42}, - [155] = {.lex_state = 42}, - [156] = {.lex_state = 42}, - [157] = {.lex_state = 42}, - [158] = {.lex_state = 42}, - [159] = {.lex_state = 42}, - [160] = {.lex_state = 42}, - [161] = {.lex_state = 42}, - [162] = {.lex_state = 42}, - [163] = {.lex_state = 42}, - [164] = {.lex_state = 42}, - [165] = {.lex_state = 42}, - [166] = {.lex_state = 43}, - [167] = {.lex_state = 42}, - [168] = {.lex_state = 42}, - [169] = {.lex_state = 42}, - [170] = {.lex_state = 42}, - [171] = {.lex_state = 43}, - [172] = {.lex_state = 43}, - [173] = {.lex_state = 43}, - [174] = {.lex_state = 43}, - [175] = {.lex_state = 43}, - [176] = {.lex_state = 42}, - [177] = {.lex_state = 43}, - [178] = {.lex_state = 43}, - [179] = {.lex_state = 43}, - [180] = {.lex_state = 43}, - [181] = {.lex_state = 43}, - [182] = {.lex_state = 43}, - [183] = {.lex_state = 43}, - [184] = {.lex_state = 43}, - [185] = {.lex_state = 43}, - [186] = {.lex_state = 43}, - [187] = {.lex_state = 43}, - [188] = {.lex_state = 43}, - [189] = {.lex_state = 43}, - [190] = {.lex_state = 43}, - [191] = {.lex_state = 43}, - [192] = {.lex_state = 43}, - [193] = {.lex_state = 43}, - [194] = {.lex_state = 43}, - [195] = {.lex_state = 43}, - [196] = {.lex_state = 43}, - [197] = {.lex_state = 43}, - [198] = {.lex_state = 43}, - [199] = {.lex_state = 43}, - [200] = {.lex_state = 42}, - [201] = {.lex_state = 45}, + [146] = {.lex_state = 45}, + [147] = {.lex_state = 45}, + [148] = {.lex_state = 45}, + [149] = {.lex_state = 45}, + [150] = {.lex_state = 45}, + [151] = {.lex_state = 45}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 45}, + [154] = {.lex_state = 45}, + [155] = {.lex_state = 45}, + [156] = {.lex_state = 45}, + [157] = {.lex_state = 45}, + [158] = {.lex_state = 45}, + [159] = {.lex_state = 2}, + [160] = {.lex_state = 2}, + [161] = {.lex_state = 45}, + [162] = {.lex_state = 45}, + [163] = {.lex_state = 45}, + [164] = {.lex_state = 45}, + [165] = {.lex_state = 45}, + [166] = {.lex_state = 45}, + [167] = {.lex_state = 45}, + [168] = {.lex_state = 45}, + [169] = {.lex_state = 45}, + [170] = {.lex_state = 45}, + [171] = {.lex_state = 45}, + [172] = {.lex_state = 45}, + [173] = {.lex_state = 45}, + [174] = {.lex_state = 45}, + [175] = {.lex_state = 45}, + [176] = {.lex_state = 45}, + [177] = {.lex_state = 45}, + [178] = {.lex_state = 45}, + [179] = {.lex_state = 45}, + [180] = {.lex_state = 45}, + [181] = {.lex_state = 45}, + [182] = {.lex_state = 45}, + [183] = {.lex_state = 45}, + [184] = {.lex_state = 45}, + [185] = {.lex_state = 45}, + [186] = {.lex_state = 45}, + [187] = {.lex_state = 1}, + [188] = {.lex_state = 2}, + [189] = {.lex_state = 2}, + [190] = {.lex_state = 2}, + [191] = {.lex_state = 2}, + [192] = {.lex_state = 2}, + [193] = {.lex_state = 2}, + [194] = {.lex_state = 2}, + [195] = {.lex_state = 2}, + [196] = {.lex_state = 45}, + [197] = {.lex_state = 2}, + [198] = {.lex_state = 2}, + [199] = {.lex_state = 2}, + [200] = {.lex_state = 2}, + [201] = {.lex_state = 2}, [202] = {.lex_state = 45}, - [203] = {.lex_state = 46}, - [204] = {.lex_state = 46}, + [203] = {.lex_state = 2}, + [204] = {.lex_state = 2}, [205] = {.lex_state = 3}, - [206] = {.lex_state = 46}, + [206] = {.lex_state = 3}, [207] = {.lex_state = 3}, - [208] = {.lex_state = 3}, - [209] = {.lex_state = 46}, + [208] = {.lex_state = 2}, + [209] = {.lex_state = 3}, [210] = {.lex_state = 3}, [211] = {.lex_state = 3}, - [212] = {.lex_state = 46}, - [213] = {.lex_state = 3}, + [212] = {.lex_state = 2}, + [213] = {.lex_state = 2}, [214] = {.lex_state = 3}, [215] = {.lex_state = 3}, - [216] = {.lex_state = 46}, + [216] = {.lex_state = 3}, [217] = {.lex_state = 3}, [218] = {.lex_state = 3}, [219] = {.lex_state = 3}, [220] = {.lex_state = 3}, [221] = {.lex_state = 3}, - [222] = {.lex_state = 46}, + [222] = {.lex_state = 2}, [223] = {.lex_state = 3}, - [224] = {.lex_state = 1}, + [224] = {.lex_state = 3}, [225] = {.lex_state = 3}, [226] = {.lex_state = 3}, - [227] = {.lex_state = 3}, - [228] = {.lex_state = 3}, - [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 3}, - [232] = {.lex_state = 3}, - [233] = {.lex_state = 3}, - [234] = {.lex_state = 1}, - [235] = {.lex_state = 1}, - [236] = {.lex_state = 3}, - [237] = {.lex_state = 3}, - [238] = {.lex_state = 3}, - [239] = {.lex_state = 3}, - [240] = {.lex_state = 46}, - [241] = {.lex_state = 3}, - [242] = {.lex_state = 3}, - [243] = {.lex_state = 1}, + [227] = {.lex_state = 2}, + [228] = {.lex_state = 2}, + [229] = {.lex_state = 2}, + [230] = {.lex_state = 2}, + [231] = {.lex_state = 2}, + [232] = {.lex_state = 2}, + [233] = {.lex_state = 2}, + [234] = {.lex_state = 2}, + [235] = {.lex_state = 2}, + [236] = {.lex_state = 2}, + [237] = {.lex_state = 2}, + [238] = {.lex_state = 2}, + [239] = {.lex_state = 2}, + [240] = {.lex_state = 2}, + [241] = {.lex_state = 2}, + [242] = {.lex_state = 2}, + [243] = {.lex_state = 2}, [244] = {.lex_state = 3}, [245] = {.lex_state = 3}, [246] = {.lex_state = 3}, [247] = {.lex_state = 3}, [248] = {.lex_state = 3}, [249] = {.lex_state = 3}, - [250] = {.lex_state = 3}, + [250] = {.lex_state = 45}, [251] = {.lex_state = 3}, [252] = {.lex_state = 3}, [253] = {.lex_state = 3}, [254] = {.lex_state = 3}, [255] = {.lex_state = 3}, - [256] = {.lex_state = 1}, + [256] = {.lex_state = 45}, [257] = {.lex_state = 3}, - [258] = {.lex_state = 3}, - [259] = {.lex_state = 1}, - [260] = {.lex_state = 1}, - [261] = {.lex_state = 1}, - [262] = {.lex_state = 1}, - [263] = {.lex_state = 3}, - [264] = {.lex_state = 1}, - [265] = {.lex_state = 3}, - [266] = {.lex_state = 3}, - [267] = {.lex_state = 3}, - [268] = {.lex_state = 3}, - [269] = {.lex_state = 3}, - [270] = {.lex_state = 3}, - [271] = {.lex_state = 3}, - [272] = {.lex_state = 3}, - [273] = {.lex_state = 3}, - [274] = {.lex_state = 3}, - [275] = {.lex_state = 3}, - [276] = {.lex_state = 3}, - [277] = {.lex_state = 3}, - [278] = {.lex_state = 3}, - [279] = {.lex_state = 3}, - [280] = {.lex_state = 3}, - [281] = {.lex_state = 3}, - [282] = {.lex_state = 3}, - [283] = {.lex_state = 3}, - [284] = {.lex_state = 3}, - [285] = {.lex_state = 3}, - [286] = {.lex_state = 3}, - [287] = {.lex_state = 1}, - [288] = {.lex_state = 1}, - [289] = {.lex_state = 3}, - [290] = {.lex_state = 1}, - [291] = {.lex_state = 3}, - [292] = {.lex_state = 1}, - [293] = {.lex_state = 1}, - [294] = {.lex_state = 1}, - [295] = {.lex_state = 1}, - [296] = {.lex_state = 3}, - [297] = {.lex_state = 1}, - [298] = {.lex_state = 1}, - [299] = {.lex_state = 1}, - [300] = {.lex_state = 1}, - [301] = {.lex_state = 1}, - [302] = {.lex_state = 6}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 6}, - [305] = {.lex_state = 6}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 0}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 6}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 0}, - [312] = {.lex_state = 6}, - [313] = {.lex_state = 0}, - [314] = {.lex_state = 6}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, - [319] = {.lex_state = 6}, - [320] = {.lex_state = 6}, - [321] = {.lex_state = 6}, - [322] = {.lex_state = 0}, - [323] = {.lex_state = 6}, - [324] = {.lex_state = 6}, + [258] = {.lex_state = 45}, + [259] = {.lex_state = 7}, + [260] = {.lex_state = 2}, + [261] = {.lex_state = 2}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 0}, + [264] = {.lex_state = 0}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 2}, + [267] = {.lex_state = 2}, + [268] = {.lex_state = 7}, + [269] = {.lex_state = 0}, + [270] = {.lex_state = 0}, + [271] = {.lex_state = 0}, + [272] = {.lex_state = 18}, + [273] = {.lex_state = 18}, + [274] = {.lex_state = 0}, + [275] = {.lex_state = 2}, + [276] = {.lex_state = 2}, + [277] = {.lex_state = 0}, + [278] = {.lex_state = 7}, + [279] = {.lex_state = 2}, + [280] = {.lex_state = 7}, + [281] = {.lex_state = 7}, + [282] = {.lex_state = 0}, + [283] = {.lex_state = 2}, + [284] = {.lex_state = 2}, + [285] = {.lex_state = 0}, + [286] = {.lex_state = 7}, + [287] = {.lex_state = 7}, + [288] = {.lex_state = 7}, + [289] = {.lex_state = 7}, + [290] = {.lex_state = 7}, + [291] = {.lex_state = 7}, + [292] = {.lex_state = 7}, + [293] = {.lex_state = 7}, + [294] = {.lex_state = 7}, + [295] = {.lex_state = 7}, + [296] = {.lex_state = 7}, + [297] = {.lex_state = 7}, + [298] = {.lex_state = 7}, + [299] = {.lex_state = 7}, + [300] = {.lex_state = 2}, + [301] = {.lex_state = 7}, + [302] = {.lex_state = 2}, + [303] = {.lex_state = 7}, + [304] = {.lex_state = 7}, + [305] = {.lex_state = 7}, + [306] = {.lex_state = 7}, + [307] = {.lex_state = 7}, + [308] = {.lex_state = 7}, + [309] = {.lex_state = 0}, + [310] = {.lex_state = 7}, + [311] = {.lex_state = 7}, + [312] = {.lex_state = 2}, + [313] = {.lex_state = 7}, + [314] = {.lex_state = 7}, + [315] = {.lex_state = 7}, + [316] = {.lex_state = 2}, + [317] = {.lex_state = 7}, + [318] = {.lex_state = 2}, + [319] = {.lex_state = 2}, + [320] = {.lex_state = 2}, + [321] = {.lex_state = 0}, + [322] = {.lex_state = 2}, + [323] = {.lex_state = 0}, + [324] = {.lex_state = 7}, [325] = {.lex_state = 0}, - [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, - [328] = {.lex_state = 6}, - [329] = {.lex_state = 0}, - [330] = {.lex_state = 6}, - [331] = {.lex_state = 6}, - [332] = {.lex_state = 6}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 6}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 6}, - [338] = {.lex_state = 6}, - [339] = {.lex_state = 0}, - [340] = {.lex_state = 0}, - [341] = {.lex_state = 6}, - [342] = {.lex_state = 6}, - [343] = {.lex_state = 6}, - [344] = {.lex_state = 6}, - [345] = {.lex_state = 6}, - [346] = {.lex_state = 6}, - [347] = {.lex_state = 6}, - [348] = {.lex_state = 6}, - [349] = {.lex_state = 6}, - [350] = {.lex_state = 6}, - [351] = {.lex_state = 6}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 6}, - [354] = {.lex_state = 6}, + [326] = {.lex_state = 0}, + [327] = {.lex_state = 7}, + [328] = {.lex_state = 7}, + [329] = {.lex_state = 7}, + [330] = {.lex_state = 7}, + [331] = {.lex_state = 7}, + [332] = {.lex_state = 7}, + [333] = {.lex_state = 7}, + [334] = {.lex_state = 7}, + [335] = {.lex_state = 7}, + [336] = {.lex_state = 7}, + [337] = {.lex_state = 7}, + [338] = {.lex_state = 7}, + [339] = {.lex_state = 7}, + [340] = {.lex_state = 7}, + [341] = {.lex_state = 0}, + [342] = {.lex_state = 0}, + [343] = {.lex_state = 7}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 7}, + [346] = {.lex_state = 7}, + [347] = {.lex_state = 7}, + [348] = {.lex_state = 7}, + [349] = {.lex_state = 0}, + [350] = {.lex_state = 7}, + [351] = {.lex_state = 7}, + [352] = {.lex_state = 49}, + [353] = {.lex_state = 7}, + [354] = {.lex_state = 7}, [355] = {.lex_state = 0}, - [356] = {.lex_state = 6}, - [357] = {.lex_state = 6}, - [358] = {.lex_state = 6}, - [359] = {.lex_state = 6}, + [356] = {.lex_state = 7}, + [357] = {.lex_state = 0}, + [358] = {.lex_state = 0}, + [359] = {.lex_state = 7}, [360] = {.lex_state = 0}, - [361] = {.lex_state = 6}, - [362] = {.lex_state = 6}, + [361] = {.lex_state = 7}, + [362] = {.lex_state = 0}, [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, + [364] = {.lex_state = 7}, [365] = {.lex_state = 0}, - [366] = {.lex_state = 6}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 6}, - [369] = {.lex_state = 6}, - [370] = {.lex_state = 6}, - [371] = {.lex_state = 6}, - [372] = {.lex_state = 6}, - [373] = {.lex_state = 6}, - [374] = {.lex_state = 6}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 7}, + [369] = {.lex_state = 0}, + [370] = {.lex_state = 7}, + [371] = {.lex_state = 0}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 0}, [375] = {.lex_state = 0}, - [376] = {.lex_state = 0}, + [376] = {.lex_state = 7}, [377] = {.lex_state = 0}, [378] = {.lex_state = 0}, [379] = {.lex_state = 0}, [380] = {.lex_state = 0}, [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 49}, + [382] = {.lex_state = 45}, + [383] = {.lex_state = 0}, [384] = {.lex_state = 0}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 0}, - [389] = {.lex_state = 6}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 7}, + [387] = {.lex_state = 0}, + [388] = {.lex_state = 7}, + [389] = {.lex_state = 0}, [390] = {.lex_state = 0}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 0}, + [391] = {.lex_state = 7}, + [392] = {.lex_state = 7}, [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, + [394] = {.lex_state = 7}, [395] = {.lex_state = 0}, [396] = {.lex_state = 0}, - [397] = {.lex_state = 6}, + [397] = {.lex_state = 0}, [398] = {.lex_state = 0}, [399] = {.lex_state = 0}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 6}, - [403] = {.lex_state = 0}, - [404] = {.lex_state = 0}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 0}, - [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 6}, - [422] = {.lex_state = 6}, - [423] = {.lex_state = 6}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2514,10 +2406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [sym_float] = ACTIONS(1), [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), [sym_string] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), @@ -2537,6 +2427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_and] = ACTIONS(1), @@ -2550,1437 +2441,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_into] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), + [anon_sym_elseif] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_loop] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), [anon_sym_match] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(378), - [sym_item] = STATE(2), - [sym_comment] = STATE(212), - [sym_statement] = STATE(212), - [sym_yield] = STATE(206), - [sym_expression] = STATE(138), - [sym__expression_kind] = STATE(186), - [sym_value] = STATE(186), - [sym_boolean] = STATE(181), - [sym_list] = STATE(181), - [sym_function] = STATE(181), - [sym_table] = STATE(181), - [sym_map] = STATE(181), - [sym_math] = STATE(186), - [sym_logic] = STATE(186), - [sym_assignment] = STATE(186), - [sym_select] = STATE(186), - [sym_insert] = STATE(186), - [sym_control_flow] = STATE(186), - [sym_function_call] = STATE(186), - [sym_loop] = STATE(186), + [sym_root] = STATE(393), + [sym_item] = STATE(3), + [sym_comment] = STATE(202), + [sym_statement] = STATE(202), + [sym_yield] = STATE(177), + [sym_expression] = STATE(73), + [sym_value] = STATE(92), + [sym_boolean] = STATE(102), + [sym_list] = STATE(102), + [sym_function] = STATE(102), + [sym_table] = STATE(102), + [sym_map] = STATE(102), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(177), + [sym_select] = STATE(177), + [sym_insert] = STATE(177), + [sym_control_flow] = STATE(177), + [sym_function_call] = STATE(92), + [sym_loop] = STATE(177), [sym_while_loop] = STATE(178), [sym_break_loop] = STATE(178), - [sym_match] = STATE(186), - [aux_sym_root_repeat1] = STATE(2), + [sym_match] = STATE(177), + [aux_sym_root_repeat1] = STATE(3), [sym_identifier] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [sym_float] = ACTIONS(9), - [sym_integer] = ACTIONS(9), - [sym_string] = ACTIONS(11), - [anon_sym_true] = ACTIONS(13), - [anon_sym_false] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_function] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_table] = ACTIONS(21), - [anon_sym_select] = ACTIONS(23), - [anon_sym_insert] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_loop] = ACTIONS(31), - [anon_sym_match] = ACTIONS(33), - }, - [2] = { - [sym_item] = STATE(3), - [sym_comment] = STATE(212), - [sym_statement] = STATE(212), - [sym_yield] = STATE(206), - [sym_expression] = STATE(138), - [sym__expression_kind] = STATE(186), - [sym_value] = STATE(186), - [sym_boolean] = STATE(181), - [sym_list] = STATE(181), - [sym_function] = STATE(181), - [sym_table] = STATE(181), - [sym_map] = STATE(181), - [sym_math] = STATE(186), - [sym_logic] = STATE(186), - [sym_assignment] = STATE(186), - [sym_select] = STATE(186), - [sym_insert] = STATE(186), - [sym_control_flow] = STATE(186), - [sym_function_call] = STATE(186), - [sym_loop] = STATE(186), - [sym_while_loop] = STATE(178), - [sym_break_loop] = STATE(178), - [sym_match] = STATE(186), - [aux_sym_root_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(35), - [sym_identifier] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(7), - [sym_float] = ACTIONS(9), - [sym_integer] = ACTIONS(9), - [sym_string] = ACTIONS(11), - [anon_sym_true] = ACTIONS(13), - [anon_sym_false] = ACTIONS(13), - [anon_sym_LBRACK] = ACTIONS(15), - [anon_sym_function] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_table] = ACTIONS(21), - [anon_sym_select] = ACTIONS(23), - [anon_sym_insert] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_loop] = ACTIONS(31), - [anon_sym_match] = ACTIONS(33), - }, - [3] = { - [sym_item] = STATE(3), - [sym_comment] = STATE(212), - [sym_statement] = STATE(212), - [sym_yield] = STATE(206), - [sym_expression] = STATE(138), - [sym__expression_kind] = STATE(186), - [sym_value] = STATE(186), - [sym_boolean] = STATE(181), - [sym_list] = STATE(181), - [sym_function] = STATE(181), - [sym_table] = STATE(181), - [sym_map] = STATE(181), - [sym_math] = STATE(186), - [sym_logic] = STATE(186), - [sym_assignment] = STATE(186), - [sym_select] = STATE(186), - [sym_insert] = STATE(186), - [sym_control_flow] = STATE(186), - [sym_function_call] = STATE(186), - [sym_loop] = STATE(186), - [sym_while_loop] = STATE(178), - [sym_break_loop] = STATE(178), - [sym_match] = STATE(186), - [aux_sym_root_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(37), - [sym_identifier] = ACTIONS(39), - [anon_sym_POUND] = ACTIONS(42), - [anon_sym_LPAREN] = ACTIONS(45), - [sym_float] = ACTIONS(48), - [sym_integer] = ACTIONS(48), - [sym_string] = ACTIONS(51), - [anon_sym_true] = ACTIONS(54), - [anon_sym_false] = ACTIONS(54), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_function] = ACTIONS(60), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_table] = ACTIONS(66), - [anon_sym_select] = ACTIONS(69), - [anon_sym_insert] = ACTIONS(72), - [anon_sym_if] = ACTIONS(75), - [anon_sym_while] = ACTIONS(78), - [anon_sym_loop] = ACTIONS(81), - [anon_sym_match] = ACTIONS(84), + [sym_integer] = ACTIONS(7), + [sym_float] = ACTIONS(7), + [sym_string] = ACTIONS(9), + [anon_sym_true] = ACTIONS(11), + [anon_sym_false] = ACTIONS(11), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_function] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_table] = ACTIONS(19), + [anon_sym_select] = ACTIONS(21), + [anon_sym_insert] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_loop] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, + [0] = 23, ACTIONS(33), 1, + ts_builtin_sym_end, + ACTIONS(35), 1, + sym_identifier, + ACTIONS(38), 1, + anon_sym_POUND, + ACTIONS(44), 1, + sym_string, + ACTIONS(50), 1, + anon_sym_LBRACK, + ACTIONS(53), 1, + anon_sym_function, + ACTIONS(56), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(62), 1, + anon_sym_select, + ACTIONS(65), 1, + anon_sym_insert, + ACTIONS(68), 1, + anon_sym_if, + ACTIONS(71), 1, + anon_sym_while, + ACTIONS(74), 1, + anon_sym_loop, + ACTIONS(77), 1, anon_sym_match, - ACTIONS(87), 1, - anon_sym_RBRACE, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(41), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(47), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, + STATE(2), 2, + sym_item, + aux_sym_root_repeat1, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(202), 2, + sym_comment, + sym_statement, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [85] = 22, + [88] = 23, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - ACTIONS(89), 1, - anon_sym_RBRACE, - STATE(138), 1, + ACTIONS(80), 1, + ts_builtin_sym_end, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, + STATE(2), 2, + sym_item, + aux_sym_root_repeat1, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(202), 2, + sym_comment, + sym_statement, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [170] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(91), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, + STATE(177), 7, sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [255] = 22, - ACTIONS(3), 1, + [176] = 22, + ACTIONS(82), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(88), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(94), 1, anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(93), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [340] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(95), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [425] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, ACTIONS(97), 1, + anon_sym_function, + ACTIONS(100), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [510] = 22, - ACTIONS(99), 1, - sym_identifier, - ACTIONS(102), 1, - anon_sym_LPAREN, + ACTIONS(105), 1, + anon_sym_table, ACTIONS(108), 1, - sym_string, + anon_sym_select, + ACTIONS(111), 1, + anon_sym_insert, ACTIONS(114), 1, - anon_sym_LBRACK, + anon_sym_if, ACTIONS(117), 1, - anon_sym_function, + anon_sym_while, ACTIONS(120), 1, - anon_sym_LBRACE, + anon_sym_loop, ACTIONS(123), 1, - anon_sym_RBRACE, + anon_sym_break, ACTIONS(125), 1, - anon_sym_table, - ACTIONS(128), 1, - anon_sym_select, - ACTIONS(131), 1, - anon_sym_insert, - ACTIONS(134), 1, - anon_sym_if, - ACTIONS(137), 1, - anon_sym_while, - ACTIONS(140), 1, - anon_sym_loop, - ACTIONS(143), 1, anon_sym_match, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(105), 2, - sym_float, + ACTIONS(85), 2, sym_integer, - ACTIONS(111), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [595] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(146), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [680] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(148), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [765] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(150), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [850] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(152), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [935] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(154), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1020] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(156), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1105] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(158), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1190] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(160), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1275] = 22, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(162), 1, - anon_sym_RBRACE, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(10), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1360] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(7), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1442] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(6), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1524] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1606] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(16), 2, - sym_statement, - aux_sym_function_repeat2, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [1688] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(138), 1, - sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, + ACTIONS(91), 2, anon_sym_true, anon_sym_false, STATE(4), 2, @@ -3989,120 +2668,718 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [1770] = 21, + [260] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(128), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(15), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [1852] = 21, + [341] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(130), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [422] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(132), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [503] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(134), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [584] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(136), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(24), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [665] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(138), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [746] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(140), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [827] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(142), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [908] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(144), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [989] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(146), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1070] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(148), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1151] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(150), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(14), 2, @@ -4111,303 +3388,712 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [1934] = 21, + [1232] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(152), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(13), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2016] = 21, + [1313] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(154), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(9), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2098] = 21, + [1394] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(156), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(11), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2180] = 21, + [1475] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(158), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(8), 2, + STATE(4), 2, sym_statement, aux_sym_function_repeat2, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2262] = 21, + [1556] = 21, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + ACTIONS(160), 1, + anon_sym_RBRACE, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1637] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(162), 1, + anon_sym_RBRACE, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1718] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(164), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1799] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(166), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(4), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1880] = 21, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(168), 1, + anon_sym_break, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(23), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [1961] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(15), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2039] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(7), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2117] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(18), 2, @@ -4416,59 +4102,114 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2344] = 21, + [2195] = 20, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(21), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2273] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(5), 2, @@ -4477,59 +4218,394 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2426] = 21, + [2351] = 20, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(6), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2429] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2507] = 10, + ACTIONS(174), 1, + anon_sym_DASH_GT, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(105), 1, + aux_sym_yield_repeat1, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(170), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(172), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [2565] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(22), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2643] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(10), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2721] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2799] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(12), 2, @@ -4538,59 +4614,172 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2508] = 21, + [2877] = 20, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(13), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [2955] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(17), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [3033] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(19), 2, @@ -4599,4975 +4788,5010 @@ static const uint16_t ts_small_parse_table[] = { STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2590] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, + STATE(177), 7, sym_yield, - STATE(269), 1, - sym_expression, - STATE(425), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [2671] = 21, - ACTIONS(164), 1, + [3111] = 20, + ACTIONS(3), 1, sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, - sym_yield, - STATE(269), 1, - sym_expression, - STATE(388), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2752] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(210), 1, - sym_expression, - STATE(223), 1, - sym_yield, - STATE(237), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2833] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(210), 1, - sym_expression, - STATE(223), 1, - sym_yield, - STATE(250), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2914] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(210), 1, - sym_expression, - STATE(223), 1, - sym_yield, - STATE(247), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [2995] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(29), 1, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, + STATE(73), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(20), 2, + sym_statement, + aux_sym_function_repeat2, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [3189] = 5, + ACTIONS(188), 1, + anon_sym_LBRACE, + ACTIONS(190), 1, + anon_sym_EQ, + ACTIONS(192), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(184), 13, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(186), 20, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [3237] = 20, ACTIONS(194), 1, sym_identifier, - ACTIONS(196), 1, - anon_sym_RBRACE, ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, + sym_string, ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(210), 1, + anon_sym_select, + ACTIONS(212), 1, + anon_sym_insert, + ACTIONS(214), 1, anon_sym_if, + ACTIONS(216), 1, + anon_sym_while, + ACTIONS(218), 1, + anon_sym_loop, + ACTIONS(220), 1, + anon_sym_match, STATE(54), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, sym_expression, - ACTIONS(9), 2, - sym_float, + STATE(123), 1, + sym_statement, + ACTIONS(196), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(200), 2, anon_sym_true, anon_sym_false, - STATE(178), 2, + STATE(116), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(131), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [3076] = 21, + [3314] = 20, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, - ACTIONS(15), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(17), 1, + ACTIONS(15), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, + ACTIONS(21), 1, anon_sym_select, - ACTIONS(25), 1, + ACTIONS(23), 1, anon_sym_insert, - ACTIONS(27), 1, + ACTIONS(25), 1, anon_sym_if, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_while, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_loop, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_match, - STATE(131), 1, + STATE(73), 1, sym_expression, - STATE(192), 1, - sym_yield, - STATE(194), 1, + STATE(145), 1, sym_statement, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3157] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(190), 1, - sym_statement, - STATE(192), 1, + STATE(177), 7, sym_yield, - STATE(193), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [3238] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, + [3391] = 20, ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, + sym_identifier, ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, + sym_string, ACTIONS(230), 1, - anon_sym_loop, + anon_sym_LBRACK, ACTIONS(232), 1, - anon_sym_match, - STATE(150), 1, - sym_expression, - STATE(151), 1, - sym_yield, - STATE(200), 1, - sym_statement, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3319] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(192), 1, - sym_yield, - STATE(193), 1, - sym_expression, - STATE(194), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3400] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(217), 1, - sym_expression, - STATE(223), 1, - sym_yield, - STATE(247), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3481] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, - sym_yield, - STATE(269), 1, - sym_expression, - STATE(390), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3562] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(151), 1, - sym_yield, - STATE(152), 1, - sym_statement, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3643] = 21, ACTIONS(234), 1, - sym_identifier, - ACTIONS(237), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - sym_string, - ACTIONS(249), 1, - anon_sym_LBRACK, - ACTIONS(252), 1, - anon_sym_function, - ACTIONS(255), 1, anon_sym_LBRACE, - ACTIONS(258), 1, - anon_sym_RBRACE, - ACTIONS(260), 1, + ACTIONS(236), 1, anon_sym_table, - ACTIONS(263), 1, + ACTIONS(238), 1, anon_sym_select, - ACTIONS(266), 1, + ACTIONS(240), 1, anon_sym_insert, - ACTIONS(269), 1, + ACTIONS(242), 1, anon_sym_if, - ACTIONS(272), 1, + ACTIONS(244), 1, anon_sym_while, - ACTIONS(275), 1, + ACTIONS(246), 1, anon_sym_loop, - ACTIONS(278), 1, + ACTIONS(248), 1, anon_sym_match, - STATE(48), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, + STATE(212), 1, sym_expression, - ACTIONS(240), 2, - sym_float, - sym_integer, - ACTIONS(246), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3724] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, - sym_yield, - STATE(269), 1, - sym_expression, - STATE(400), 1, + STATE(320), 1, sym_statement, - ACTIONS(168), 2, - sym_float, + ACTIONS(224), 2, sym_integer, - ACTIONS(172), 2, + sym_float, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(226), 2, + STATE(283), 2, sym_while_loop, sym_break_loop, - STATE(239), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(302), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [3805] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(281), 1, - anon_sym_RBRACE, - STATE(51), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3886] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(283), 1, - anon_sym_RBRACE, - STATE(48), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [3967] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, + [3468] = 20, ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, + sym_identifier, ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, + sym_string, ACTIONS(230), 1, - anon_sym_loop, + anon_sym_LBRACK, ACTIONS(232), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(141), 1, - sym_statement, - STATE(151), 1, - sym_yield, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4048] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(234), 1, anon_sym_LBRACE, - ACTIONS(180), 1, + ACTIONS(236), 1, anon_sym_table, - ACTIONS(182), 1, + ACTIONS(238), 1, anon_sym_select, - ACTIONS(184), 1, + ACTIONS(240), 1, anon_sym_insert, - ACTIONS(186), 1, + ACTIONS(242), 1, anon_sym_if, - ACTIONS(188), 1, + ACTIONS(244), 1, anon_sym_while, - ACTIONS(190), 1, + ACTIONS(246), 1, anon_sym_loop, - ACTIONS(192), 1, + ACTIONS(248), 1, anon_sym_match, - STATE(217), 1, + STATE(212), 1, sym_expression, - STATE(223), 1, - sym_yield, - STATE(266), 1, + STATE(300), 1, sym_statement, - ACTIONS(168), 2, - sym_float, + ACTIONS(224), 2, sym_integer, - ACTIONS(172), 2, + sym_float, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(226), 2, + STATE(283), 2, sym_while_loop, sym_break_loop, - STATE(239), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(302), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [4129] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(285), 1, - anon_sym_RBRACE, - STATE(48), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4210] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, + [3545] = 20, ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, + sym_identifier, ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, + sym_string, ACTIONS(230), 1, - anon_sym_loop, + anon_sym_LBRACK, ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(238), 1, + anon_sym_select, + ACTIONS(240), 1, + anon_sym_insert, + ACTIONS(242), 1, + anon_sym_if, + ACTIONS(244), 1, + anon_sym_while, + ACTIONS(246), 1, + anon_sym_loop, + ACTIONS(248), 1, anon_sym_match, - STATE(124), 1, + STATE(212), 1, sym_expression, - STATE(147), 1, + STATE(267), 1, sym_statement, - STATE(151), 1, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(283), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(302), 7, sym_yield, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [4291] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, - sym_yield, - STATE(269), 1, - sym_expression, - STATE(418), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4372] = 21, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(124), 1, - sym_expression, - STATE(151), 1, - sym_yield, - STATE(161), 1, - sym_statement, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4453] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(206), 1, - sym_yield, - STATE(269), 1, - sym_expression, - STATE(408), 1, - sym_statement, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4534] = 21, - ACTIONS(287), 1, - sym_identifier, - ACTIONS(290), 1, - anon_sym_LPAREN, - ACTIONS(296), 1, - sym_string, - ACTIONS(302), 1, - anon_sym_LBRACK, - ACTIONS(305), 1, - anon_sym_function, - ACTIONS(308), 1, - anon_sym_LBRACE, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(313), 1, - anon_sym_table, - ACTIONS(316), 1, - anon_sym_select, - ACTIONS(319), 1, - anon_sym_insert, - ACTIONS(322), 1, - anon_sym_if, - ACTIONS(325), 1, - anon_sym_while, - ACTIONS(328), 1, - anon_sym_loop, - ACTIONS(331), 1, - anon_sym_match, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(293), 2, - sym_float, - sym_integer, - ACTIONS(299), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4615] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(336), 1, - anon_sym_RBRACE, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4696] = 21, + [3622] = 20, ACTIONS(3), 1, sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(9), 1, sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(15), 1, - anon_sym_LBRACK, + anon_sym_function, ACTIONS(17), 1, - anon_sym_function, + anon_sym_LBRACE, ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_table, ACTIONS(21), 1, - anon_sym_table, + anon_sym_select, ACTIONS(23), 1, - anon_sym_select, + anon_sym_insert, ACTIONS(25), 1, - anon_sym_insert, + anon_sym_if, ACTIONS(27), 1, - anon_sym_if, + anon_sym_while, ACTIONS(29), 1, - anon_sym_while, + anon_sym_loop, ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, anon_sym_match, - STATE(138), 1, + STATE(73), 1, sym_expression, - STATE(206), 1, - sym_yield, - STATE(216), 1, - sym_statement, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4777] = 21, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(131), 1, - sym_expression, - STATE(190), 1, - sym_statement, - STATE(192), 1, - sym_yield, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4858] = 21, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(217), 1, - sym_expression, - STATE(223), 1, - sym_yield, STATE(250), 1, sym_statement, - ACTIONS(168), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [4939] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - ACTIONS(344), 1, - anon_sym_RBRACE, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5020] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - ACTIONS(346), 1, - anon_sym_RBRACE, - STATE(66), 1, - aux_sym_function_call_repeat1, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, STATE(178), 2, sym_while_loop, sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, + STATE(177), 7, + sym_yield, sym_assignment, sym_select, sym_insert, sym_control_flow, - sym_function_call, sym_loop, sym_match, - [5101] = 21, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, + [3699] = 20, ACTIONS(194), 1, sym_identifier, ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, + sym_string, ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(210), 1, + anon_sym_select, + ACTIONS(212), 1, + anon_sym_insert, + ACTIONS(214), 1, anon_sym_if, + ACTIONS(216), 1, + anon_sym_while, + ACTIONS(218), 1, + anon_sym_loop, + ACTIONS(220), 1, + anon_sym_match, + STATE(54), 1, + sym_expression, + STATE(128), 1, + sym_statement, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(116), 2, + sym_while_loop, + sym_break_loop, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(131), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [3776] = 20, + ACTIONS(3), 1, + sym_identifier, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(21), 1, + anon_sym_select, + ACTIONS(23), 1, + anon_sym_insert, + ACTIONS(25), 1, + anon_sym_if, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + STATE(73), 1, + sym_expression, + STATE(179), 1, + sym_statement, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [3853] = 20, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(212), 1, + sym_expression, + STATE(377), 1, + sym_statement, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [3930] = 20, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(238), 1, + anon_sym_select, + ACTIONS(240), 1, + anon_sym_insert, + ACTIONS(242), 1, + anon_sym_if, + ACTIONS(244), 1, + anon_sym_while, + ACTIONS(246), 1, + anon_sym_loop, + ACTIONS(248), 1, + anon_sym_match, + STATE(212), 1, + sym_expression, + STATE(275), 1, + sym_statement, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(283), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(302), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4007] = 20, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(238), 1, + anon_sym_select, + ACTIONS(240), 1, + anon_sym_insert, + ACTIONS(242), 1, + anon_sym_if, + ACTIONS(244), 1, + anon_sym_while, + ACTIONS(246), 1, + anon_sym_loop, + ACTIONS(248), 1, + anon_sym_match, + STATE(212), 1, + sym_expression, + STATE(284), 1, + sym_statement, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(283), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(302), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4084] = 9, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(260), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(256), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(258), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4139] = 20, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(210), 1, + anon_sym_select, + ACTIONS(212), 1, + anon_sym_insert, + ACTIONS(214), 1, + anon_sym_if, + ACTIONS(216), 1, + anon_sym_while, + ACTIONS(218), 1, + anon_sym_loop, + ACTIONS(220), 1, + anon_sym_match, + STATE(54), 1, + sym_expression, + STATE(129), 1, + sym_statement, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(116), 2, + sym_while_loop, + sym_break_loop, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(131), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4216] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(262), 8, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(264), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4269] = 20, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(212), 1, + sym_expression, + STATE(380), 1, + sym_statement, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4346] = 20, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(210), 1, + anon_sym_select, + ACTIONS(212), 1, + anon_sym_insert, + ACTIONS(214), 1, + anon_sym_if, + ACTIONS(216), 1, + anon_sym_while, + ACTIONS(218), 1, + anon_sym_loop, + ACTIONS(220), 1, + anon_sym_match, + STATE(54), 1, + sym_expression, + STATE(109), 1, + sym_statement, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(116), 2, + sym_while_loop, + sym_break_loop, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(131), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4423] = 4, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(266), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(268), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4468] = 4, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(270), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(272), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4513] = 20, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(179), 1, + sym_statement, + STATE(212), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4590] = 20, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(212), 1, + sym_expression, + STATE(384), 1, + sym_statement, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4667] = 20, + ACTIONS(194), 1, + sym_identifier, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(210), 1, + anon_sym_select, + ACTIONS(212), 1, + anon_sym_insert, + ACTIONS(214), 1, + anon_sym_if, + ACTIONS(216), 1, + anon_sym_while, + ACTIONS(218), 1, + anon_sym_loop, + ACTIONS(220), 1, + anon_sym_match, + STATE(54), 1, + sym_expression, + STATE(112), 1, + sym_statement, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(116), 2, + sym_while_loop, + sym_break_loop, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(131), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4744] = 20, + ACTIONS(27), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_loop, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(222), 1, + sym_identifier, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(250), 1, + anon_sym_select, + ACTIONS(252), 1, + anon_sym_insert, + ACTIONS(254), 1, + anon_sym_if, + STATE(145), 1, + sym_statement, + STATE(212), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(178), 2, + sym_while_loop, + sym_break_loop, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + STATE(177), 7, + sym_yield, + sym_assignment, + sym_select, + sym_insert, + sym_control_flow, + sym_loop, + sym_match, + [4821] = 10, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(274), 1, + anon_sym_DASH_GT, + STATE(135), 1, + aux_sym_yield_repeat1, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(170), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(172), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4877] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(276), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(278), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4929] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(184), 1, + sym_logic_operator, + STATE(185), 1, + sym_math_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(280), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(282), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [4981] = 5, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, + anon_sym_EQ, + ACTIONS(288), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(184), 12, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(186), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5027] = 2, + ACTIONS(290), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(292), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5066] = 2, + ACTIONS(294), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(296), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5105] = 4, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(266), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(268), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5148] = 4, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(270), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(272), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5191] = 9, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(298), 1, + anon_sym_DASH_GT, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(256), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(258), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5244] = 2, + ACTIONS(300), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(302), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5283] = 2, + ACTIONS(304), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(306), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5322] = 2, + ACTIONS(308), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(310), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5361] = 2, + ACTIONS(312), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(314), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5400] = 3, + ACTIONS(188), 1, + anon_sym_LBRACE, + ACTIONS(184), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(186), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5441] = 2, + ACTIONS(316), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(318), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5480] = 2, + ACTIONS(320), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(322), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5519] = 2, + ACTIONS(184), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(186), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5558] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(262), 7, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(264), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5609] = 2, + ACTIONS(324), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(326), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5648] = 2, + ACTIONS(328), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(330), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5687] = 2, + ACTIONS(332), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(334), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5726] = 2, + ACTIONS(336), 15, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_elseif, + ACTIONS(338), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5765] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(280), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(282), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5815] = 4, + ACTIONS(186), 4, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(184), 7, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(340), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(342), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5857] = 2, + ACTIONS(300), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(302), 19, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_into, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5895] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(276), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(278), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5945] = 2, + ACTIONS(308), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(310), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [5982] = 2, + ACTIONS(184), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(186), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6019] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(184), 13, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(186), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6058] = 2, + ACTIONS(336), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(338), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6095] = 2, + ACTIONS(328), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(330), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6132] = 2, + ACTIONS(324), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(326), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6169] = 2, + ACTIONS(316), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(318), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6206] = 2, + ACTIONS(332), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(334), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6243] = 2, + ACTIONS(294), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(296), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6280] = 2, + ACTIONS(320), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(322), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6317] = 2, + ACTIONS(290), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(292), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6354] = 2, + ACTIONS(304), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(306), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6391] = 2, + ACTIONS(312), 14, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_DASH_GT, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(314), 18, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6428] = 4, + ACTIONS(186), 4, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(340), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(184), 7, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(342), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6468] = 4, + ACTIONS(174), 1, + anon_sym_DASH_GT, + STATE(106), 1, + aux_sym_yield_repeat1, + ACTIONS(344), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(346), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6501] = 4, ACTIONS(348), 1, + anon_sym_DASH_GT, + STATE(106), 1, + aux_sym_yield_repeat1, + ACTIONS(262), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(48), 1, + anon_sym_elseif, + ACTIONS(264), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6534] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + STATE(163), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(180), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + ACTIONS(182), 3, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(353), 4, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(351), 7, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + [6575] = 5, + ACTIONS(359), 1, + anon_sym_elseif, + ACTIONS(361), 1, + anon_sym_else, + STATE(114), 1, + aux_sym_control_flow_repeat1, + ACTIONS(355), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(357), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6609] = 5, + ACTIONS(359), 1, + anon_sym_elseif, + ACTIONS(367), 1, + anon_sym_else, + STATE(113), 1, + aux_sym_control_flow_repeat1, + ACTIONS(363), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(365), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6643] = 3, + ACTIONS(373), 1, + anon_sym_where, + ACTIONS(369), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(371), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6673] = 3, + ACTIONS(379), 1, + anon_sym_where, + ACTIONS(375), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(377), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6703] = 5, + ACTIONS(359), 1, + anon_sym_elseif, + ACTIONS(381), 1, + anon_sym_else, + STATE(108), 1, + aux_sym_control_flow_repeat1, + ACTIONS(363), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(365), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6737] = 5, + ACTIONS(359), 1, + anon_sym_elseif, + ACTIONS(383), 1, + anon_sym_else, + STATE(114), 1, + aux_sym_control_flow_repeat1, + ACTIONS(355), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(357), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6771] = 4, + ACTIONS(389), 1, + anon_sym_elseif, + STATE(114), 1, + aux_sym_control_flow_repeat1, + ACTIONS(385), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(387), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6803] = 2, + ACTIONS(392), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(394), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6830] = 2, + ACTIONS(396), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(398), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6857] = 13, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(402), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(126), 1, aux_sym_function_call_repeat1, - STATE(198), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5182] = 21, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, + [6906] = 13, + ACTIONS(404), 1, sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - ACTIONS(350), 1, + ACTIONS(410), 1, + sym_string, + ACTIONS(416), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_function, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, anon_sym_RBRACE, - STATE(59), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5263] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, + ACTIONS(427), 1, anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(60), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5341] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(64), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5419] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(67), 1, - aux_sym_match_repeat1, - STATE(278), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5497] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(207), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5572] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(270), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5647] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, - ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, - ACTIONS(202), 1, - anon_sym_if, - STATE(196), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5722] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, STATE(118), 1, + aux_sym_match_repeat1, + STATE(232), 1, sym_expression, - ACTIONS(208), 2, - sym_float, + ACTIONS(407), 2, sym_integer, - ACTIONS(212), 2, + sym_float, + ACTIONS(413), 2, anon_sym_true, anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5797] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, + [6955] = 4, + ACTIONS(430), 1, + anon_sym_DASH_GT, + STATE(119), 1, + aux_sym_yield_repeat1, + ACTIONS(262), 6, + ts_builtin_sym_end, + anon_sym_POUND, sym_string, - ACTIONS(214), 1, anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(127), 1, - sym_expression, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5872] = 19, - ACTIONS(204), 1, + anon_sym_RBRACE, + ACTIONS(264), 14, sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(120), 1, - sym_expression, - ACTIONS(208), 2, - sym_float, sym_integer, - ACTIONS(212), 2, + sym_float, anon_sym_true, anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [5947] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, anon_sym_select, - ACTIONS(340), 1, anon_sym_insert, - ACTIONS(342), 1, anon_sym_if, - STATE(279), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6022] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [6986] = 13, + ACTIONS(9), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(276), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6097] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(153), 1, - sym_logic, - STATE(282), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 10, - sym__expression_kind, - sym_value, - sym_math, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6174] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, ACTIONS(15), 1, - anon_sym_LBRACK, + anon_sym_function, ACTIONS(17), 1, - anon_sym_function, + anon_sym_LBRACE, ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, + ACTIONS(400), 1, sym_identifier, + ACTIONS(433), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(117), 1, + aux_sym_function_call_repeat1, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7035] = 13, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(435), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(134), 1, + aux_sym_function_call_repeat1, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7084] = 13, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + ACTIONS(439), 1, + anon_sym_RBRACE, + STATE(118), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7133] = 2, + ACTIONS(441), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(443), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7160] = 13, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + ACTIONS(445), 1, + anon_sym_RBRACE, + STATE(118), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7209] = 2, + ACTIONS(447), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(449), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7236] = 13, + ACTIONS(451), 1, + sym_identifier, + ACTIONS(457), 1, + sym_string, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_function, + ACTIONS(469), 1, + anon_sym_LBRACE, + ACTIONS(472), 1, + anon_sym_RBRACE, + ACTIONS(474), 1, + anon_sym_table, + STATE(107), 1, + sym_expression, + STATE(126), 1, + aux_sym_function_call_repeat1, + ACTIONS(454), 2, + sym_integer, + sym_float, + ACTIONS(460), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7285] = 2, + ACTIONS(477), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(479), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7312] = 2, + ACTIONS(481), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(483), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7339] = 2, + ACTIONS(485), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(487), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7366] = 2, + ACTIONS(489), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(491), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7393] = 2, + ACTIONS(256), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(258), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7420] = 2, + ACTIONS(493), 7, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(495), 15, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_else, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7447] = 13, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + ACTIONS(497), 1, + anon_sym_RBRACE, + STATE(118), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7496] = 13, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(499), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(126), 1, + aux_sym_function_call_repeat1, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7545] = 4, + ACTIONS(274), 1, + anon_sym_DASH_GT, + STATE(119), 1, + aux_sym_yield_repeat1, + ACTIONS(344), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(346), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7576] = 13, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(501), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(137), 1, + aux_sym_function_call_repeat1, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7625] = 13, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + ACTIONS(503), 1, + anon_sym_RBRACE, + STATE(107), 1, + sym_expression, + STATE(126), 1, + aux_sym_function_call_repeat1, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7674] = 3, + ACTIONS(505), 1, + anon_sym_where, + ACTIONS(375), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(377), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7702] = 3, + ACTIONS(507), 1, + anon_sym_where, + ACTIONS(369), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(371), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7730] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(122), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7776] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(124), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7822] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(133), 1, + aux_sym_match_repeat1, + STATE(232), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7868] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(227), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7911] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(234), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [7954] = 2, + ACTIONS(441), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(443), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [7979] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(235), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8022] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(239), 1, + sym_logic, + STATE(242), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 3, + sym_value, + sym_math, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8067] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(230), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8110] = 11, ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, + sym_string, ACTIONS(202), 1, - anon_sym_if, - STATE(195), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(509), 1, + sym_identifier, + STATE(66), 1, sym_expression, - ACTIONS(9), 2, - sym_float, + ACTIONS(196), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(200), 2, anon_sym_true, anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, + [8153] = 11, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + STATE(87), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, sym_value, sym_math, sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, sym_function_call, - sym_loop, - sym_match, - [6249] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(280), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(225), 11, - sym__expression_kind, + [8196] = 11, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + STATE(82), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, sym_value, sym_math, sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, sym_function_call, - sym_loop, - sym_match, - [6324] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8239] = 11, + ACTIONS(198), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(202), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(204), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(206), 1, anon_sym_LBRACE, - ACTIONS(180), 1, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(509), 1, + sym_identifier, + STATE(33), 1, + sym_expression, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8282] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(159), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8325] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(160), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8368] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(233), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8411] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(104), 1, + sym_logic, + STATE(241), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 3, + sym_value, + sym_math, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8456] = 2, + ACTIONS(447), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(449), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, anon_sym_table, - ACTIONS(182), 1, anon_sym_select, - ACTIONS(184), 1, anon_sym_insert, - ACTIONS(186), 1, anon_sym_if, - ACTIONS(188), 1, anon_sym_while, - ACTIONS(190), 1, anon_sym_loop, - ACTIONS(192), 1, + anon_sym_break, anon_sym_match, + [8481] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(236), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8524] = 4, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(268), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(266), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [8553] = 4, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(272), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(270), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [8582] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, STATE(213), 1, sym_expression, - ACTIONS(168), 2, - sym_float, + ACTIONS(224), 2, sym_integer, - ACTIONS(172), 2, + sym_float, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6399] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, + [8625] = 11, + ACTIONS(9), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(214), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6474] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(281), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6549] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, anon_sym_function, - ACTIONS(19), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(166), 1, + ACTIONS(400), 1, + sym_identifier, + STATE(65), 1, sym_expression, - ACTIONS(9), 2, - sym_float, + ACTIONS(7), 2, sym_integer, - ACTIONS(13), 2, + sym_float, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(186), 11, - sym__expression_kind, + [8668] = 11, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + STATE(71), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, sym_value, sym_math, sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, sym_function_call, - sym_loop, - sym_match, - [6624] = 19, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - ACTIONS(194), 1, - sym_identifier, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8711] = 11, ACTIONS(198), 1, - anon_sym_select, - ACTIONS(200), 1, - anon_sym_insert, + sym_string, ACTIONS(202), 1, - anon_sym_if, - STATE(197), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6699] = 19, + anon_sym_LBRACK, ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, anon_sym_function, - ACTIONS(218), 1, + ACTIONS(206), 1, anon_sym_LBRACE, - ACTIONS(220), 1, + ACTIONS(208), 1, anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(129), 1, + ACTIONS(509), 1, + sym_identifier, + STATE(56), 1, sym_expression, - ACTIONS(208), 2, - sym_float, + ACTIONS(196), 2, sym_integer, - ACTIONS(212), 2, + sym_float, + ACTIONS(200), 2, anon_sym_true, anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(162), 11, - sym__expression_kind, + [8754] = 2, + ACTIONS(489), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(491), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [8779] = 11, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(509), 1, + sym_identifier, + STATE(67), 1, + sym_expression, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 4, sym_value, sym_math, sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, sym_function_call, - sym_loop, - sym_match, - [6774] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8822] = 11, + ACTIONS(226), 1, sym_string, - ACTIONS(174), 1, + ACTIONS(230), 1, anon_sym_LBRACK, - ACTIONS(176), 1, + ACTIONS(232), 1, anon_sym_function, - ACTIONS(178), 1, + ACTIONS(234), 1, anon_sym_LBRACE, - ACTIONS(180), 1, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(240), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8865] = 12, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(88), 1, + sym_logic, + STATE(243), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 3, + sym_value, + sym_math, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8910] = 2, + ACTIONS(477), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(479), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, anon_sym_table, - ACTIONS(182), 1, anon_sym_select, - ACTIONS(184), 1, anon_sym_insert, - ACTIONS(186), 1, anon_sym_if, - ACTIONS(188), 1, anon_sym_while, - ACTIONS(190), 1, anon_sym_loop, - ACTIONS(192), 1, + anon_sym_break, anon_sym_match, + [8935] = 11, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + STATE(72), 1, + sym_expression, + ACTIONS(7), 2, + sym_integer, + sym_float, + ACTIONS(11), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [8978] = 2, + ACTIONS(493), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(495), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [9003] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(237), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9046] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(238), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9089] = 2, + ACTIONS(392), 6, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(394), 14, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_break, + anon_sym_match, + [9114] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, STATE(208), 1, sym_expression, - ACTIONS(168), 2, - sym_float, + ACTIONS(224), 2, sym_integer, - ACTIONS(172), 2, + sym_float, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6849] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(211), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6924] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(215), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [6999] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(274), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7074] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(136), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7149] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(252), 1, - sym_logic, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 10, - sym__expression_kind, - sym_value, - sym_math, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7226] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(255), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7301] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(272), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7376] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(271), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7451] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(135), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7526] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(177), 1, - sym_logic, - STATE(286), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 10, - sym__expression_kind, - sym_value, - sym_math, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7603] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(275), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7678] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(139), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7753] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(291), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7828] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(268), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7903] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(277), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [7978] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(252), 1, - sym_logic, - STATE(283), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 10, - sym__expression_kind, - sym_value, - sym_math, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8055] = 20, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(177), 1, - sym_logic, - STATE(284), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 10, - sym__expression_kind, - sym_value, - sym_math, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8132] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(296), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8207] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(125), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8282] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(132), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8357] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(273), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8432] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(285), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(289), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8507] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(134), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8582] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, + [9157] = 11, ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, + sym_string, ACTIONS(230), 1, - anon_sym_loop, + anon_sym_LBRACK, ACTIONS(232), 1, - anon_sym_match, - STATE(126), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(231), 1, sym_expression, - ACTIONS(208), 2, - sym_float, + ACTIONS(224), 2, sym_integer, - ACTIONS(212), 2, + sym_float, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8657] = 19, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_string, - ACTIONS(214), 1, - anon_sym_LBRACK, - ACTIONS(216), 1, - anon_sym_function, - ACTIONS(218), 1, - anon_sym_LBRACE, - ACTIONS(220), 1, - anon_sym_table, - ACTIONS(222), 1, - anon_sym_select, - ACTIONS(224), 1, - anon_sym_insert, - ACTIONS(226), 1, - anon_sym_if, - ACTIONS(228), 1, - anon_sym_while, - ACTIONS(230), 1, - anon_sym_loop, - ACTIONS(232), 1, - anon_sym_match, - STATE(122), 1, - sym_expression, - ACTIONS(208), 2, - sym_float, - sym_integer, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - STATE(163), 2, - sym_while_loop, - sym_break_loop, - STATE(168), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(162), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8732] = 19, - ACTIONS(3), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_string, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(17), 1, - anon_sym_function, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_table, - ACTIONS(23), 1, - anon_sym_select, - ACTIONS(25), 1, - anon_sym_insert, - ACTIONS(27), 1, - anon_sym_if, - ACTIONS(29), 1, - anon_sym_while, - ACTIONS(31), 1, - anon_sym_loop, - ACTIONS(33), 1, - anon_sym_match, - STATE(121), 1, - sym_expression, - ACTIONS(9), 2, - sym_float, - sym_integer, - ACTIONS(13), 2, - anon_sym_true, - anon_sym_false, - STATE(178), 2, - sym_while_loop, - sym_break_loop, - STATE(181), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(186), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8807] = 19, - ACTIONS(164), 1, - sym_identifier, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(182), 1, - anon_sym_select, - ACTIONS(184), 1, - anon_sym_insert, - ACTIONS(186), 1, - anon_sym_if, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - STATE(265), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8882] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(258), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [8957] = 19, - ACTIONS(166), 1, - anon_sym_LPAREN, - ACTIONS(170), 1, - sym_string, - ACTIONS(174), 1, - anon_sym_LBRACK, - ACTIONS(176), 1, - anon_sym_function, - ACTIONS(178), 1, - anon_sym_LBRACE, - ACTIONS(180), 1, - anon_sym_table, - ACTIONS(188), 1, - anon_sym_while, - ACTIONS(190), 1, - anon_sym_loop, - ACTIONS(192), 1, - anon_sym_match, - ACTIONS(334), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_select, - ACTIONS(340), 1, - anon_sym_insert, - ACTIONS(342), 1, - anon_sym_if, - STATE(257), 1, - sym_expression, - ACTIONS(168), 2, - sym_float, - sym_integer, - ACTIONS(172), 2, - anon_sym_true, - anon_sym_false, - STATE(226), 2, - sym_while_loop, - sym_break_loop, - STATE(239), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - STATE(225), 11, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_assignment, - sym_select, - sym_insert, - sym_control_flow, - sym_function_call, - sym_loop, - sym_match, - [9032] = 5, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - STATE(130), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 14, + [9200] = 2, + ACTIONS(256), 6, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 18, + ACTIONS(258), 14, sym_identifier, - sym_float, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9078] = 5, - ACTIONS(360), 1, - anon_sym_LBRACE, - ACTIONS(362), 1, - anon_sym_EQ, - ACTIONS(364), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(356), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(358), 19, - sym_identifier, sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9124] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(366), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(368), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9175] = 10, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(378), 1, - anon_sym_DASH_GT, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - STATE(203), 1, - aux_sym_yield_repeat1, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(352), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(354), 13, - sym_identifier, - sym_float, - sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, @@ -9577,3123 +9801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_loop, + anon_sym_break, anon_sym_match, - [9230] = 4, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(380), 14, + [9225] = 2, + ACTIONS(396), 6, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9273] = 5, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(386), 1, - anon_sym_EQ, - ACTIONS(388), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(356), 12, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(358), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9318] = 9, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(394), 1, - anon_sym_DASH_GT, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(390), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9371] = 5, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - STATE(146), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9416] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(396), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, ACTIONS(398), 14, sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9467] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(400), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(402), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9518] = 3, - ACTIONS(408), 1, - anon_sym_where, - ACTIONS(404), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(406), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9558] = 6, - ACTIONS(410), 1, - anon_sym_DASH_GT, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - STATE(176), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9604] = 3, - STATE(133), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(414), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9644] = 9, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(416), 1, - anon_sym_DASH_GT, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(390), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9696] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(366), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(368), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9746] = 4, - ACTIONS(418), 1, - anon_sym_DASH_GT, - STATE(133), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9788] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(400), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(402), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9838] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(396), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(398), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9888] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(380), 8, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(382), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9938] = 3, - ACTIONS(425), 1, - anon_sym_where, - ACTIONS(421), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(423), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [9978] = 9, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(427), 1, - anon_sym_DASH_GT, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(390), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10030] = 4, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(380), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10072] = 2, - ACTIONS(429), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(431), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10109] = 2, - ACTIONS(433), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(435), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10146] = 2, - ACTIONS(437), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(439), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10183] = 2, - ACTIONS(441), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(443), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10220] = 3, - ACTIONS(445), 1, - anon_sym_where, - ACTIONS(404), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(406), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10259] = 3, - ACTIONS(447), 1, - anon_sym_where, - ACTIONS(421), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(423), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10298] = 3, - STATE(149), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(414), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10337] = 3, - ACTIONS(453), 1, - anon_sym_else, - ACTIONS(449), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(451), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10376] = 2, - ACTIONS(441), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(443), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_into, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10413] = 4, - ACTIONS(455), 1, - anon_sym_DASH_GT, - STATE(149), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 13, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(382), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10454] = 9, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(458), 1, - anon_sym_DASH_GT, - STATE(75), 1, - sym_math_operator, - STATE(76), 1, - sym_logic_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(390), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 14, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10505] = 2, - ACTIONS(390), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(392), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10542] = 2, - ACTIONS(460), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(462), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10579] = 2, - ACTIONS(464), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(466), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10616] = 2, - ACTIONS(468), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(470), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10653] = 2, - ACTIONS(472), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(474), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10690] = 2, - ACTIONS(476), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(478), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10727] = 2, - ACTIONS(480), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(482), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10764] = 2, - ACTIONS(484), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(486), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10801] = 2, - ACTIONS(488), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(490), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10838] = 2, - ACTIONS(492), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(494), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10875] = 3, - ACTIONS(496), 1, - anon_sym_else, - ACTIONS(449), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(451), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10914] = 2, - ACTIONS(498), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(500), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10951] = 2, - ACTIONS(502), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(504), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [10988] = 2, - ACTIONS(506), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(508), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11025] = 2, - ACTIONS(510), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(512), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11062] = 6, - ACTIONS(514), 1, - anon_sym_DASH_GT, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - STATE(199), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(354), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11107] = 2, - ACTIONS(516), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(518), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11144] = 2, - ACTIONS(520), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(522), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11181] = 2, - ACTIONS(524), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(526), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11218] = 2, - ACTIONS(528), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(530), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11255] = 2, - ACTIONS(429), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(431), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11291] = 2, - ACTIONS(510), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(512), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11327] = 2, - ACTIONS(472), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(474), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11363] = 2, - ACTIONS(437), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(439), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11399] = 5, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(532), 1, - anon_sym_EQ, - ACTIONS(534), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(356), 9, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(358), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11441] = 4, - ACTIONS(410), 1, - anon_sym_DASH_GT, - STATE(133), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(414), 18, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_else, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11481] = 2, - ACTIONS(464), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(466), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11517] = 2, - ACTIONS(502), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(504), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11553] = 2, - ACTIONS(488), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(490), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11589] = 2, - ACTIONS(484), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(486), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11625] = 2, - ACTIONS(520), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(522), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11661] = 2, - ACTIONS(524), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(526), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11697] = 2, - ACTIONS(528), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(530), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11733] = 2, - ACTIONS(516), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(518), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11769] = 2, - ACTIONS(492), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(494), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11805] = 2, - ACTIONS(498), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(500), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11841] = 2, - ACTIONS(476), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(478), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11877] = 2, - ACTIONS(468), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(470), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11913] = 2, - ACTIONS(480), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(482), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11949] = 2, - ACTIONS(460), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(462), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [11985] = 2, - ACTIONS(506), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(508), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12021] = 2, - ACTIONS(390), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(392), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12057] = 9, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(536), 1, - anon_sym_DASH_GT, - STATE(108), 1, - sym_logic_operator, - STATE(111), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(390), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12107] = 2, - ACTIONS(433), 14, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_DASH_GT, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(435), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12143] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(73), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(396), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(398), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12190] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(73), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(366), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(368), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12237] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(73), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(400), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(402), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12284] = 8, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(73), 1, - sym_logic_operator, - STATE(86), 1, - sym_math_operator, - ACTIONS(374), 2, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(376), 3, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(540), 5, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(538), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12331] = 4, - ACTIONS(514), 1, - anon_sym_DASH_GT, - STATE(149), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(414), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12370] = 3, - ACTIONS(542), 1, - anon_sym_else, - ACTIONS(449), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(451), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12406] = 3, - ACTIONS(544), 1, - anon_sym_where, - ACTIONS(421), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(423), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12442] = 3, - ACTIONS(546), 1, - anon_sym_where, - ACTIONS(404), 11, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - ACTIONS(406), 17, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12478] = 4, - ACTIONS(378), 1, - anon_sym_DASH_GT, - STATE(204), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(414), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12509] = 4, - ACTIONS(548), 1, - anon_sym_DASH_GT, - STATE(204), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(382), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12540] = 5, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(553), 1, - anon_sym_EQ, - ACTIONS(358), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(555), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(356), 14, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12571] = 2, - ACTIONS(390), 7, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - ACTIONS(392), 13, - sym_identifier, - sym_float, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12596] = 5, - ACTIONS(354), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - STATE(221), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12627] = 4, - ACTIONS(382), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(380), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12655] = 2, - ACTIONS(557), 6, - ts_builtin_sym_end, - anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(559), 13, - sym_identifier, sym_float, - sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, @@ -12703,306 +9824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_loop, + anon_sym_break, anon_sym_match, - [12679] = 7, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(561), 1, - anon_sym_DASH_GT, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(390), 6, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12713] = 6, - ACTIONS(354), 1, - anon_sym_DASH, - ACTIONS(563), 1, - anon_sym_DASH_GT, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - STATE(253), 1, - aux_sym_yield_repeat1, - ACTIONS(352), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12745] = 2, - ACTIONS(565), 6, + [9250] = 2, + ACTIONS(485), 6, ts_builtin_sym_end, anon_sym_POUND, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(567), 13, - sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12769] = 6, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(400), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12801] = 6, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(366), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12833] = 6, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(396), 7, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12865] = 2, - ACTIONS(571), 5, - anon_sym_LPAREN, sym_string, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(569), 13, + ACTIONS(487), 14, sym_identifier, - sym_float, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [12888] = 7, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(573), 1, - anon_sym_DASH_GT, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - ACTIONS(390), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12921] = 4, - ACTIONS(382), 1, - anon_sym_DASH, - ACTIONS(575), 1, - anon_sym_DASH_GT, - STATE(218), 1, - aux_sym_yield_repeat1, - ACTIONS(380), 15, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12948] = 3, - ACTIONS(423), 1, - anon_sym_DASH, - ACTIONS(578), 1, - anon_sym_where, - ACTIONS(421), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12973] = 3, - ACTIONS(406), 1, - anon_sym_DASH, - ACTIONS(580), 1, - anon_sym_where, - ACTIONS(404), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [12998] = 3, - ACTIONS(414), 1, - anon_sym_DASH, - STATE(218), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13023] = 2, - ACTIONS(584), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(582), 13, - sym_identifier, sym_float, - sym_integer, anon_sym_true, anon_sym_false, anon_sym_function, @@ -13012,3059 +9847,3318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_loop, + anon_sym_break, anon_sym_match, - [13045] = 2, - ACTIONS(392), 1, - anon_sym_DASH, - ACTIONS(390), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13067] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(594), 1, - anon_sym_RBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13107] = 2, - ACTIONS(500), 1, - anon_sym_DASH, - ACTIONS(498), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13129] = 2, - ACTIONS(504), 1, - anon_sym_DASH, - ACTIONS(502), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13151] = 2, - ACTIONS(439), 1, - anon_sym_DASH, - ACTIONS(437), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13173] = 2, - ACTIONS(526), 1, - anon_sym_DASH, - ACTIONS(524), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13195] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - ACTIONS(602), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13235] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - ACTIONS(604), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13275] = 2, - ACTIONS(530), 1, - anon_sym_DASH, - ACTIONS(528), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13297] = 2, - ACTIONS(508), 1, - anon_sym_DASH, - ACTIONS(506), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13319] = 2, - ACTIONS(482), 1, - anon_sym_DASH, - ACTIONS(480), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13341] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - ACTIONS(606), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, + [9275] = 11, + ACTIONS(226), 1, sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13381] = 11, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, + ACTIONS(230), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(232), 1, anon_sym_function, - ACTIONS(598), 1, + ACTIONS(234), 1, anon_sym_LBRACE, - ACTIONS(600), 1, + ACTIONS(236), 1, anon_sym_table, - ACTIONS(608), 1, - anon_sym_RBRACK, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13421] = 2, - ACTIONS(474), 1, - anon_sym_DASH, - ACTIONS(472), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13443] = 3, - ACTIONS(451), 1, - anon_sym_DASH, - ACTIONS(610), 1, - anon_sym_else, - ACTIONS(449), 15, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [13467] = 2, - ACTIONS(443), 1, - anon_sym_DASH, - ACTIONS(441), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13489] = 2, - ACTIONS(522), 1, - anon_sym_DASH, - ACTIONS(520), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13511] = 2, - ACTIONS(614), 4, - anon_sym_LPAREN, - sym_string, - anon_sym_LBRACK, - anon_sym_LBRACE, - ACTIONS(612), 13, + ACTIONS(437), 1, sym_identifier, - sym_float, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_function, - anon_sym_table, - anon_sym_select, - anon_sym_insert, - anon_sym_if, - anon_sym_while, - anon_sym_loop, - anon_sym_match, - [13533] = 2, - ACTIONS(470), 1, - anon_sym_DASH, - ACTIONS(468), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13555] = 2, - ACTIONS(478), 1, - anon_sym_DASH, - ACTIONS(476), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13577] = 11, - ACTIONS(619), 1, - sym_integer, - ACTIONS(625), 1, - anon_sym_LBRACK, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(630), 1, - anon_sym_function, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_table, - STATE(243), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(616), 2, - sym_float, - sym_string, - ACTIONS(622), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13617] = 2, - ACTIONS(518), 1, - anon_sym_DASH, - ACTIONS(516), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13639] = 2, - ACTIONS(486), 1, - anon_sym_DASH, - ACTIONS(484), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13661] = 2, - ACTIONS(431), 1, - anon_sym_DASH, - ACTIONS(429), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13683] = 2, - ACTIONS(435), 1, - anon_sym_DASH, - ACTIONS(433), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13705] = 2, - ACTIONS(512), 1, - anon_sym_DASH, - ACTIONS(510), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13727] = 2, - ACTIONS(494), 1, - anon_sym_DASH, - ACTIONS(492), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13749] = 2, - ACTIONS(462), 1, - anon_sym_DASH, - ACTIONS(460), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13771] = 5, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(639), 1, - anon_sym_EQ, - ACTIONS(358), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(641), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(356), 11, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [13799] = 2, - ACTIONS(466), 1, - anon_sym_DASH, - ACTIONS(464), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13821] = 4, - ACTIONS(414), 1, - anon_sym_DASH, - ACTIONS(563), 1, - anon_sym_DASH_GT, - STATE(218), 1, - aux_sym_yield_repeat1, - ACTIONS(412), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13847] = 2, - ACTIONS(490), 1, - anon_sym_DASH, - ACTIONS(488), 16, - anon_sym_DASH_GT, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_else, - anon_sym_EQ_GT, - [13869] = 5, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(396), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [13896] = 10, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - STATE(235), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [13933] = 5, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(366), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [13960] = 5, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(400), 4, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_then, - anon_sym_EQ_GT, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [13987] = 10, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - STATE(224), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14024] = 10, - ACTIONS(588), 1, - sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, STATE(229), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, - sym_float, - sym_string, - ACTIONS(590), 2, - anon_sym_true, - anon_sym_false, - STATE(299), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14061] = 10, - ACTIONS(588), 1, + sym_expression, + ACTIONS(224), 2, sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - STATE(234), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, sym_float, - sym_string, - ACTIONS(590), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14098] = 10, - ACTIONS(588), 1, + [9318] = 11, + ACTIONS(9), 1, + sym_string, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(15), 1, + anon_sym_function, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + anon_sym_table, + ACTIONS(400), 1, + sym_identifier, + STATE(90), 1, + sym_expression, + ACTIONS(7), 2, sym_integer, - ACTIONS(592), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_function, - ACTIONS(598), 1, - anon_sym_LBRACE, - ACTIONS(600), 1, - anon_sym_table, - STATE(230), 1, - aux_sym_list_repeat1, - STATE(290), 1, - sym_value, - ACTIONS(586), 2, sym_float, - sym_string, - ACTIONS(590), 2, + ACTIONS(11), 2, anon_sym_true, anon_sym_false, - STATE(299), 5, + STATE(92), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(102), 5, sym_boolean, sym_list, sym_function, sym_table, sym_map, - [14135] = 2, - ACTIONS(643), 1, - anon_sym_where, - ACTIONS(404), 14, - anon_sym_RPAREN, + [9361] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(228), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9404] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(222), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9447] = 11, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(509), 1, + sym_identifier, + STATE(60), 1, + sym_expression, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9490] = 11, + ACTIONS(198), 1, + sym_string, + ACTIONS(202), 1, + anon_sym_LBRACK, + ACTIONS(204), 1, + anon_sym_function, + ACTIONS(206), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_table, + ACTIONS(509), 1, + sym_identifier, + STATE(59), 1, + sym_expression, + ACTIONS(196), 2, + sym_integer, + sym_float, + ACTIONS(200), 2, + anon_sym_true, + anon_sym_false, + STATE(81), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(75), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9533] = 11, + ACTIONS(226), 1, + sym_string, + ACTIONS(230), 1, + anon_sym_LBRACK, + ACTIONS(232), 1, + anon_sym_function, + ACTIONS(234), 1, + anon_sym_LBRACE, + ACTIONS(236), 1, + anon_sym_table, + ACTIONS(437), 1, + sym_identifier, + STATE(188), 1, + sym_expression, + ACTIONS(224), 2, + sym_integer, + sym_float, + ACTIONS(228), 2, + anon_sym_true, + anon_sym_false, + STATE(201), 4, + sym_value, + sym_math, + sym_logic, + sym_function_call, + STATE(198), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [9576] = 5, + ACTIONS(511), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + anon_sym_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(186), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_else, + ACTIONS(184), 12, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_elseif, + [9606] = 9, + ACTIONS(172), 1, + anon_sym_else, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(517), 1, + anon_sym_DASH_GT, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + STATE(260), 1, + aux_sym_yield_repeat1, + ACTIONS(170), 2, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [9643] = 2, + ACTIONS(318), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(316), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9666] = 3, + ACTIONS(511), 1, + anon_sym_LBRACE, + ACTIONS(186), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(184), 15, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9691] = 2, + ACTIONS(302), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(300), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9714] = 2, + ACTIONS(310), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(308), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9737] = 2, + ACTIONS(326), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(324), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9760] = 2, + ACTIONS(296), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(294), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9783] = 2, + ACTIONS(314), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(312), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9806] = 2, + ACTIONS(519), 5, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(521), 13, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9829] = 2, + ACTIONS(334), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(332), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9852] = 2, + ACTIONS(306), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(304), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9875] = 2, + ACTIONS(330), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(328), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9898] = 2, + ACTIONS(338), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(336), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9921] = 2, + ACTIONS(186), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(184), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9944] = 2, + ACTIONS(523), 5, + ts_builtin_sym_end, + anon_sym_POUND, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(525), 13, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + anon_sym_select, + anon_sym_insert, + anon_sym_if, + anon_sym_while, + anon_sym_loop, + anon_sym_match, + [9967] = 2, + ACTIONS(322), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(320), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [9990] = 2, + ACTIONS(292), 2, + anon_sym_DASH, + anon_sym_else, + ACTIONS(290), 16, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_elseif, + anon_sym_EQ_GT, + [10013] = 11, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(535), 1, + anon_sym_RBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10053] = 11, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + ACTIONS(543), 1, + anon_sym_RBRACK, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10093] = 11, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + ACTIONS(545), 1, + anon_sym_RBRACK, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10133] = 7, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(264), 1, + anon_sym_else, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(262), 3, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10165] = 11, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + ACTIONS(547), 1, + anon_sym_RBRACK, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10205] = 11, + ACTIONS(549), 1, + sym_integer, + ACTIONS(558), 1, + anon_sym_LBRACK, + ACTIONS(561), 1, + anon_sym_RBRACK, + ACTIONS(563), 1, + anon_sym_function, + ACTIONS(566), 1, + anon_sym_LBRACE, + ACTIONS(569), 1, + anon_sym_table, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(552), 2, + sym_float, + sym_string, + ACTIONS(555), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10245] = 11, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + ACTIONS(572), 1, + anon_sym_RBRACK, + STATE(210), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10285] = 8, + ACTIONS(178), 1, + anon_sym_DASH, + ACTIONS(258), 1, + anon_sym_else, + ACTIONS(574), 1, + anon_sym_DASH_GT, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(256), 2, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(176), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10319] = 6, + ACTIONS(282), 1, + anon_sym_else, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(280), 2, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10348] = 10, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(205), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10385] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(580), 1, + anon_sym_RBRACE, + ACTIONS(582), 1, + anon_sym_table, + STATE(385), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10422] = 10, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(206), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10459] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(582), 1, + anon_sym_table, + ACTIONS(584), 1, + anon_sym_RBRACE, + STATE(366), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10496] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(582), 1, + anon_sym_table, + ACTIONS(586), 1, + anon_sym_RBRACE, + STATE(396), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10533] = 10, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(207), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10570] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(582), 1, + anon_sym_table, + ACTIONS(588), 1, + anon_sym_RBRACE, + STATE(383), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10607] = 10, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(209), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10644] = 6, + ACTIONS(278), 1, + anon_sym_else, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(276), 2, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10673] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(582), 1, + anon_sym_table, + ACTIONS(590), 1, + anon_sym_RBRACE, + STATE(349), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10710] = 10, + ACTIONS(527), 1, + sym_integer, + ACTIONS(533), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_function, + ACTIONS(539), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + anon_sym_table, + STATE(211), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_value, + ACTIONS(529), 2, + sym_float, + sym_string, + ACTIONS(531), 2, + anon_sym_true, + anon_sym_false, + STATE(255), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10747] = 10, + ACTIONS(7), 1, + sym_integer, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + anon_sym_function, + ACTIONS(582), 1, + anon_sym_table, + ACTIONS(592), 1, + anon_sym_RBRACE, + STATE(389), 1, + sym_value, + ACTIONS(9), 2, + sym_float, + sym_string, + ACTIONS(576), 2, + anon_sym_true, + anon_sym_false, + STATE(102), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10784] = 9, + ACTIONS(594), 1, + sym_integer, + ACTIONS(600), 1, + anon_sym_LBRACK, + ACTIONS(602), 1, + anon_sym_function, + ACTIONS(604), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + anon_sym_table, + STATE(340), 1, + sym_value, + ACTIONS(596), 2, + sym_float, + sym_string, + ACTIONS(598), 2, + anon_sym_true, + anon_sym_false, + STATE(337), 5, + sym_boolean, + sym_list, + sym_function, + sym_table, + sym_map, + [10818] = 5, + ACTIONS(608), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10843] = 5, + ACTIONS(610), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10868] = 5, + ACTIONS(612), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10893] = 5, + ACTIONS(614), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10918] = 5, + ACTIONS(616), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10943] = 5, + ACTIONS(618), 1, + anon_sym_EQ_GT, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10968] = 5, + ACTIONS(620), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [10993] = 5, + ACTIONS(622), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11018] = 5, + ACTIONS(624), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11043] = 5, + ACTIONS(626), 1, + anon_sym_then, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11068] = 5, + ACTIONS(628), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11093] = 5, + ACTIONS(630), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11118] = 3, + ACTIONS(342), 1, + anon_sym_else, + ACTIONS(340), 2, + anon_sym_RBRACE, + anon_sym_elseif, + ACTIONS(184), 11, 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_and, anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14155] = 9, - ACTIONS(647), 1, - sym_integer, - ACTIONS(651), 1, - anon_sym_LBRACK, - ACTIONS(653), 1, - anon_sym_function, - ACTIONS(655), 1, + [11139] = 5, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(657), 1, - anon_sym_table, - STATE(354), 1, - sym_value, - ACTIONS(645), 2, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11164] = 4, + STATE(153), 1, + sym_math_operator, + STATE(170), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11186] = 4, + STATE(153), 1, + sym_math_operator, + STATE(154), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11208] = 4, + STATE(153), 1, + sym_math_operator, + STATE(184), 1, + sym_logic_operator, + ACTIONS(176), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(180), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_and, + anon_sym_or, + [11230] = 3, + ACTIONS(634), 1, + sym_integer, + ACTIONS(638), 1, + anon_sym_COMMA, + ACTIONS(636), 9, sym_float, sym_string, - ACTIONS(649), 2, anon_sym_true, anon_sym_false, - STATE(366), 5, - sym_boolean, - sym_list, - sym_function, - sym_table, - sym_map, - [14189] = 8, - ACTIONS(352), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11248] = 2, + ACTIONS(302), 1, + sym_integer, + ACTIONS(300), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11264] = 2, + ACTIONS(310), 1, + sym_integer, + ACTIONS(308), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11280] = 2, + ACTIONS(330), 1, + sym_integer, + ACTIONS(328), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11296] = 2, + ACTIONS(334), 1, + sym_integer, + ACTIONS(332), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11312] = 2, + ACTIONS(318), 1, + sym_integer, + ACTIONS(316), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11328] = 2, + ACTIONS(642), 4, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(372), 1, - anon_sym_DASH, + ACTIONS(640), 7, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + [11344] = 2, + ACTIONS(314), 1, + sym_integer, + ACTIONS(312), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11360] = 2, + ACTIONS(296), 1, + sym_integer, + ACTIONS(294), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11376] = 2, + ACTIONS(326), 1, + sym_integer, + ACTIONS(324), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11392] = 2, + ACTIONS(338), 1, + sym_integer, + ACTIONS(336), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11408] = 2, + ACTIONS(306), 1, + sym_integer, + ACTIONS(304), 10, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11424] = 2, + ACTIONS(646), 3, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(644), 7, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + [11439] = 2, + ACTIONS(648), 1, + sym_integer, + ACTIONS(561), 9, + sym_float, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_function, + anon_sym_LBRACE, + anon_sym_table, + [11454] = 2, + ACTIONS(652), 3, + sym_string, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(650), 7, + sym_identifier, + sym_integer, + sym_float, + anon_sym_true, + anon_sym_false, + anon_sym_function, + anon_sym_table, + [11469] = 3, + ACTIONS(654), 1, + anon_sym_LBRACK, + ACTIONS(657), 2, + anon_sym_RBRACE, + anon_sym_into, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11481] = 4, + ACTIONS(346), 1, + anon_sym_else, + ACTIONS(517), 1, + anon_sym_DASH_GT, + STATE(261), 1, + aux_sym_yield_repeat1, + ACTIONS(344), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11495] = 4, + ACTIONS(264), 1, + anon_sym_else, ACTIONS(659), 1, anon_sym_DASH_GT, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - STATE(329), 1, + STATE(261), 1, aux_sym_yield_repeat1, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14221] = 2, - ACTIONS(661), 1, + ACTIONS(262), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11509] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_RBRACE, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11520] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + anon_sym_RBRACE, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11531] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(666), 1, + anon_sym_RBRACE, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11542] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, + ACTIONS(668), 1, + anon_sym_RBRACE, + STATE(263), 2, + sym_list, + aux_sym_table_repeat1, + [11553] = 4, + ACTIONS(385), 1, + anon_sym_RBRACE, + ACTIONS(387), 1, anon_sym_else, - ACTIONS(449), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14241] = 2, - ACTIONS(663), 1, - anon_sym_where, - ACTIONS(421), 14, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_then, - anon_sym_EQ_GT, - [14261] = 6, - ACTIONS(372), 1, - anon_sym_DASH, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(380), 2, - anon_sym_DASH_GT, + ACTIONS(670), 1, + anon_sym_elseif, + STATE(266), 1, + aux_sym_control_flow_repeat1, + [11566] = 4, + ACTIONS(363), 1, anon_sym_RBRACE, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14288] = 7, - ACTIONS(372), 1, - anon_sym_DASH, - ACTIONS(390), 1, - anon_sym_RBRACE, - ACTIONS(665), 1, - anon_sym_DASH_GT, - STATE(82), 1, - sym_math_operator, - STATE(83), 1, - sym_logic_operator, - ACTIONS(370), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14317] = 5, - ACTIONS(667), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14341] = 5, - ACTIONS(669), 1, - anon_sym_then, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14365] = 5, - ACTIONS(671), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14389] = 5, ACTIONS(673), 1, - anon_sym_then, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14413] = 5, + anon_sym_elseif, ACTIONS(675), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14437] = 5, + anon_sym_else, + STATE(279), 1, + aux_sym_control_flow_repeat1, + [11579] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14461] = 5, + anon_sym_into, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11590] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(679), 1, - anon_sym_then, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14485] = 5, + anon_sym_RBRACE, + STATE(264), 2, + sym_list, + aux_sym_table_repeat1, + [11601] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(681), 1, - anon_sym_then, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14509] = 5, + anon_sym_RBRACE, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11612] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(683), 1, - anon_sym_EQ_GT, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14533] = 5, + anon_sym_RBRACE, + STATE(262), 2, + sym_list, + aux_sym_table_repeat1, + [11623] = 3, + ACTIONS(377), 1, + anon_sym_else, ACTIONS(685), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14557] = 5, + anon_sym_where, + ACTIONS(375), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11634] = 3, + ACTIONS(371), 1, + anon_sym_else, ACTIONS(687), 1, - anon_sym_then, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14581] = 5, + anon_sym_where, + ACTIONS(369), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11645] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(689), 1, - anon_sym_LBRACE, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14605] = 4, - STATE(76), 1, - sym_logic_operator, - STATE(116), 1, - sym_math_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14626] = 4, - STATE(83), 1, - sym_logic_operator, - STATE(116), 1, - sym_math_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14647] = 4, - STATE(73), 1, - sym_logic_operator, - STATE(116), 1, - sym_math_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14668] = 4, - STATE(116), 1, - sym_math_operator, - STATE(117), 1, - sym_logic_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14689] = 4, - STATE(108), 1, - sym_logic_operator, - STATE(116), 1, - sym_math_operator, - ACTIONS(370), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(374), 5, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14710] = 2, - ACTIONS(486), 1, - sym_integer, - ACTIONS(484), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14726] = 2, - ACTIONS(494), 1, - sym_integer, - ACTIONS(492), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14742] = 2, + anon_sym_RBRACE, + STATE(277), 2, + sym_list, + aux_sym_table_repeat1, + [11656] = 4, + ACTIONS(363), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, + anon_sym_elseif, ACTIONS(691), 1, - anon_sym_RPAREN, - ACTIONS(498), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14758] = 3, + anon_sym_else, + STATE(276), 1, + aux_sym_control_flow_repeat1, + [11669] = 4, + ACTIONS(355), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, + anon_sym_elseif, + ACTIONS(693), 1, + anon_sym_else, + STATE(266), 1, + aux_sym_control_flow_repeat1, + [11682] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(695), 1, - sym_integer, + anon_sym_RBRACE, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11693] = 3, + ACTIONS(13), 1, + anon_sym_LBRACK, ACTIONS(697), 1, - anon_sym_COMMA, - ACTIONS(693), 9, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14776] = 2, + anon_sym_into, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11704] = 4, + ACTIONS(355), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, + anon_sym_elseif, ACTIONS(699), 1, - anon_sym_RPAREN, - ACTIONS(498), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14792] = 2, - ACTIONS(431), 1, - sym_integer, - ACTIONS(429), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, + anon_sym_else, + STATE(266), 1, + aux_sym_control_flow_repeat1, + [11717] = 3, + ACTIONS(13), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14808] = 2, - ACTIONS(439), 1, - sym_integer, - ACTIONS(437), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14824] = 2, - ACTIONS(443), 1, - sym_integer, - ACTIONS(441), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14840] = 2, - ACTIONS(470), 1, - sym_integer, - ACTIONS(468), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14856] = 2, ACTIONS(701), 1, - anon_sym_RPAREN, - ACTIONS(498), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_and, - anon_sym_or, - [14872] = 2, - ACTIONS(512), 1, - sym_integer, - ACTIONS(510), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, + anon_sym_into, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11728] = 3, + ACTIONS(13), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14888] = 2, - ACTIONS(474), 1, - sym_integer, - ACTIONS(472), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14904] = 2, - ACTIONS(522), 1, - sym_integer, - ACTIONS(520), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14920] = 2, - ACTIONS(490), 1, - sym_integer, - ACTIONS(488), 10, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14936] = 2, ACTIONS(703), 1, - sym_integer, - ACTIONS(628), 9, - sym_float, - sym_string, - anon_sym_true, - anon_sym_false, + anon_sym_into, + STATE(259), 2, + sym_list, + aux_sym_table_repeat1, + [11739] = 3, + ACTIONS(13), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_function, - anon_sym_LBRACE, - anon_sym_table, - [14951] = 3, ACTIONS(705), 1, - anon_sym_LBRACK, - ACTIONS(708), 2, anon_sym_RBRACE, - anon_sym_into, - STATE(302), 2, + STATE(270), 2, sym_list, aux_sym_table_repeat1, - [14963] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(710), 1, + [11750] = 2, + ACTIONS(398), 1, + anon_sym_else, + ACTIONS(396), 2, anon_sym_RBRACE, - STATE(308), 2, - sym_list, - aux_sym_table_repeat1, - [14974] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(712), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [14985] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(714), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [14996] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(716), 1, + anon_sym_elseif, + [11758] = 2, + ACTIONS(443), 1, + anon_sym_else, + ACTIONS(441), 2, anon_sym_RBRACE, - STATE(313), 2, - sym_list, - aux_sym_table_repeat1, - [15007] = 3, - ACTIONS(15), 1, + anon_sym_elseif, + [11766] = 2, + ACTIONS(13), 1, anon_sym_LBRACK, - ACTIONS(718), 1, - anon_sym_RBRACE, - STATE(315), 2, + STATE(278), 2, sym_list, aux_sym_table_repeat1, - [15018] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(720), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15029] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(722), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15040] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(724), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15051] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_RBRACE, - STATE(310), 2, - sym_list, - aux_sym_table_repeat1, - [15062] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(728), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15073] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15084] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(732), 1, - anon_sym_into, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15095] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15106] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, - anon_sym_RBRACE, - STATE(317), 2, - sym_list, - aux_sym_table_repeat1, - [15117] = 3, - ACTIONS(15), 1, - anon_sym_LBRACK, - ACTIONS(738), 1, - anon_sym_RBRACE, - STATE(302), 2, - sym_list, - aux_sym_table_repeat1, - [15128] = 3, - ACTIONS(380), 1, - anon_sym_RBRACE, - ACTIONS(740), 1, - anon_sym_DASH_GT, - STATE(318), 1, - aux_sym_yield_repeat1, - [15138] = 3, - ACTIONS(743), 1, + [11774] = 3, + ACTIONS(707), 1, sym_identifier, - ACTIONS(746), 1, + ACTIONS(709), 1, anon_sym_GT, - STATE(319), 1, + STATE(307), 1, aux_sym_function_repeat1, - [15148] = 2, - ACTIONS(750), 1, - anon_sym_COMMA, - ACTIONS(748), 2, + [11784] = 3, + ACTIONS(711), 1, sym_identifier, + ACTIONS(713), 1, + anon_sym_RBRACE, + STATE(289), 1, + aux_sym_map_repeat1, + [11794] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(715), 1, + anon_sym_RBRACE, + STATE(292), 1, + aux_sym_map_repeat1, + [11804] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(717), 1, + anon_sym_RBRACE, + STATE(314), 1, + aux_sym_map_repeat1, + [11814] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(719), 1, anon_sym_GT, - [15156] = 3, + STATE(286), 1, + aux_sym_function_repeat1, + [11824] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(721), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11834] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_RBRACE, + STATE(314), 1, + aux_sym_map_repeat1, + [11844] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_GT, + STATE(291), 1, + aux_sym_function_repeat1, + [11854] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(727), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11864] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(729), 1, + anon_sym_RBRACE, + STATE(297), 1, + aux_sym_map_repeat1, + [11874] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(731), 1, + anon_sym_GT, + STATE(294), 1, + aux_sym_function_repeat1, + [11884] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(733), 1, + anon_sym_RBRACE, + STATE(314), 1, + aux_sym_map_repeat1, + [11894] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11904] = 3, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(737), 1, + anon_sym_RBRACE, + STATE(314), 1, + aux_sym_map_repeat1, + [11914] = 2, + ACTIONS(483), 1, + anon_sym_else, + ACTIONS(481), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11922] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(739), 1, + anon_sym_GT, + STATE(298), 1, + aux_sym_function_repeat1, + [11932] = 2, + ACTIONS(258), 1, + anon_sym_else, + ACTIONS(256), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [11940] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11950] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(743), 1, + anon_sym_GT, + STATE(313), 1, + aux_sym_function_repeat1, + [11960] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(745), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11970] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(747), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11980] = 3, + ACTIONS(749), 1, + sym_identifier, ACTIONS(752), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [11990] = 3, + ACTIONS(711), 1, sym_identifier, ACTIONS(754), 1, anon_sym_RBRACE, - STATE(328), 1, + STATE(314), 1, aux_sym_map_repeat1, - [15166] = 2, - ACTIONS(15), 1, + [12000] = 2, + ACTIONS(13), 1, anon_sym_LBRACK, - STATE(314), 2, + STATE(280), 2, sym_list, aux_sym_table_repeat1, - [15174] = 3, - ACTIONS(752), 1, + [12008] = 3, + ACTIONS(711), 1, sym_identifier, ACTIONS(756), 1, anon_sym_RBRACE, - STATE(321), 1, + STATE(308), 1, aux_sym_map_repeat1, - [15184] = 3, - ACTIONS(752), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_RBRACE, - STATE(326), 1, - aux_sym_map_repeat1, - [15194] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(312), 2, - sym_list, - aux_sym_table_repeat1, - [15202] = 3, - ACTIONS(752), 1, - sym_identifier, + [12018] = 2, ACTIONS(760), 1, - anon_sym_RBRACE, - STATE(328), 1, - aux_sym_map_repeat1, - [15212] = 3, - ACTIONS(762), 1, + anon_sym_COMMA, + ACTIONS(758), 2, sym_identifier, - ACTIONS(764), 1, anon_sym_GT, - STATE(319), 1, + [12026] = 2, + ACTIONS(479), 1, + anon_sym_else, + ACTIONS(477), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [12034] = 3, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(762), 1, + anon_sym_GT, + STATE(307), 1, aux_sym_function_repeat1, - [15222] = 3, - ACTIONS(766), 1, + [12044] = 3, + ACTIONS(764), 1, + sym_identifier, + ACTIONS(767), 1, + anon_sym_RBRACE, + STATE(314), 1, + aux_sym_map_repeat1, + [12054] = 3, + ACTIONS(707), 1, sym_identifier, ACTIONS(769), 1, + anon_sym_GT, + STATE(307), 1, + aux_sym_function_repeat1, + [12064] = 2, + ACTIONS(491), 1, + anon_sym_else, + ACTIONS(489), 2, anon_sym_RBRACE, - STATE(328), 1, - aux_sym_map_repeat1, - [15232] = 3, - ACTIONS(412), 1, - anon_sym_RBRACE, - ACTIONS(659), 1, - anon_sym_DASH_GT, - STATE(318), 1, - aux_sym_yield_repeat1, - [15242] = 3, - ACTIONS(762), 1, + anon_sym_elseif, + [12072] = 3, + ACTIONS(707), 1, sym_identifier, ACTIONS(771), 1, anon_sym_GT, - STATE(319), 1, + STATE(307), 1, aux_sym_function_repeat1, - [15252] = 3, - ACTIONS(762), 1, + [12082] = 2, + ACTIONS(495), 1, + anon_sym_else, + ACTIONS(493), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [12090] = 2, + ACTIONS(394), 1, + anon_sym_else, + ACTIONS(392), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [12098] = 2, + ACTIONS(487), 1, + anon_sym_else, + ACTIONS(485), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [12106] = 2, + ACTIONS(13), 1, + anon_sym_LBRACK, + STATE(268), 2, + sym_list, + aux_sym_table_repeat1, + [12114] = 2, + ACTIONS(449), 1, + anon_sym_else, + ACTIONS(447), 2, + anon_sym_RBRACE, + anon_sym_elseif, + [12122] = 2, + ACTIONS(13), 1, + anon_sym_LBRACK, + STATE(281), 2, + sym_list, + aux_sym_table_repeat1, + [12130] = 3, + ACTIONS(711), 1, sym_identifier, ACTIONS(773), 1, - anon_sym_GT, - STATE(330), 1, - aux_sym_function_repeat1, - [15262] = 3, - ACTIONS(752), 1, - sym_identifier, + anon_sym_RBRACE, + STATE(299), 1, + aux_sym_map_repeat1, + [12140] = 2, ACTIONS(775), 1, - anon_sym_RBRACE, - STATE(328), 1, - aux_sym_map_repeat1, - [15272] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LT, ACTIONS(777), 1, - anon_sym_GT, - STATE(347), 1, - aux_sym_function_repeat1, - [15282] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LBRACE, + [12147] = 2, ACTIONS(779), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15292] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LT, ACTIONS(781), 1, - anon_sym_GT, - STATE(334), 1, + anon_sym_LBRACE, + [12154] = 2, + ACTIONS(707), 1, + sym_identifier, + STATE(303), 1, aux_sym_function_repeat1, - [15302] = 3, - ACTIONS(752), 1, + [12161] = 1, + ACTIONS(336), 2, sym_identifier, - ACTIONS(783), 1, anon_sym_RBRACE, - STATE(328), 1, - aux_sym_map_repeat1, - [15312] = 3, - ACTIONS(752), 1, + [12166] = 1, + ACTIONS(332), 2, sym_identifier, + anon_sym_RBRACE, + [12171] = 2, + ACTIONS(707), 1, + sym_identifier, + STATE(305), 1, + aux_sym_function_repeat1, + [12178] = 1, + ACTIONS(308), 2, + sym_identifier, + anon_sym_RBRACE, + [12183] = 2, + ACTIONS(707), 1, + sym_identifier, + STATE(306), 1, + aux_sym_function_repeat1, + [12190] = 1, + ACTIONS(300), 2, + sym_identifier, + anon_sym_RBRACE, + [12195] = 1, + ACTIONS(328), 2, + sym_identifier, + anon_sym_RBRACE, + [12200] = 2, + ACTIONS(707), 1, + sym_identifier, + STATE(317), 1, + aux_sym_function_repeat1, + [12207] = 1, + ACTIONS(294), 2, + sym_identifier, + anon_sym_RBRACE, + [12212] = 1, + ACTIONS(304), 2, + sym_identifier, + anon_sym_RBRACE, + [12217] = 2, + ACTIONS(707), 1, + sym_identifier, + STATE(315), 1, + aux_sym_function_repeat1, + [12224] = 2, + ACTIONS(375), 1, + anon_sym_RBRACE, + ACTIONS(685), 1, + anon_sym_where, + [12231] = 1, + ACTIONS(783), 2, + sym_identifier, + anon_sym_RBRACE, + [12236] = 2, ACTIONS(785), 1, - anon_sym_RBRACE, - STATE(336), 1, - aux_sym_map_repeat1, - [15322] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LT, ACTIONS(787), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15332] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(305), 2, - sym_list, - aux_sym_table_repeat1, - [15340] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(309), 2, - sym_list, - aux_sym_table_repeat1, - [15348] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LBRACE, + [12243] = 2, ACTIONS(789), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15358] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LT, ACTIONS(791), 1, - anon_sym_GT, - STATE(341), 1, - aux_sym_function_repeat1, - [15368] = 3, - ACTIONS(752), 1, + anon_sym_LBRACE, + [12250] = 1, + ACTIONS(324), 2, sym_identifier, + anon_sym_RBRACE, + [12255] = 2, ACTIONS(793), 1, - anon_sym_RBRACE, - STATE(328), 1, - aux_sym_map_repeat1, - [15378] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_LT, ACTIONS(795), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15388] = 3, - ACTIONS(762), 1, + anon_sym_LBRACE, + [12262] = 1, + ACTIONS(752), 2, sym_identifier, + anon_sym_GT, + [12267] = 1, + ACTIONS(312), 2, + sym_identifier, + anon_sym_RBRACE, + [12272] = 1, + ACTIONS(316), 2, + sym_identifier, + anon_sym_RBRACE, + [12277] = 2, + ACTIONS(369), 1, + anon_sym_RBRACE, + ACTIONS(687), 1, + anon_sym_where, + [12284] = 1, + ACTIONS(592), 1, + anon_sym_RBRACE, + [12288] = 1, ACTIONS(797), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15398] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_from, + [12292] = 1, ACTIONS(799), 1, - anon_sym_GT, - STATE(338), 1, - aux_sym_function_repeat1, - [15408] = 3, - ACTIONS(762), 1, - sym_identifier, + anon_sym_from, + [12296] = 1, ACTIONS(801), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15418] = 3, - ACTIONS(752), 1, - sym_identifier, + aux_sym_comment_token1, + [12300] = 1, ACTIONS(803), 1, - anon_sym_RBRACE, - STATE(343), 1, - aux_sym_map_repeat1, - [15428] = 3, - ACTIONS(762), 1, sym_identifier, + [12304] = 1, ACTIONS(805), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15438] = 3, - ACTIONS(762), 1, sym_identifier, + [12308] = 1, ACTIONS(807), 1, - anon_sym_GT, - STATE(319), 1, - aux_sym_function_repeat1, - [15448] = 3, - ACTIONS(752), 1, - sym_identifier, + anon_sym_LBRACE, + [12312] = 1, ACTIONS(809), 1, - anon_sym_RBRACE, - STATE(332), 1, - aux_sym_map_repeat1, - [15458] = 2, - ACTIONS(15), 1, - anon_sym_LBRACK, - STATE(304), 2, - sym_list, - aux_sym_table_repeat1, - [15466] = 1, - ACTIONS(468), 2, sym_identifier, - anon_sym_RBRACE, - [15471] = 1, - ACTIONS(811), 2, - sym_identifier, - anon_sym_RBRACE, - [15476] = 2, + [12316] = 1, + ACTIONS(811), 1, + anon_sym_LBRACE, + [12320] = 1, ACTIONS(813), 1, - anon_sym_LT, + anon_sym_LBRACE, + [12324] = 1, ACTIONS(815), 1, - anon_sym_LBRACE, - [15483] = 1, - ACTIONS(746), 2, sym_identifier, - anon_sym_GT, - [15488] = 2, - ACTIONS(762), 1, - sym_identifier, - STATE(349), 1, - aux_sym_function_repeat1, - [15495] = 2, - ACTIONS(762), 1, - sym_identifier, - STATE(350), 1, - aux_sym_function_repeat1, - [15502] = 2, - ACTIONS(762), 1, - sym_identifier, - STATE(327), 1, - aux_sym_function_repeat1, - [15509] = 2, + [12328] = 1, ACTIONS(817), 1, - anon_sym_LT, - ACTIONS(819), 1, anon_sym_LBRACE, - [15516] = 2, - ACTIONS(762), 1, - sym_identifier, - STATE(344), 1, - aux_sym_function_repeat1, - [15523] = 1, - ACTIONS(510), 2, - sym_identifier, - anon_sym_RBRACE, - [15528] = 2, + [12332] = 1, + ACTIONS(819), 1, + anon_sym_from, + [12336] = 1, ACTIONS(821), 1, - anon_sym_LT, + anon_sym_LBRACE, + [12340] = 1, ACTIONS(823), 1, anon_sym_LBRACE, - [15535] = 2, + [12344] = 1, ACTIONS(825), 1, - anon_sym_LT, + sym_identifier, + [12348] = 1, ACTIONS(827), 1, anon_sym_LBRACE, - [15542] = 2, + [12352] = 1, ACTIONS(829), 1, - anon_sym_LT, + anon_sym_RBRACE, + [12356] = 1, ACTIONS(831), 1, anon_sym_LBRACE, - [15549] = 1, - ACTIONS(520), 2, - sym_identifier, - anon_sym_RBRACE, - [15554] = 1, - ACTIONS(429), 2, - sym_identifier, - anon_sym_RBRACE, - [15559] = 1, - ACTIONS(492), 2, - sym_identifier, - anon_sym_RBRACE, - [15564] = 1, - ACTIONS(488), 2, - sym_identifier, - anon_sym_RBRACE, - [15569] = 1, - ACTIONS(484), 2, - sym_identifier, - anon_sym_RBRACE, - [15574] = 1, - ACTIONS(472), 2, - sym_identifier, - anon_sym_RBRACE, - [15579] = 1, - ACTIONS(441), 2, - sym_identifier, - anon_sym_RBRACE, - [15584] = 2, - ACTIONS(762), 1, - sym_identifier, - STATE(345), 1, - aux_sym_function_repeat1, - [15591] = 1, - ACTIONS(437), 2, - sym_identifier, - anon_sym_RBRACE, - [15596] = 1, + [12360] = 1, ACTIONS(833), 1, - anon_sym_LT, - [15600] = 1, + sym_identifier, + [12364] = 1, ACTIONS(835), 1, anon_sym_LBRACE, - [15604] = 1, + [12368] = 1, ACTIONS(837), 1, - anon_sym_LBRACE, - [15608] = 1, + sym_identifier, + [12372] = 1, ACTIONS(839), 1, - ts_builtin_sym_end, - [15612] = 1, + anon_sym_LBRACE, + [12376] = 1, ACTIONS(841), 1, - anon_sym_EQ, - [15616] = 1, + anon_sym_LBRACE, + [12380] = 1, ACTIONS(843), 1, anon_sym_LBRACE, - [15620] = 1, + [12384] = 1, ACTIONS(845), 1, anon_sym_LBRACE, - [15624] = 1, + [12388] = 1, ACTIONS(847), 1, anon_sym_LBRACE, - [15628] = 1, + [12392] = 1, ACTIONS(849), 1, - aux_sym_comment_token1, - [15632] = 1, + sym_identifier, + [12396] = 1, ACTIONS(851), 1, - anon_sym_LBRACE, - [15636] = 1, - ACTIONS(853), 1, - sym_identifier, - [15640] = 1, - ACTIONS(855), 1, - sym_identifier, - [15644] = 1, - ACTIONS(857), 1, - anon_sym_from, - [15648] = 1, - ACTIONS(859), 1, anon_sym_RBRACE, - [15652] = 1, + [12400] = 1, + ACTIONS(853), 1, + anon_sym_LBRACE, + [12404] = 1, + ACTIONS(855), 1, + anon_sym_LT, + [12408] = 1, + ACTIONS(857), 1, + anon_sym_RBRACE, + [12412] = 1, + ACTIONS(859), 1, + anon_sym_LBRACE, + [12416] = 1, ACTIONS(861), 1, - sym_identifier, - [15656] = 1, + anon_sym_EQ, + [12420] = 1, + ACTIONS(586), 1, + anon_sym_RBRACE, + [12424] = 1, ACTIONS(863), 1, anon_sym_RBRACE, - [15660] = 1, + [12428] = 1, + ACTIONS(584), 1, + anon_sym_RBRACE, + [12432] = 1, ACTIONS(865), 1, - anon_sym_LBRACE, - [15664] = 1, + sym_identifier, + [12436] = 1, ACTIONS(867), 1, anon_sym_LBRACE, - [15668] = 1, + [12440] = 1, ACTIONS(869), 1, - anon_sym_LBRACE, - [15672] = 1, + sym_identifier, + [12444] = 1, ACTIONS(871), 1, - anon_sym_LBRACE, - [15676] = 1, + anon_sym_RBRACE, + [12448] = 1, ACTIONS(873), 1, anon_sym_LBRACE, - [15680] = 1, + [12452] = 1, ACTIONS(875), 1, - anon_sym_LBRACE, - [15684] = 1, - ACTIONS(877), 1, anon_sym_from, - [15688] = 1, - ACTIONS(879), 1, - anon_sym_LBRACE, - [15692] = 1, - ACTIONS(881), 1, - anon_sym_LBRACE, - [15696] = 1, - ACTIONS(883), 1, - anon_sym_RBRACE, - [15700] = 1, - ACTIONS(885), 1, - anon_sym_LBRACE, - [15704] = 1, - ACTIONS(887), 1, + [12456] = 1, + ACTIONS(877), 1, sym_identifier, - [15708] = 1, + [12460] = 1, + ACTIONS(879), 1, + ts_builtin_sym_end, + [12464] = 1, + ACTIONS(881), 1, + sym_identifier, + [12468] = 1, + ACTIONS(883), 1, + anon_sym_LT, + [12472] = 1, + ACTIONS(885), 1, + anon_sym_RBRACE, + [12476] = 1, + ACTIONS(887), 1, + anon_sym_LT, + [12480] = 1, ACTIONS(889), 1, anon_sym_LT, - [15712] = 1, + [12484] = 1, ACTIONS(891), 1, - anon_sym_LBRACE, - [15716] = 1, - ACTIONS(893), 1, - anon_sym_LBRACE, - [15720] = 1, - ACTIONS(895), 1, - sym_identifier, - [15724] = 1, - ACTIONS(897), 1, - sym_identifier, - [15728] = 1, - ACTIONS(899), 1, - anon_sym_RBRACE, - [15732] = 1, - ACTIONS(901), 1, - sym_identifier, - [15736] = 1, - ACTIONS(903), 1, - sym_identifier, - [15740] = 1, - ACTIONS(905), 1, - anon_sym_from, - [15744] = 1, - ACTIONS(907), 1, - sym_identifier, - [15748] = 1, - ACTIONS(909), 1, anon_sym_LT, - [15752] = 1, - ACTIONS(911), 1, - anon_sym_LT, - [15756] = 1, - ACTIONS(913), 1, - anon_sym_LT, - [15760] = 1, - ACTIONS(915), 1, - sym_identifier, - [15764] = 1, - ACTIONS(917), 1, - sym_identifier, - [15768] = 1, - ACTIONS(919), 1, - anon_sym_RBRACE, - [15772] = 1, - ACTIONS(921), 1, - sym_identifier, - [15776] = 1, - ACTIONS(923), 1, - sym_identifier, - [15780] = 1, - ACTIONS(925), 1, - anon_sym_from, - [15784] = 1, - ACTIONS(927), 1, - anon_sym_from, - [15788] = 1, - ACTIONS(929), 1, - sym_identifier, - [15792] = 1, - ACTIONS(931), 1, - sym_identifier, - [15796] = 1, - ACTIONS(933), 1, - anon_sym_RBRACE, - [15800] = 1, - ACTIONS(935), 1, - anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(4)] = 0, - [SMALL_STATE(5)] = 85, - [SMALL_STATE(6)] = 170, - [SMALL_STATE(7)] = 255, - [SMALL_STATE(8)] = 340, - [SMALL_STATE(9)] = 425, - [SMALL_STATE(10)] = 510, - [SMALL_STATE(11)] = 595, - [SMALL_STATE(12)] = 680, - [SMALL_STATE(13)] = 765, - [SMALL_STATE(14)] = 850, - [SMALL_STATE(15)] = 935, - [SMALL_STATE(16)] = 1020, - [SMALL_STATE(17)] = 1105, - [SMALL_STATE(18)] = 1190, - [SMALL_STATE(19)] = 1275, - [SMALL_STATE(20)] = 1360, - [SMALL_STATE(21)] = 1442, - [SMALL_STATE(22)] = 1524, - [SMALL_STATE(23)] = 1606, - [SMALL_STATE(24)] = 1688, - [SMALL_STATE(25)] = 1770, - [SMALL_STATE(26)] = 1852, - [SMALL_STATE(27)] = 1934, - [SMALL_STATE(28)] = 2016, - [SMALL_STATE(29)] = 2098, - [SMALL_STATE(30)] = 2180, - [SMALL_STATE(31)] = 2262, - [SMALL_STATE(32)] = 2344, - [SMALL_STATE(33)] = 2426, - [SMALL_STATE(34)] = 2508, - [SMALL_STATE(35)] = 2590, - [SMALL_STATE(36)] = 2671, - [SMALL_STATE(37)] = 2752, - [SMALL_STATE(38)] = 2833, - [SMALL_STATE(39)] = 2914, - [SMALL_STATE(40)] = 2995, - [SMALL_STATE(41)] = 3076, - [SMALL_STATE(42)] = 3157, - [SMALL_STATE(43)] = 3238, - [SMALL_STATE(44)] = 3319, - [SMALL_STATE(45)] = 3400, - [SMALL_STATE(46)] = 3481, - [SMALL_STATE(47)] = 3562, - [SMALL_STATE(48)] = 3643, - [SMALL_STATE(49)] = 3724, - [SMALL_STATE(50)] = 3805, - [SMALL_STATE(51)] = 3886, - [SMALL_STATE(52)] = 3967, - [SMALL_STATE(53)] = 4048, - [SMALL_STATE(54)] = 4129, - [SMALL_STATE(55)] = 4210, - [SMALL_STATE(56)] = 4291, - [SMALL_STATE(57)] = 4372, - [SMALL_STATE(58)] = 4453, - [SMALL_STATE(59)] = 4534, - [SMALL_STATE(60)] = 4615, - [SMALL_STATE(61)] = 4696, - [SMALL_STATE(62)] = 4777, - [SMALL_STATE(63)] = 4858, - [SMALL_STATE(64)] = 4939, - [SMALL_STATE(65)] = 5020, - [SMALL_STATE(66)] = 5101, - [SMALL_STATE(67)] = 5182, - [SMALL_STATE(68)] = 5263, - [SMALL_STATE(69)] = 5341, - [SMALL_STATE(70)] = 5419, - [SMALL_STATE(71)] = 5497, - [SMALL_STATE(72)] = 5572, - [SMALL_STATE(73)] = 5647, - [SMALL_STATE(74)] = 5722, - [SMALL_STATE(75)] = 5797, - [SMALL_STATE(76)] = 5872, - [SMALL_STATE(77)] = 5947, - [SMALL_STATE(78)] = 6022, - [SMALL_STATE(79)] = 6097, - [SMALL_STATE(80)] = 6174, - [SMALL_STATE(81)] = 6249, - [SMALL_STATE(82)] = 6324, - [SMALL_STATE(83)] = 6399, - [SMALL_STATE(84)] = 6474, - [SMALL_STATE(85)] = 6549, - [SMALL_STATE(86)] = 6624, - [SMALL_STATE(87)] = 6699, - [SMALL_STATE(88)] = 6774, - [SMALL_STATE(89)] = 6849, - [SMALL_STATE(90)] = 6924, - [SMALL_STATE(91)] = 6999, - [SMALL_STATE(92)] = 7074, - [SMALL_STATE(93)] = 7149, - [SMALL_STATE(94)] = 7226, - [SMALL_STATE(95)] = 7301, - [SMALL_STATE(96)] = 7376, - [SMALL_STATE(97)] = 7451, - [SMALL_STATE(98)] = 7526, - [SMALL_STATE(99)] = 7603, - [SMALL_STATE(100)] = 7678, - [SMALL_STATE(101)] = 7753, - [SMALL_STATE(102)] = 7828, - [SMALL_STATE(103)] = 7903, - [SMALL_STATE(104)] = 7978, - [SMALL_STATE(105)] = 8055, - [SMALL_STATE(106)] = 8132, - [SMALL_STATE(107)] = 8207, - [SMALL_STATE(108)] = 8282, - [SMALL_STATE(109)] = 8357, - [SMALL_STATE(110)] = 8432, - [SMALL_STATE(111)] = 8507, - [SMALL_STATE(112)] = 8582, - [SMALL_STATE(113)] = 8657, - [SMALL_STATE(114)] = 8732, - [SMALL_STATE(115)] = 8807, - [SMALL_STATE(116)] = 8882, - [SMALL_STATE(117)] = 8957, - [SMALL_STATE(118)] = 9032, - [SMALL_STATE(119)] = 9078, - [SMALL_STATE(120)] = 9124, - [SMALL_STATE(121)] = 9175, - [SMALL_STATE(122)] = 9230, - [SMALL_STATE(123)] = 9273, - [SMALL_STATE(124)] = 9318, - [SMALL_STATE(125)] = 9371, - [SMALL_STATE(126)] = 9416, - [SMALL_STATE(127)] = 9467, - [SMALL_STATE(128)] = 9518, - [SMALL_STATE(129)] = 9558, - [SMALL_STATE(130)] = 9604, - [SMALL_STATE(131)] = 9644, - [SMALL_STATE(132)] = 9696, - [SMALL_STATE(133)] = 9746, - [SMALL_STATE(134)] = 9788, - [SMALL_STATE(135)] = 9838, - [SMALL_STATE(136)] = 9888, - [SMALL_STATE(137)] = 9938, - [SMALL_STATE(138)] = 9978, - [SMALL_STATE(139)] = 10030, - [SMALL_STATE(140)] = 10072, - [SMALL_STATE(141)] = 10109, - [SMALL_STATE(142)] = 10146, - [SMALL_STATE(143)] = 10183, - [SMALL_STATE(144)] = 10220, - [SMALL_STATE(145)] = 10259, - [SMALL_STATE(146)] = 10298, - [SMALL_STATE(147)] = 10337, - [SMALL_STATE(148)] = 10376, - [SMALL_STATE(149)] = 10413, - [SMALL_STATE(150)] = 10454, - [SMALL_STATE(151)] = 10505, - [SMALL_STATE(152)] = 10542, - [SMALL_STATE(153)] = 10579, - [SMALL_STATE(154)] = 10616, - [SMALL_STATE(155)] = 10653, - [SMALL_STATE(156)] = 10690, - [SMALL_STATE(157)] = 10727, - [SMALL_STATE(158)] = 10764, - [SMALL_STATE(159)] = 10801, - [SMALL_STATE(160)] = 10838, - [SMALL_STATE(161)] = 10875, - [SMALL_STATE(162)] = 10914, - [SMALL_STATE(163)] = 10951, - [SMALL_STATE(164)] = 10988, - [SMALL_STATE(165)] = 11025, - [SMALL_STATE(166)] = 11062, - [SMALL_STATE(167)] = 11107, - [SMALL_STATE(168)] = 11144, - [SMALL_STATE(169)] = 11181, - [SMALL_STATE(170)] = 11218, - [SMALL_STATE(171)] = 11255, - [SMALL_STATE(172)] = 11291, - [SMALL_STATE(173)] = 11327, - [SMALL_STATE(174)] = 11363, - [SMALL_STATE(175)] = 11399, - [SMALL_STATE(176)] = 11441, - [SMALL_STATE(177)] = 11481, - [SMALL_STATE(178)] = 11517, - [SMALL_STATE(179)] = 11553, - [SMALL_STATE(180)] = 11589, - [SMALL_STATE(181)] = 11625, - [SMALL_STATE(182)] = 11661, - [SMALL_STATE(183)] = 11697, - [SMALL_STATE(184)] = 11733, - [SMALL_STATE(185)] = 11769, - [SMALL_STATE(186)] = 11805, - [SMALL_STATE(187)] = 11841, - [SMALL_STATE(188)] = 11877, - [SMALL_STATE(189)] = 11913, - [SMALL_STATE(190)] = 11949, - [SMALL_STATE(191)] = 11985, - [SMALL_STATE(192)] = 12021, - [SMALL_STATE(193)] = 12057, - [SMALL_STATE(194)] = 12107, - [SMALL_STATE(195)] = 12143, - [SMALL_STATE(196)] = 12190, - [SMALL_STATE(197)] = 12237, - [SMALL_STATE(198)] = 12284, - [SMALL_STATE(199)] = 12331, - [SMALL_STATE(200)] = 12370, - [SMALL_STATE(201)] = 12406, - [SMALL_STATE(202)] = 12442, - [SMALL_STATE(203)] = 12478, - [SMALL_STATE(204)] = 12509, - [SMALL_STATE(205)] = 12540, - [SMALL_STATE(206)] = 12571, - [SMALL_STATE(207)] = 12596, - [SMALL_STATE(208)] = 12627, - [SMALL_STATE(209)] = 12655, - [SMALL_STATE(210)] = 12679, - [SMALL_STATE(211)] = 12713, - [SMALL_STATE(212)] = 12745, - [SMALL_STATE(213)] = 12769, - [SMALL_STATE(214)] = 12801, - [SMALL_STATE(215)] = 12833, - [SMALL_STATE(216)] = 12865, - [SMALL_STATE(217)] = 12888, - [SMALL_STATE(218)] = 12921, - [SMALL_STATE(219)] = 12948, - [SMALL_STATE(220)] = 12973, - [SMALL_STATE(221)] = 12998, - [SMALL_STATE(222)] = 13023, - [SMALL_STATE(223)] = 13045, - [SMALL_STATE(224)] = 13067, - [SMALL_STATE(225)] = 13107, - [SMALL_STATE(226)] = 13129, - [SMALL_STATE(227)] = 13151, - [SMALL_STATE(228)] = 13173, - [SMALL_STATE(229)] = 13195, - [SMALL_STATE(230)] = 13235, - [SMALL_STATE(231)] = 13275, - [SMALL_STATE(232)] = 13297, - [SMALL_STATE(233)] = 13319, - [SMALL_STATE(234)] = 13341, - [SMALL_STATE(235)] = 13381, - [SMALL_STATE(236)] = 13421, - [SMALL_STATE(237)] = 13443, - [SMALL_STATE(238)] = 13467, - [SMALL_STATE(239)] = 13489, - [SMALL_STATE(240)] = 13511, - [SMALL_STATE(241)] = 13533, - [SMALL_STATE(242)] = 13555, - [SMALL_STATE(243)] = 13577, - [SMALL_STATE(244)] = 13617, - [SMALL_STATE(245)] = 13639, - [SMALL_STATE(246)] = 13661, - [SMALL_STATE(247)] = 13683, - [SMALL_STATE(248)] = 13705, - [SMALL_STATE(249)] = 13727, - [SMALL_STATE(250)] = 13749, - [SMALL_STATE(251)] = 13771, - [SMALL_STATE(252)] = 13799, - [SMALL_STATE(253)] = 13821, - [SMALL_STATE(254)] = 13847, - [SMALL_STATE(255)] = 13869, - [SMALL_STATE(256)] = 13896, - [SMALL_STATE(257)] = 13933, - [SMALL_STATE(258)] = 13960, - [SMALL_STATE(259)] = 13987, - [SMALL_STATE(260)] = 14024, - [SMALL_STATE(261)] = 14061, - [SMALL_STATE(262)] = 14098, - [SMALL_STATE(263)] = 14135, - [SMALL_STATE(264)] = 14155, - [SMALL_STATE(265)] = 14189, - [SMALL_STATE(266)] = 14221, - [SMALL_STATE(267)] = 14241, - [SMALL_STATE(268)] = 14261, - [SMALL_STATE(269)] = 14288, - [SMALL_STATE(270)] = 14317, - [SMALL_STATE(271)] = 14341, - [SMALL_STATE(272)] = 14365, - [SMALL_STATE(273)] = 14389, - [SMALL_STATE(274)] = 14413, - [SMALL_STATE(275)] = 14437, - [SMALL_STATE(276)] = 14461, - [SMALL_STATE(277)] = 14485, - [SMALL_STATE(278)] = 14509, - [SMALL_STATE(279)] = 14533, - [SMALL_STATE(280)] = 14557, - [SMALL_STATE(281)] = 14581, - [SMALL_STATE(282)] = 14605, - [SMALL_STATE(283)] = 14626, - [SMALL_STATE(284)] = 14647, - [SMALL_STATE(285)] = 14668, - [SMALL_STATE(286)] = 14689, - [SMALL_STATE(287)] = 14710, - [SMALL_STATE(288)] = 14726, - [SMALL_STATE(289)] = 14742, - [SMALL_STATE(290)] = 14758, - [SMALL_STATE(291)] = 14776, - [SMALL_STATE(292)] = 14792, - [SMALL_STATE(293)] = 14808, - [SMALL_STATE(294)] = 14824, - [SMALL_STATE(295)] = 14840, - [SMALL_STATE(296)] = 14856, - [SMALL_STATE(297)] = 14872, - [SMALL_STATE(298)] = 14888, - [SMALL_STATE(299)] = 14904, - [SMALL_STATE(300)] = 14920, - [SMALL_STATE(301)] = 14936, - [SMALL_STATE(302)] = 14951, - [SMALL_STATE(303)] = 14963, - [SMALL_STATE(304)] = 14974, - [SMALL_STATE(305)] = 14985, - [SMALL_STATE(306)] = 14996, - [SMALL_STATE(307)] = 15007, - [SMALL_STATE(308)] = 15018, - [SMALL_STATE(309)] = 15029, - [SMALL_STATE(310)] = 15040, - [SMALL_STATE(311)] = 15051, - [SMALL_STATE(312)] = 15062, - [SMALL_STATE(313)] = 15073, - [SMALL_STATE(314)] = 15084, - [SMALL_STATE(315)] = 15095, - [SMALL_STATE(316)] = 15106, - [SMALL_STATE(317)] = 15117, - [SMALL_STATE(318)] = 15128, - [SMALL_STATE(319)] = 15138, - [SMALL_STATE(320)] = 15148, - [SMALL_STATE(321)] = 15156, - [SMALL_STATE(322)] = 15166, - [SMALL_STATE(323)] = 15174, - [SMALL_STATE(324)] = 15184, - [SMALL_STATE(325)] = 15194, - [SMALL_STATE(326)] = 15202, - [SMALL_STATE(327)] = 15212, - [SMALL_STATE(328)] = 15222, - [SMALL_STATE(329)] = 15232, - [SMALL_STATE(330)] = 15242, - [SMALL_STATE(331)] = 15252, - [SMALL_STATE(332)] = 15262, - [SMALL_STATE(333)] = 15272, - [SMALL_STATE(334)] = 15282, - [SMALL_STATE(335)] = 15292, - [SMALL_STATE(336)] = 15302, - [SMALL_STATE(337)] = 15312, - [SMALL_STATE(338)] = 15322, - [SMALL_STATE(339)] = 15332, - [SMALL_STATE(340)] = 15340, - [SMALL_STATE(341)] = 15348, - [SMALL_STATE(342)] = 15358, - [SMALL_STATE(343)] = 15368, - [SMALL_STATE(344)] = 15378, - [SMALL_STATE(345)] = 15388, - [SMALL_STATE(346)] = 15398, - [SMALL_STATE(347)] = 15408, - [SMALL_STATE(348)] = 15418, - [SMALL_STATE(349)] = 15428, - [SMALL_STATE(350)] = 15438, - [SMALL_STATE(351)] = 15448, - [SMALL_STATE(352)] = 15458, - [SMALL_STATE(353)] = 15466, - [SMALL_STATE(354)] = 15471, - [SMALL_STATE(355)] = 15476, - [SMALL_STATE(356)] = 15483, - [SMALL_STATE(357)] = 15488, - [SMALL_STATE(358)] = 15495, - [SMALL_STATE(359)] = 15502, - [SMALL_STATE(360)] = 15509, - [SMALL_STATE(361)] = 15516, - [SMALL_STATE(362)] = 15523, - [SMALL_STATE(363)] = 15528, - [SMALL_STATE(364)] = 15535, - [SMALL_STATE(365)] = 15542, - [SMALL_STATE(366)] = 15549, - [SMALL_STATE(367)] = 15554, - [SMALL_STATE(368)] = 15559, - [SMALL_STATE(369)] = 15564, - [SMALL_STATE(370)] = 15569, - [SMALL_STATE(371)] = 15574, - [SMALL_STATE(372)] = 15579, - [SMALL_STATE(373)] = 15584, - [SMALL_STATE(374)] = 15591, - [SMALL_STATE(375)] = 15596, - [SMALL_STATE(376)] = 15600, - [SMALL_STATE(377)] = 15604, - [SMALL_STATE(378)] = 15608, - [SMALL_STATE(379)] = 15612, - [SMALL_STATE(380)] = 15616, - [SMALL_STATE(381)] = 15620, - [SMALL_STATE(382)] = 15624, - [SMALL_STATE(383)] = 15628, - [SMALL_STATE(384)] = 15632, - [SMALL_STATE(385)] = 15636, - [SMALL_STATE(386)] = 15640, - [SMALL_STATE(387)] = 15644, - [SMALL_STATE(388)] = 15648, - [SMALL_STATE(389)] = 15652, - [SMALL_STATE(390)] = 15656, - [SMALL_STATE(391)] = 15660, - [SMALL_STATE(392)] = 15664, - [SMALL_STATE(393)] = 15668, - [SMALL_STATE(394)] = 15672, - [SMALL_STATE(395)] = 15676, - [SMALL_STATE(396)] = 15680, - [SMALL_STATE(397)] = 15684, - [SMALL_STATE(398)] = 15688, - [SMALL_STATE(399)] = 15692, - [SMALL_STATE(400)] = 15696, - [SMALL_STATE(401)] = 15700, - [SMALL_STATE(402)] = 15704, - [SMALL_STATE(403)] = 15708, - [SMALL_STATE(404)] = 15712, - [SMALL_STATE(405)] = 15716, - [SMALL_STATE(406)] = 15720, - [SMALL_STATE(407)] = 15724, - [SMALL_STATE(408)] = 15728, - [SMALL_STATE(409)] = 15732, - [SMALL_STATE(410)] = 15736, - [SMALL_STATE(411)] = 15740, - [SMALL_STATE(412)] = 15744, - [SMALL_STATE(413)] = 15748, - [SMALL_STATE(414)] = 15752, - [SMALL_STATE(415)] = 15756, - [SMALL_STATE(416)] = 15760, - [SMALL_STATE(417)] = 15764, - [SMALL_STATE(418)] = 15768, - [SMALL_STATE(419)] = 15772, - [SMALL_STATE(420)] = 15776, - [SMALL_STATE(421)] = 15780, - [SMALL_STATE(422)] = 15784, - [SMALL_STATE(423)] = 15788, - [SMALL_STATE(424)] = 15792, - [SMALL_STATE(425)] = 15796, - [SMALL_STATE(426)] = 15800, + [SMALL_STATE(2)] = 0, + [SMALL_STATE(3)] = 88, + [SMALL_STATE(4)] = 176, + [SMALL_STATE(5)] = 260, + [SMALL_STATE(6)] = 341, + [SMALL_STATE(7)] = 422, + [SMALL_STATE(8)] = 503, + [SMALL_STATE(9)] = 584, + [SMALL_STATE(10)] = 665, + [SMALL_STATE(11)] = 746, + [SMALL_STATE(12)] = 827, + [SMALL_STATE(13)] = 908, + [SMALL_STATE(14)] = 989, + [SMALL_STATE(15)] = 1070, + [SMALL_STATE(16)] = 1151, + [SMALL_STATE(17)] = 1232, + [SMALL_STATE(18)] = 1313, + [SMALL_STATE(19)] = 1394, + [SMALL_STATE(20)] = 1475, + [SMALL_STATE(21)] = 1556, + [SMALL_STATE(22)] = 1637, + [SMALL_STATE(23)] = 1718, + [SMALL_STATE(24)] = 1799, + [SMALL_STATE(25)] = 1880, + [SMALL_STATE(26)] = 1961, + [SMALL_STATE(27)] = 2039, + [SMALL_STATE(28)] = 2117, + [SMALL_STATE(29)] = 2195, + [SMALL_STATE(30)] = 2273, + [SMALL_STATE(31)] = 2351, + [SMALL_STATE(32)] = 2429, + [SMALL_STATE(33)] = 2507, + [SMALL_STATE(34)] = 2565, + [SMALL_STATE(35)] = 2643, + [SMALL_STATE(36)] = 2721, + [SMALL_STATE(37)] = 2799, + [SMALL_STATE(38)] = 2877, + [SMALL_STATE(39)] = 2955, + [SMALL_STATE(40)] = 3033, + [SMALL_STATE(41)] = 3111, + [SMALL_STATE(42)] = 3189, + [SMALL_STATE(43)] = 3237, + [SMALL_STATE(44)] = 3314, + [SMALL_STATE(45)] = 3391, + [SMALL_STATE(46)] = 3468, + [SMALL_STATE(47)] = 3545, + [SMALL_STATE(48)] = 3622, + [SMALL_STATE(49)] = 3699, + [SMALL_STATE(50)] = 3776, + [SMALL_STATE(51)] = 3853, + [SMALL_STATE(52)] = 3930, + [SMALL_STATE(53)] = 4007, + [SMALL_STATE(54)] = 4084, + [SMALL_STATE(55)] = 4139, + [SMALL_STATE(56)] = 4216, + [SMALL_STATE(57)] = 4269, + [SMALL_STATE(58)] = 4346, + [SMALL_STATE(59)] = 4423, + [SMALL_STATE(60)] = 4468, + [SMALL_STATE(61)] = 4513, + [SMALL_STATE(62)] = 4590, + [SMALL_STATE(63)] = 4667, + [SMALL_STATE(64)] = 4744, + [SMALL_STATE(65)] = 4821, + [SMALL_STATE(66)] = 4877, + [SMALL_STATE(67)] = 4929, + [SMALL_STATE(68)] = 4981, + [SMALL_STATE(69)] = 5027, + [SMALL_STATE(70)] = 5066, + [SMALL_STATE(71)] = 5105, + [SMALL_STATE(72)] = 5148, + [SMALL_STATE(73)] = 5191, + [SMALL_STATE(74)] = 5244, + [SMALL_STATE(75)] = 5283, + [SMALL_STATE(76)] = 5322, + [SMALL_STATE(77)] = 5361, + [SMALL_STATE(78)] = 5400, + [SMALL_STATE(79)] = 5441, + [SMALL_STATE(80)] = 5480, + [SMALL_STATE(81)] = 5519, + [SMALL_STATE(82)] = 5558, + [SMALL_STATE(83)] = 5609, + [SMALL_STATE(84)] = 5648, + [SMALL_STATE(85)] = 5687, + [SMALL_STATE(86)] = 5726, + [SMALL_STATE(87)] = 5765, + [SMALL_STATE(88)] = 5815, + [SMALL_STATE(89)] = 5857, + [SMALL_STATE(90)] = 5895, + [SMALL_STATE(91)] = 5945, + [SMALL_STATE(92)] = 5982, + [SMALL_STATE(93)] = 6019, + [SMALL_STATE(94)] = 6058, + [SMALL_STATE(95)] = 6095, + [SMALL_STATE(96)] = 6132, + [SMALL_STATE(97)] = 6169, + [SMALL_STATE(98)] = 6206, + [SMALL_STATE(99)] = 6243, + [SMALL_STATE(100)] = 6280, + [SMALL_STATE(101)] = 6317, + [SMALL_STATE(102)] = 6354, + [SMALL_STATE(103)] = 6391, + [SMALL_STATE(104)] = 6428, + [SMALL_STATE(105)] = 6468, + [SMALL_STATE(106)] = 6501, + [SMALL_STATE(107)] = 6534, + [SMALL_STATE(108)] = 6575, + [SMALL_STATE(109)] = 6609, + [SMALL_STATE(110)] = 6643, + [SMALL_STATE(111)] = 6673, + [SMALL_STATE(112)] = 6703, + [SMALL_STATE(113)] = 6737, + [SMALL_STATE(114)] = 6771, + [SMALL_STATE(115)] = 6803, + [SMALL_STATE(116)] = 6830, + [SMALL_STATE(117)] = 6857, + [SMALL_STATE(118)] = 6906, + [SMALL_STATE(119)] = 6955, + [SMALL_STATE(120)] = 6986, + [SMALL_STATE(121)] = 7035, + [SMALL_STATE(122)] = 7084, + [SMALL_STATE(123)] = 7133, + [SMALL_STATE(124)] = 7160, + [SMALL_STATE(125)] = 7209, + [SMALL_STATE(126)] = 7236, + [SMALL_STATE(127)] = 7285, + [SMALL_STATE(128)] = 7312, + [SMALL_STATE(129)] = 7339, + [SMALL_STATE(130)] = 7366, + [SMALL_STATE(131)] = 7393, + [SMALL_STATE(132)] = 7420, + [SMALL_STATE(133)] = 7447, + [SMALL_STATE(134)] = 7496, + [SMALL_STATE(135)] = 7545, + [SMALL_STATE(136)] = 7576, + [SMALL_STATE(137)] = 7625, + [SMALL_STATE(138)] = 7674, + [SMALL_STATE(139)] = 7702, + [SMALL_STATE(140)] = 7730, + [SMALL_STATE(141)] = 7776, + [SMALL_STATE(142)] = 7822, + [SMALL_STATE(143)] = 7868, + [SMALL_STATE(144)] = 7911, + [SMALL_STATE(145)] = 7954, + [SMALL_STATE(146)] = 7979, + [SMALL_STATE(147)] = 8022, + [SMALL_STATE(148)] = 8067, + [SMALL_STATE(149)] = 8110, + [SMALL_STATE(150)] = 8153, + [SMALL_STATE(151)] = 8196, + [SMALL_STATE(152)] = 8239, + [SMALL_STATE(153)] = 8282, + [SMALL_STATE(154)] = 8325, + [SMALL_STATE(155)] = 8368, + [SMALL_STATE(156)] = 8411, + [SMALL_STATE(157)] = 8456, + [SMALL_STATE(158)] = 8481, + [SMALL_STATE(159)] = 8524, + [SMALL_STATE(160)] = 8553, + [SMALL_STATE(161)] = 8582, + [SMALL_STATE(162)] = 8625, + [SMALL_STATE(163)] = 8668, + [SMALL_STATE(164)] = 8711, + [SMALL_STATE(165)] = 8754, + [SMALL_STATE(166)] = 8779, + [SMALL_STATE(167)] = 8822, + [SMALL_STATE(168)] = 8865, + [SMALL_STATE(169)] = 8910, + [SMALL_STATE(170)] = 8935, + [SMALL_STATE(171)] = 8978, + [SMALL_STATE(172)] = 9003, + [SMALL_STATE(173)] = 9046, + [SMALL_STATE(174)] = 9089, + [SMALL_STATE(175)] = 9114, + [SMALL_STATE(176)] = 9157, + [SMALL_STATE(177)] = 9200, + [SMALL_STATE(178)] = 9225, + [SMALL_STATE(179)] = 9250, + [SMALL_STATE(180)] = 9275, + [SMALL_STATE(181)] = 9318, + [SMALL_STATE(182)] = 9361, + [SMALL_STATE(183)] = 9404, + [SMALL_STATE(184)] = 9447, + [SMALL_STATE(185)] = 9490, + [SMALL_STATE(186)] = 9533, + [SMALL_STATE(187)] = 9576, + [SMALL_STATE(188)] = 9606, + [SMALL_STATE(189)] = 9643, + [SMALL_STATE(190)] = 9666, + [SMALL_STATE(191)] = 9691, + [SMALL_STATE(192)] = 9714, + [SMALL_STATE(193)] = 9737, + [SMALL_STATE(194)] = 9760, + [SMALL_STATE(195)] = 9783, + [SMALL_STATE(196)] = 9806, + [SMALL_STATE(197)] = 9829, + [SMALL_STATE(198)] = 9852, + [SMALL_STATE(199)] = 9875, + [SMALL_STATE(200)] = 9898, + [SMALL_STATE(201)] = 9921, + [SMALL_STATE(202)] = 9944, + [SMALL_STATE(203)] = 9967, + [SMALL_STATE(204)] = 9990, + [SMALL_STATE(205)] = 10013, + [SMALL_STATE(206)] = 10053, + [SMALL_STATE(207)] = 10093, + [SMALL_STATE(208)] = 10133, + [SMALL_STATE(209)] = 10165, + [SMALL_STATE(210)] = 10205, + [SMALL_STATE(211)] = 10245, + [SMALL_STATE(212)] = 10285, + [SMALL_STATE(213)] = 10319, + [SMALL_STATE(214)] = 10348, + [SMALL_STATE(215)] = 10385, + [SMALL_STATE(216)] = 10422, + [SMALL_STATE(217)] = 10459, + [SMALL_STATE(218)] = 10496, + [SMALL_STATE(219)] = 10533, + [SMALL_STATE(220)] = 10570, + [SMALL_STATE(221)] = 10607, + [SMALL_STATE(222)] = 10644, + [SMALL_STATE(223)] = 10673, + [SMALL_STATE(224)] = 10710, + [SMALL_STATE(225)] = 10747, + [SMALL_STATE(226)] = 10784, + [SMALL_STATE(227)] = 10818, + [SMALL_STATE(228)] = 10843, + [SMALL_STATE(229)] = 10868, + [SMALL_STATE(230)] = 10893, + [SMALL_STATE(231)] = 10918, + [SMALL_STATE(232)] = 10943, + [SMALL_STATE(233)] = 10968, + [SMALL_STATE(234)] = 10993, + [SMALL_STATE(235)] = 11018, + [SMALL_STATE(236)] = 11043, + [SMALL_STATE(237)] = 11068, + [SMALL_STATE(238)] = 11093, + [SMALL_STATE(239)] = 11118, + [SMALL_STATE(240)] = 11139, + [SMALL_STATE(241)] = 11164, + [SMALL_STATE(242)] = 11186, + [SMALL_STATE(243)] = 11208, + [SMALL_STATE(244)] = 11230, + [SMALL_STATE(245)] = 11248, + [SMALL_STATE(246)] = 11264, + [SMALL_STATE(247)] = 11280, + [SMALL_STATE(248)] = 11296, + [SMALL_STATE(249)] = 11312, + [SMALL_STATE(250)] = 11328, + [SMALL_STATE(251)] = 11344, + [SMALL_STATE(252)] = 11360, + [SMALL_STATE(253)] = 11376, + [SMALL_STATE(254)] = 11392, + [SMALL_STATE(255)] = 11408, + [SMALL_STATE(256)] = 11424, + [SMALL_STATE(257)] = 11439, + [SMALL_STATE(258)] = 11454, + [SMALL_STATE(259)] = 11469, + [SMALL_STATE(260)] = 11481, + [SMALL_STATE(261)] = 11495, + [SMALL_STATE(262)] = 11509, + [SMALL_STATE(263)] = 11520, + [SMALL_STATE(264)] = 11531, + [SMALL_STATE(265)] = 11542, + [SMALL_STATE(266)] = 11553, + [SMALL_STATE(267)] = 11566, + [SMALL_STATE(268)] = 11579, + [SMALL_STATE(269)] = 11590, + [SMALL_STATE(270)] = 11601, + [SMALL_STATE(271)] = 11612, + [SMALL_STATE(272)] = 11623, + [SMALL_STATE(273)] = 11634, + [SMALL_STATE(274)] = 11645, + [SMALL_STATE(275)] = 11656, + [SMALL_STATE(276)] = 11669, + [SMALL_STATE(277)] = 11682, + [SMALL_STATE(278)] = 11693, + [SMALL_STATE(279)] = 11704, + [SMALL_STATE(280)] = 11717, + [SMALL_STATE(281)] = 11728, + [SMALL_STATE(282)] = 11739, + [SMALL_STATE(283)] = 11750, + [SMALL_STATE(284)] = 11758, + [SMALL_STATE(285)] = 11766, + [SMALL_STATE(286)] = 11774, + [SMALL_STATE(287)] = 11784, + [SMALL_STATE(288)] = 11794, + [SMALL_STATE(289)] = 11804, + [SMALL_STATE(290)] = 11814, + [SMALL_STATE(291)] = 11824, + [SMALL_STATE(292)] = 11834, + [SMALL_STATE(293)] = 11844, + [SMALL_STATE(294)] = 11854, + [SMALL_STATE(295)] = 11864, + [SMALL_STATE(296)] = 11874, + [SMALL_STATE(297)] = 11884, + [SMALL_STATE(298)] = 11894, + [SMALL_STATE(299)] = 11904, + [SMALL_STATE(300)] = 11914, + [SMALL_STATE(301)] = 11922, + [SMALL_STATE(302)] = 11932, + [SMALL_STATE(303)] = 11940, + [SMALL_STATE(304)] = 11950, + [SMALL_STATE(305)] = 11960, + [SMALL_STATE(306)] = 11970, + [SMALL_STATE(307)] = 11980, + [SMALL_STATE(308)] = 11990, + [SMALL_STATE(309)] = 12000, + [SMALL_STATE(310)] = 12008, + [SMALL_STATE(311)] = 12018, + [SMALL_STATE(312)] = 12026, + [SMALL_STATE(313)] = 12034, + [SMALL_STATE(314)] = 12044, + [SMALL_STATE(315)] = 12054, + [SMALL_STATE(316)] = 12064, + [SMALL_STATE(317)] = 12072, + [SMALL_STATE(318)] = 12082, + [SMALL_STATE(319)] = 12090, + [SMALL_STATE(320)] = 12098, + [SMALL_STATE(321)] = 12106, + [SMALL_STATE(322)] = 12114, + [SMALL_STATE(323)] = 12122, + [SMALL_STATE(324)] = 12130, + [SMALL_STATE(325)] = 12140, + [SMALL_STATE(326)] = 12147, + [SMALL_STATE(327)] = 12154, + [SMALL_STATE(328)] = 12161, + [SMALL_STATE(329)] = 12166, + [SMALL_STATE(330)] = 12171, + [SMALL_STATE(331)] = 12178, + [SMALL_STATE(332)] = 12183, + [SMALL_STATE(333)] = 12190, + [SMALL_STATE(334)] = 12195, + [SMALL_STATE(335)] = 12200, + [SMALL_STATE(336)] = 12207, + [SMALL_STATE(337)] = 12212, + [SMALL_STATE(338)] = 12217, + [SMALL_STATE(339)] = 12224, + [SMALL_STATE(340)] = 12231, + [SMALL_STATE(341)] = 12236, + [SMALL_STATE(342)] = 12243, + [SMALL_STATE(343)] = 12250, + [SMALL_STATE(344)] = 12255, + [SMALL_STATE(345)] = 12262, + [SMALL_STATE(346)] = 12267, + [SMALL_STATE(347)] = 12272, + [SMALL_STATE(348)] = 12277, + [SMALL_STATE(349)] = 12284, + [SMALL_STATE(350)] = 12288, + [SMALL_STATE(351)] = 12292, + [SMALL_STATE(352)] = 12296, + [SMALL_STATE(353)] = 12300, + [SMALL_STATE(354)] = 12304, + [SMALL_STATE(355)] = 12308, + [SMALL_STATE(356)] = 12312, + [SMALL_STATE(357)] = 12316, + [SMALL_STATE(358)] = 12320, + [SMALL_STATE(359)] = 12324, + [SMALL_STATE(360)] = 12328, + [SMALL_STATE(361)] = 12332, + [SMALL_STATE(362)] = 12336, + [SMALL_STATE(363)] = 12340, + [SMALL_STATE(364)] = 12344, + [SMALL_STATE(365)] = 12348, + [SMALL_STATE(366)] = 12352, + [SMALL_STATE(367)] = 12356, + [SMALL_STATE(368)] = 12360, + [SMALL_STATE(369)] = 12364, + [SMALL_STATE(370)] = 12368, + [SMALL_STATE(371)] = 12372, + [SMALL_STATE(372)] = 12376, + [SMALL_STATE(373)] = 12380, + [SMALL_STATE(374)] = 12384, + [SMALL_STATE(375)] = 12388, + [SMALL_STATE(376)] = 12392, + [SMALL_STATE(377)] = 12396, + [SMALL_STATE(378)] = 12400, + [SMALL_STATE(379)] = 12404, + [SMALL_STATE(380)] = 12408, + [SMALL_STATE(381)] = 12412, + [SMALL_STATE(382)] = 12416, + [SMALL_STATE(383)] = 12420, + [SMALL_STATE(384)] = 12424, + [SMALL_STATE(385)] = 12428, + [SMALL_STATE(386)] = 12432, + [SMALL_STATE(387)] = 12436, + [SMALL_STATE(388)] = 12440, + [SMALL_STATE(389)] = 12444, + [SMALL_STATE(390)] = 12448, + [SMALL_STATE(391)] = 12452, + [SMALL_STATE(392)] = 12456, + [SMALL_STATE(393)] = 12460, + [SMALL_STATE(394)] = 12464, + [SMALL_STATE(395)] = 12468, + [SMALL_STATE(396)] = 12472, + [SMALL_STATE(397)] = 12476, + [SMALL_STATE(398)] = 12480, + [SMALL_STATE(399)] = 12484, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(123), - [42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(383), - [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(110), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(262), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(337), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(375), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(385), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(340), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(78), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(381), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(84), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(123), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(110), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(181), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(181), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(171), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(262), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(363), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(337), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(375), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(385), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(340), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(78), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(77), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(381), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(84), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(175), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(110), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(181), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(181), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(171), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(262), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(363), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(337), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(375), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(424), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(322), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(96), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(77), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(381), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(84), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(251), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(101), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(239), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(239), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(246), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(261), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(365), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(351), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(403), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(386), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(339), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(81), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(99), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(384), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(91), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(113), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4, .production_id = 1), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4, .production_id = 1), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(100), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6, .production_id = 2), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6, .production_id = 2), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 1), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 1), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(92), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(88), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(299), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(292), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(256), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(355), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(323), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(413), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(262), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(102), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(320), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(379), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [839] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(68), + [38] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352), + [41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(102), + [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(102), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(99), + [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(224), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(324), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(379), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(386), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(148), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(155), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(390), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(172), + [80] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(68), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(102), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(102), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(99), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(224), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(325), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(324), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat2, 2), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(379), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(386), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(323), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(148), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(155), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(390), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat2, 2), SHIFT_REPEAT(172), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_yield_repeat1, 2), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6), + [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 7), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 7), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 6), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 6), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(164), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 1), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 1), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 5), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 5), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 4), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 4), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_control_flow_repeat1, 2), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_control_flow_repeat1, 2), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_control_flow_repeat1, 2), SHIFT_REPEAT(158), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(190), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(198), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(198), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(194), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(214), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(326), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(288), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(397), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(151), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 7), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 7), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 6), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 6), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(93), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(102), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(102), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(99), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(224), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(325), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(324), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(379), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 4), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 4), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_control_flow_repeat1, 4), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_control_flow_repeat1, 4), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_flow, 6), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_flow, 6), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 5), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_loop, 5), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_loop, 5), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(255), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(255), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(252), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(221), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(344), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(310), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(395), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), SHIFT_REPEAT(224), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_repeat1, 2), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_yield_repeat1, 2), SHIFT_REPEAT(175), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_control_flow_repeat1, 2), SHIFT_REPEAT(144), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(311), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(382), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [879] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), }; #ifdef __cplusplus @@ -16091,9 +13185,6 @@ extern const TSLanguage *tree_sitter_dust(void) { .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,