From 99dadd9ca7a4f38c305a2531ea45fb80af9759b3 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Wed, 26 Nov 2025 23:04:03 +0100 Subject: [PATCH] feat: add support for fullwidth Unicode, multiline arrays, and ASCII blocks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add fullwidth brackets [] (U+FF3B, U+FF3D) support - Add fullwidth quotes " (U+FF02) support - Fix multiline arrays with newlines between elements - Fix line continuation with CRLF (^) - Enable ASCII block syntax (ascii...asciiend and [ascii...asciiend]) - Update conflicts to resolve ambiguities Fixed 51 parsing errors (253 -> 202 errors) --- grammar.js | 57 +- src/grammar.json | 280 +- src/node-types.json | 133 +- src/parser.c | 28563 ++++++++++++++++++++++++------------------ src/scanner.c | 118 +- 5 files changed, 16668 insertions(+), 12483 deletions(-) diff --git a/grammar.js b/grammar.js index 4d93e39..fa4882c 100644 --- a/grammar.js +++ b/grammar.js @@ -142,8 +142,7 @@ module.exports = grammar({ print_command: $ => prec.right(seq( choice('>', '>o', '>h', '>`', '>c', '>f'), - optional($.print_args), - repeat($.print_continuation) + optional($.print_args) )), // Print specific helpers @@ -165,14 +164,6 @@ module.exports = grammar({ '@' ), - print_continuation: $ => prec.right(seq( - '^', - repeat(choice( - /[^@\r\n]+/, - $.interpolation - )) - )), - color_code: $ => /#[a-zA-Z0-9]+/, // Expressions @@ -195,7 +186,7 @@ module.exports = grammar({ $.assignment_expression, $.parenthesized_expression, $.new_statement, - // $.ascii_string, + $.ascii_string, $.color_code ), @@ -218,9 +209,9 @@ module.exports = grammar({ index_expression: $ => prec.left(13, seq( $._expression, - '[', + choice('[', '['), $._expression, - ']' + choice(']', ']') )), unary_expression: $ => prec.right(12, seq( @@ -264,14 +255,22 @@ module.exports = grammar({ // Arrays array: $ => seq( - '[', - optional($.array_elements), - ']' + choice('[', '['), + repeat($._newline), + optional(seq( + $.array_elements, + repeat($._newline) + )), + choice(']', ']') ), array_elements: $ => seq( $._expression, - repeat(seq(',', $._expression)), + repeat(seq( + ',', + repeat($._newline), + $._expression + )), optional(',') ), @@ -282,21 +281,24 @@ module.exports = grammar({ float: $ => /\d+\.\d+/, - string: $ => seq('"', repeat(choice(/[^"\\]/, /\\./)), '"'), + string: $ => choice( + seq('"', repeat(choice(/[^"\\]/, /\\./)), '"'), + seq('"', repeat(choice(/[^"\\]/, /\\./)), '"') + ), boolean: $ => choice('true', 'false'), null: $ => 'null', - // ascii_string: $ => seq( - // 'ascii', - // $.ascii_content, - // 'asciiend' - // ) + + ascii_string: $ => choice( + seq('ascii', $.ascii_content, 'asciiend'), + seq(choice('[', '['), 'ascii', $.ascii_content, 'asciiend', choice(']', ']')) + ) }, extras: $ => [ /[ \t\r\f]/, - /[\r\n]\^/, + /\r?\n[ \t]*\^/, $.comment, $.block_comment ], @@ -304,7 +306,8 @@ module.exports = grammar({ externals: $ => [ $._newline, $._indent, - $._dedent + $._dedent, + $.ascii_content ], word: $ => $.identifier, @@ -315,7 +318,9 @@ module.exports = grammar({ [$.command], [$._statement, $._expression], // new_statement can be both [$.binary_expression, $.assignment_expression], // = operator ambiguity - [$.command, $._expression] // * operator ambiguity + [$.command, $._expression], // * operator ambiguity + [$.array_elements], + [$.ascii_string] ] }); diff --git a/src/grammar.json b/src/grammar.json index 5cb62b8..f94672e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "stonescript", "word": "identifier", "rules": { @@ -558,13 +559,6 @@ "type": "BLANK" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "print_continuation" - } } ] } @@ -643,35 +637,6 @@ } ] }, - "print_continuation": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^@\\r\\n]+" - }, - { - "type": "SYMBOL", - "name": "interpolation" - } - ] - } - } - ] - } - }, "color_code": { "type": "PATTERN", "value": "#[a-zA-Z0-9]+" @@ -747,6 +712,10 @@ "type": "SYMBOL", "name": "new_statement" }, + { + "type": "SYMBOL", + "name": "ascii_string" + }, { "type": "SYMBOL", "name": "color_code" @@ -859,16 +828,34 @@ "name": "_expression" }, { - "type": "STRING", - "value": "[" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[" + } + ] }, { "type": "SYMBOL", "name": "_expression" }, { - "type": "STRING", - "value": "]" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "]" + } + ] } ] } @@ -1297,15 +1284,43 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "[" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "array_elements" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_elements" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + } + ] }, { "type": "BLANK" @@ -1313,8 +1328,17 @@ ] }, { - "type": "STRING", - "value": "]" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "]" + } + ] } ] }, @@ -1334,6 +1358,13 @@ "type": "STRING", "value": "," }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, { "type": "SYMBOL", "name": "_expression" @@ -1368,31 +1399,65 @@ "value": "\\d+\\.\\d+" }, "string": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\"\\\\]" - }, - { - "type": "PATTERN", - "value": "\\\\." + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^\"\\\\]" + }, + { + "type": "PATTERN", + "value": "\\\\." + } + ] } - ] - } + }, + { + "type": "STRING", + "value": "\"" + } + ] }, { - "type": "STRING", - "value": "\"" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": """ + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^"\\\\]" + }, + { + "type": "PATTERN", + "value": "\\\\." + } + ] + } + }, + { + "type": "STRING", + "value": """ + } + ] } ] }, @@ -1412,6 +1477,71 @@ "null": { "type": "STRING", "value": "null" + }, + "ascii_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "ascii" + }, + { + "type": "SYMBOL", + "name": "ascii_content" + }, + { + "type": "STRING", + "value": "asciiend" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "[" + } + ] + }, + { + "type": "STRING", + "value": "ascii" + }, + { + "type": "SYMBOL", + "name": "ascii_content" + }, + { + "type": "STRING", + "value": "asciiend" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + ] + } + ] } }, "extras": [ @@ -1421,7 +1551,7 @@ }, { "type": "PATTERN", - "value": "[\\r\\n]\\^" + "value": "\\r?\\n[ \\t]*\\^" }, { "type": "SYMBOL", @@ -1454,6 +1584,12 @@ [ "command", "_expression" + ], + [ + "array_elements" + ], + [ + "ascii_string" ] ], "precedences": [], @@ -1469,9 +1605,13 @@ { "type": "SYMBOL", "name": "_dedent" + }, + { + "type": "SYMBOL", + "name": "ascii_content" } ], "inline": [], - "supertypes": [] -} - + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 62cb0dc..a67ee3e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -11,6 +11,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -109,6 +113,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -176,6 +184,21 @@ ] } }, + { + "type": "ascii_string", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "ascii_content", + "named": true + } + ] + } + }, { "type": "assignment_expression", "named": true, @@ -188,6 +211,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -267,6 +294,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -418,6 +449,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -544,6 +579,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -627,6 +666,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -725,6 +768,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -804,6 +851,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -932,6 +983,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1011,6 +1066,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1090,6 +1149,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1210,6 +1273,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1324,31 +1391,12 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { "type": "print_args", "named": true - }, - { - "type": "print_continuation", - "named": true - } - ] - } - }, - { - "type": "print_continuation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "interpolation", - "named": true } ] } @@ -1365,6 +1413,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1435,6 +1487,7 @@ { "type": "source_file", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -1531,6 +1584,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1610,6 +1667,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1699,6 +1760,10 @@ "type": "array", "named": true }, + { + "type": "ascii_string", + "named": true + }, { "type": "assignment_expression", "named": true @@ -1908,12 +1973,21 @@ "named": false }, { - "type": "^", + "type": "ascii", + "named": false + }, + { + "type": "ascii_content", + "named": true + }, + { + "type": "asciiend", "named": false }, { "type": "block_comment", - "named": true + "named": true, + "extra": true }, { "type": "break_statement", @@ -1925,7 +1999,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "continue_statement", @@ -1990,5 +2065,17 @@ { "type": "|", "named": false + }, + { + "type": """, + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 4bae2ed..9b8e50b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,22 +1,25 @@ -#include +/* Automatically generated by tree-sitter v0.25.3 */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 365 -#define LARGE_STATE_COUNT 9 -#define SYMBOL_COUNT 110 +#define STATE_COUNT 480 +#define LARGE_STATE_COUNT 11 +#define SYMBOL_COUNT 115 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 63 -#define EXTERNAL_TOKEN_COUNT 3 +#define TOKEN_COUNT 68 +#define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 5 #define MAX_ALIAS_SEQUENCE_LENGTH 7 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 5 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, sym_comment = 2, sym_block_comment = 3, @@ -47,12 +50,12 @@ enum { anon_sym_GTf = 28, sym_print_text = 29, anon_sym_AT = 30, - anon_sym_CARET = 31, - aux_sym_print_continuation_token1 = 32, - sym_color_code = 33, - anon_sym_DOT = 34, - anon_sym_LBRACK = 35, - anon_sym_RBRACK = 36, + sym_color_code = 31, + anon_sym_DOT = 32, + anon_sym_LBRACK = 33, + anon_sym_uff3b = 34, + anon_sym_RBRACK = 35, + anon_sym_uff3d = 36, anon_sym_BANG = 37, anon_sym_DASH = 38, anon_sym_PIPE = 39, @@ -73,59 +76,64 @@ enum { anon_sym_DQUOTE = 54, aux_sym_string_token1 = 55, aux_sym_string_token2 = 56, - anon_sym_true = 57, - anon_sym_false = 58, - sym_null = 59, - sym__newline = 60, - sym__indent = 61, - sym__dedent = 62, - sym_source_file = 63, - sym__statement = 64, - sym_variable_declaration = 65, - sym_function_declaration = 66, - sym_parameter_list = 67, - sym_for_loop = 68, - sym_import_statement = 69, - sym_new_statement = 70, - sym_return_statement = 71, - sym_conditional = 72, - sym_else_clause = 73, - sym_block = 74, - sym_command = 75, - sym__command_arg = 76, - sym_star_level = 77, - sym_enchantment_level = 78, - sym_print_command = 79, - sym_print_args = 80, - sym_print_argument = 81, - sym_interpolation = 82, - sym_print_continuation = 83, - sym_expression_statement = 84, - sym__expression = 85, - sym_member_expression = 86, - sym_call_expression = 87, - sym_argument_list = 88, - sym_comma_sep = 89, - sym_index_expression = 90, - sym_unary_expression = 91, - sym_binary_expression = 92, - sym_update_expression = 93, - sym_assignment_expression = 94, - sym_parenthesized_expression = 95, - sym_array = 96, - sym_array_elements = 97, - sym_string = 98, - sym_boolean = 99, - aux_sym_source_file_repeat1 = 100, - aux_sym_parameter_list_repeat1 = 101, - aux_sym_command_repeat1 = 102, - aux_sym_print_command_repeat1 = 103, - aux_sym_print_args_repeat1 = 104, - aux_sym_print_argument_repeat1 = 105, - aux_sym_print_continuation_repeat1 = 106, - aux_sym_argument_list_repeat1 = 107, - aux_sym_array_elements_repeat1 = 108, - aux_sym_string_repeat1 = 109, + anon_sym_uff02 = 57, + aux_sym_string_token3 = 58, + anon_sym_true = 59, + anon_sym_false = 60, + sym_null = 61, + anon_sym_ascii = 62, + anon_sym_asciiend = 63, + sym__newline = 64, + sym__indent = 65, + sym__dedent = 66, + sym_ascii_content = 67, + sym_source_file = 68, + sym__statement = 69, + sym_variable_declaration = 70, + sym_function_declaration = 71, + sym_parameter_list = 72, + sym_for_loop = 73, + sym_import_statement = 74, + sym_new_statement = 75, + sym_return_statement = 76, + sym_conditional = 77, + sym_else_clause = 78, + sym_block = 79, + sym_command = 80, + sym__command_arg = 81, + sym_star_level = 82, + sym_enchantment_level = 83, + sym_print_command = 84, + sym_print_args = 85, + sym_print_argument = 86, + sym_interpolation = 87, + sym_expression_statement = 88, + sym__expression = 89, + sym_member_expression = 90, + sym_call_expression = 91, + sym_argument_list = 92, + sym_comma_sep = 93, + sym_index_expression = 94, + sym_unary_expression = 95, + sym_binary_expression = 96, + sym_update_expression = 97, + sym_assignment_expression = 98, + sym_parenthesized_expression = 99, + sym_array = 100, + sym_array_elements = 101, + sym_string = 102, + sym_boolean = 103, + sym_ascii_string = 104, + aux_sym_source_file_repeat1 = 105, + aux_sym_parameter_list_repeat1 = 106, + aux_sym_command_repeat1 = 107, + aux_sym_print_args_repeat1 = 108, + aux_sym_print_argument_repeat1 = 109, + aux_sym_argument_list_repeat1 = 110, + aux_sym_array_repeat1 = 111, + aux_sym_array_elements_repeat1 = 112, + aux_sym_string_repeat1 = 113, + aux_sym_string_repeat2 = 114, }; static const char * const ts_symbol_names[] = { @@ -160,12 +168,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_GTf] = ">f", [sym_print_text] = "print_text", [anon_sym_AT] = "@", - [anon_sym_CARET] = "^", - [aux_sym_print_continuation_token1] = "print_continuation_token1", [sym_color_code] = "color_code", [anon_sym_DOT] = ".", [anon_sym_LBRACK] = "[", + [anon_sym_uff3b] = "\uff3b", [anon_sym_RBRACK] = "]", + [anon_sym_uff3d] = "\uff3d", [anon_sym_BANG] = "!", [anon_sym_DASH] = "-", [anon_sym_PIPE] = "|", @@ -186,12 +194,17 @@ static const char * const ts_symbol_names[] = { [anon_sym_DQUOTE] = "\"", [aux_sym_string_token1] = "string_token1", [aux_sym_string_token2] = "string_token2", + [anon_sym_uff02] = "\uff02", + [aux_sym_string_token3] = "string_token3", [anon_sym_true] = "true", [anon_sym_false] = "false", [sym_null] = "null", + [anon_sym_ascii] = "ascii", + [anon_sym_asciiend] = "asciiend", [sym__newline] = "_newline", [sym__indent] = "_indent", [sym__dedent] = "_dedent", + [sym_ascii_content] = "ascii_content", [sym_source_file] = "source_file", [sym__statement] = "_statement", [sym_variable_declaration] = "variable_declaration", @@ -212,7 +225,6 @@ static const char * const ts_symbol_names[] = { [sym_print_args] = "print_args", [sym_print_argument] = "print_argument", [sym_interpolation] = "interpolation", - [sym_print_continuation] = "print_continuation", [sym_expression_statement] = "expression_statement", [sym__expression] = "_expression", [sym_member_expression] = "member_expression", @@ -229,16 +241,17 @@ static const char * const ts_symbol_names[] = { [sym_array_elements] = "array_elements", [sym_string] = "string", [sym_boolean] = "boolean", + [sym_ascii_string] = "ascii_string", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_command_repeat1] = "command_repeat1", - [aux_sym_print_command_repeat1] = "print_command_repeat1", [aux_sym_print_args_repeat1] = "print_args_repeat1", [aux_sym_print_argument_repeat1] = "print_argument_repeat1", - [aux_sym_print_continuation_repeat1] = "print_continuation_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_elements_repeat1] = "array_elements_repeat1", [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_string_repeat2] = "string_repeat2", }; static const TSSymbol ts_symbol_map[] = { @@ -273,12 +286,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GTf] = anon_sym_GTf, [sym_print_text] = sym_print_text, [anon_sym_AT] = anon_sym_AT, - [anon_sym_CARET] = anon_sym_CARET, - [aux_sym_print_continuation_token1] = aux_sym_print_continuation_token1, [sym_color_code] = sym_color_code, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_uff3b] = anon_sym_uff3b, [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_uff3d] = anon_sym_uff3d, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_PIPE] = anon_sym_PIPE, @@ -299,12 +312,17 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, [aux_sym_string_token2] = aux_sym_string_token2, + [anon_sym_uff02] = anon_sym_uff02, + [aux_sym_string_token3] = aux_sym_string_token3, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, [sym_null] = sym_null, + [anon_sym_ascii] = anon_sym_ascii, + [anon_sym_asciiend] = anon_sym_asciiend, [sym__newline] = sym__newline, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, + [sym_ascii_content] = sym_ascii_content, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, [sym_variable_declaration] = sym_variable_declaration, @@ -325,7 +343,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_print_args] = sym_print_args, [sym_print_argument] = sym_print_argument, [sym_interpolation] = sym_interpolation, - [sym_print_continuation] = sym_print_continuation, [sym_expression_statement] = sym_expression_statement, [sym__expression] = sym__expression, [sym_member_expression] = sym_member_expression, @@ -342,16 +359,17 @@ static const TSSymbol ts_symbol_map[] = { [sym_array_elements] = sym_array_elements, [sym_string] = sym_string, [sym_boolean] = sym_boolean, + [sym_ascii_string] = sym_ascii_string, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_command_repeat1] = aux_sym_command_repeat1, - [aux_sym_print_command_repeat1] = aux_sym_print_command_repeat1, [aux_sym_print_args_repeat1] = aux_sym_print_args_repeat1, [aux_sym_print_argument_repeat1] = aux_sym_print_argument_repeat1, - [aux_sym_print_continuation_repeat1] = aux_sym_print_continuation_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_elements_repeat1] = aux_sym_array_elements_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_string_repeat2] = aux_sym_string_repeat2, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -479,14 +497,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [aux_sym_print_continuation_token1] = { - .visible = false, - .named = false, - }, [sym_color_code] = { .visible = true, .named = true, @@ -499,10 +509,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_uff3b] = { + .visible = true, + .named = false, + }, [anon_sym_RBRACK] = { .visible = true, .named = false, }, + [anon_sym_uff3d] = { + .visible = true, + .named = false, + }, [anon_sym_BANG] = { .visible = true, .named = false, @@ -583,6 +601,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_uff02] = { + .visible = true, + .named = false, + }, + [aux_sym_string_token3] = { + .visible = false, + .named = false, + }, [anon_sym_true] = { .visible = true, .named = false, @@ -595,6 +621,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_ascii] = { + .visible = true, + .named = false, + }, + [anon_sym_asciiend] = { + .visible = true, + .named = false, + }, [sym__newline] = { .visible = false, .named = true, @@ -607,6 +641,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_ascii_content] = { + .visible = true, + .named = true, + }, [sym_source_file] = { .visible = true, .named = true, @@ -687,10 +725,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_print_continuation] = { - .visible = true, - .named = true, - }, [sym_expression_statement] = { .visible = true, .named = true, @@ -755,6 +789,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_ascii_string] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -767,10 +805,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_print_command_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_print_args_repeat1] = { .visible = false, .named = false, @@ -779,11 +813,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_print_continuation_repeat1] = { + [aux_sym_argument_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_argument_list_repeat1] = { + [aux_sym_array_repeat1] = { .visible = false, .named = false, }, @@ -795,9 +829,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_string_repeat2] = { + .visible = false, + .named = false, + }, }; -enum { +enum ts_field_identifiers { field_function = 1, field_name = 2, field_object = 3, @@ -814,7 +852,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 2}, @@ -849,7 +887,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 2, [4] = 4, [5] = 5, - [6] = 4, + [6] = 5, [7] = 7, [8] = 7, [9] = 9, @@ -879,87 +917,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [33] = 33, [34] = 34, [35] = 35, - [36] = 34, - [37] = 23, - [38] = 38, - [39] = 19, - [40] = 35, - [41] = 26, - [42] = 15, + [36] = 36, + [37] = 37, + [38] = 11, + [39] = 18, + [40] = 40, + [41] = 33, + [42] = 21, [43] = 16, - [44] = 33, - [45] = 38, - [46] = 17, - [47] = 32, - [48] = 31, - [49] = 18, - [50] = 12, - [51] = 20, - [52] = 14, - [53] = 11, - [54] = 21, - [55] = 22, - [56] = 24, - [57] = 25, - [58] = 27, - [59] = 13, - [60] = 28, - [61] = 29, - [62] = 30, - [63] = 63, - [64] = 63, - [65] = 65, - [66] = 65, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 67, - [71] = 68, - [72] = 72, - [73] = 72, - [74] = 69, + [44] = 44, + [45] = 45, + [46] = 12, + [47] = 13, + [48] = 15, + [49] = 17, + [50] = 19, + [51] = 22, + [52] = 23, + [53] = 24, + [54] = 25, + [55] = 26, + [56] = 27, + [57] = 28, + [58] = 29, + [59] = 30, + [60] = 31, + [61] = 32, + [62] = 34, + [63] = 35, + [64] = 36, + [65] = 37, + [66] = 44, + [67] = 14, + [68] = 20, + [69] = 40, + [70] = 45, + [71] = 71, + [72] = 71, + [73] = 73, + [74] = 74, [75] = 75, - [76] = 76, + [76] = 73, [77] = 75, - [78] = 78, - [79] = 78, - [80] = 76, + [78] = 74, + [79] = 79, + [80] = 79, [81] = 81, - [82] = 13, - [83] = 81, + [82] = 81, + [83] = 83, [84] = 14, - [85] = 13, - [86] = 14, - [87] = 81, - [88] = 88, - [89] = 81, - [90] = 90, + [85] = 20, + [86] = 83, + [87] = 14, + [88] = 20, + [89] = 89, + [90] = 89, [91] = 91, [92] = 92, [93] = 93, [94] = 94, [95] = 93, - [96] = 90, - [97] = 92, - [98] = 98, - [99] = 88, - [100] = 94, - [101] = 98, - [102] = 91, - [103] = 14, - [104] = 104, - [105] = 104, + [96] = 14, + [97] = 20, + [98] = 94, + [99] = 14, + [100] = 20, + [101] = 91, + [102] = 92, + [103] = 103, + [104] = 103, + [105] = 105, [106] = 106, - [107] = 107, - [108] = 107, - [109] = 13, - [110] = 106, - [111] = 14, - [112] = 13, - [113] = 113, - [114] = 113, - [115] = 115, - [116] = 116, + [107] = 103, + [108] = 108, + [109] = 106, + [110] = 103, + [111] = 108, + [112] = 105, + [113] = 108, + [114] = 103, + [115] = 108, + [116] = 108, [117] = 117, [118] = 118, [119] = 119, @@ -968,246 +1006,361 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 122, [123] = 123, [124] = 124, - [125] = 121, - [126] = 126, - [127] = 117, - [128] = 116, + [125] = 125, + [126] = 120, + [127] = 127, + [128] = 118, [129] = 122, - [130] = 124, - [131] = 126, - [132] = 120, - [133] = 119, - [134] = 118, - [135] = 123, - [136] = 115, + [130] = 123, + [131] = 124, + [132] = 125, + [133] = 117, + [134] = 134, + [135] = 135, + [136] = 136, [137] = 137, - [138] = 137, - [139] = 139, - [140] = 139, - [141] = 141, - [142] = 142, - [143] = 142, - [144] = 141, - [145] = 141, - [146] = 142, - [147] = 141, - [148] = 142, - [149] = 149, + [138] = 136, + [139] = 135, + [140] = 137, + [141] = 121, + [142] = 119, + [143] = 143, + [144] = 144, + [145] = 143, + [146] = 144, + [147] = 147, + [148] = 148, + [149] = 148, [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, + [151] = 148, + [152] = 148, + [153] = 148, [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 154, [159] = 159, [160] = 160, [161] = 161, - [162] = 161, - [163] = 151, - [164] = 164, + [162] = 160, + [163] = 163, + [164] = 157, [165] = 165, [166] = 166, - [167] = 155, - [168] = 157, - [169] = 152, + [167] = 167, + [168] = 168, + [169] = 169, [170] = 170, - [171] = 157, - [172] = 166, - [173] = 170, - [174] = 164, - [175] = 151, - [176] = 176, - [177] = 152, - [178] = 158, + [171] = 171, + [172] = 172, + [173] = 155, + [174] = 156, + [175] = 157, + [176] = 154, + [177] = 177, + [178] = 171, [179] = 179, [180] = 180, - [181] = 151, - [182] = 170, - [183] = 159, - [184] = 161, - [185] = 160, - [186] = 154, - [187] = 187, - [188] = 176, - [189] = 154, - [190] = 190, - [191] = 161, - [192] = 166, - [193] = 176, - [194] = 160, - [195] = 195, - [196] = 195, - [197] = 158, - [198] = 179, - [199] = 176, - [200] = 187, - [201] = 180, - [202] = 160, - [203] = 164, - [204] = 164, - [205] = 205, - [206] = 165, - [207] = 166, - [208] = 157, - [209] = 153, - [210] = 187, - [211] = 154, - [212] = 170, - [213] = 153, - [214] = 165, - [215] = 165, - [216] = 153, - [217] = 187, - [218] = 158, - [219] = 190, - [220] = 152, - [221] = 30, - [222] = 22, - [223] = 25, - [224] = 27, - [225] = 31, - [226] = 23, - [227] = 17, - [228] = 28, - [229] = 12, - [230] = 19, - [231] = 20, - [232] = 11, - [233] = 21, - [234] = 34, - [235] = 24, - [236] = 15, - [237] = 16, - [238] = 33, - [239] = 18, - [240] = 32, - [241] = 29, - [242] = 13, - [243] = 14, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 247, - [250] = 246, - [251] = 248, - [252] = 252, - [253] = 252, - [254] = 254, - [255] = 255, - [256] = 25, - [257] = 13, - [258] = 20, - [259] = 19, - [260] = 12, - [261] = 18, - [262] = 17, - [263] = 263, - [264] = 264, - [265] = 263, - [266] = 21, - [267] = 16, - [268] = 15, - [269] = 27, - [270] = 270, - [271] = 270, - [272] = 22, - [273] = 24, - [274] = 274, - [275] = 274, - [276] = 263, - [277] = 23, - [278] = 28, - [279] = 29, - [280] = 30, - [281] = 14, - [282] = 31, - [283] = 32, - [284] = 11, - [285] = 264, - [286] = 33, - [287] = 34, - [288] = 274, - [289] = 274, - [290] = 270, - [291] = 263, - [292] = 270, - [293] = 293, - [294] = 294, - [295] = 294, - [296] = 296, - [297] = 296, + [181] = 172, + [182] = 155, + [183] = 156, + [184] = 184, + [185] = 161, + [186] = 160, + [187] = 168, + [188] = 188, + [189] = 169, + [190] = 161, + [191] = 160, + [192] = 170, + [193] = 171, + [194] = 159, + [195] = 155, + [196] = 156, + [197] = 157, + [198] = 154, + [199] = 161, + [200] = 161, + [201] = 160, + [202] = 168, + [203] = 170, + [204] = 168, + [205] = 168, + [206] = 169, + [207] = 169, + [208] = 170, + [209] = 171, + [210] = 170, + [211] = 172, + [212] = 155, + [213] = 171, + [214] = 156, + [215] = 157, + [216] = 154, + [217] = 172, + [218] = 177, + [219] = 184, + [220] = 188, + [221] = 169, + [222] = 165, + [223] = 179, + [224] = 166, + [225] = 180, + [226] = 177, + [227] = 179, + [228] = 177, + [229] = 179, + [230] = 177, + [231] = 179, + [232] = 163, + [233] = 172, + [234] = 35, + [235] = 22, + [236] = 23, + [237] = 24, + [238] = 25, + [239] = 26, + [240] = 27, + [241] = 28, + [242] = 29, + [243] = 30, + [244] = 31, + [245] = 32, + [246] = 45, + [247] = 12, + [248] = 13, + [249] = 34, + [250] = 14, + [251] = 36, + [252] = 37, + [253] = 11, + [254] = 15, + [255] = 16, + [256] = 20, + [257] = 17, + [258] = 44, + [259] = 21, + [260] = 19, + [261] = 261, + [262] = 13, + [263] = 24, + [264] = 25, + [265] = 14, + [266] = 26, + [267] = 27, + [268] = 28, + [269] = 269, + [270] = 29, + [271] = 30, + [272] = 31, + [273] = 273, + [274] = 32, + [275] = 34, + [276] = 20, + [277] = 21, + [278] = 35, + [279] = 36, + [280] = 37, + [281] = 281, + [282] = 11, + [283] = 269, + [284] = 269, + [285] = 269, + [286] = 19, + [287] = 269, + [288] = 16, + [289] = 44, + [290] = 45, + [291] = 12, + [292] = 15, + [293] = 17, + [294] = 22, + [295] = 295, + [296] = 23, + [297] = 297, [298] = 298, [299] = 299, - [300] = 296, - [301] = 299, - [302] = 296, - [303] = 296, - [304] = 296, - [305] = 299, + [300] = 300, + [301] = 301, + [302] = 299, + [303] = 298, + [304] = 304, + [305] = 304, [306] = 299, - [307] = 299, - [308] = 296, - [309] = 299, + [307] = 301, + [308] = 299, + [309] = 300, [310] = 299, - [311] = 296, + [311] = 35, [312] = 312, - [313] = 313, - [314] = 299, - [315] = 315, - [316] = 315, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, + [313] = 14, + [314] = 314, + [315] = 26, + [316] = 314, + [317] = 27, + [318] = 28, + [319] = 16, + [320] = 29, + [321] = 314, + [322] = 30, + [323] = 31, [324] = 324, - [325] = 322, - [326] = 326, - [327] = 327, - [328] = 326, - [329] = 327, - [330] = 324, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 331, - [336] = 336, - [337] = 333, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 333, - [342] = 333, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 332, - [347] = 344, - [348] = 331, - [349] = 345, - [350] = 350, - [351] = 350, - [352] = 344, - [353] = 340, - [354] = 340, - [355] = 339, - [356] = 338, - [357] = 344, + [325] = 32, + [326] = 314, + [327] = 25, + [328] = 44, + [329] = 36, + [330] = 15, + [331] = 45, + [332] = 37, + [333] = 11, + [334] = 312, + [335] = 17, + [336] = 19, + [337] = 20, + [338] = 21, + [339] = 22, + [340] = 314, + [341] = 12, + [342] = 13, + [343] = 23, + [344] = 324, + [345] = 24, + [346] = 34, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 349, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 353, + [355] = 355, + [356] = 356, + [357] = 357, [358] = 358, [359] = 359, - [360] = 340, - [361] = 359, - [362] = 336, - [363] = 334, - [364] = 331, + [360] = 359, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 353, + [367] = 356, + [368] = 357, + [369] = 365, + [370] = 359, + [371] = 361, + [372] = 362, + [373] = 364, + [374] = 353, + [375] = 365, + [376] = 353, + [377] = 356, + [378] = 357, + [379] = 359, + [380] = 361, + [381] = 365, + [382] = 364, + [383] = 361, + [384] = 365, + [385] = 385, + [386] = 356, + [387] = 357, + [388] = 359, + [389] = 361, + [390] = 362, + [391] = 365, + [392] = 353, + [393] = 361, + [394] = 362, + [395] = 365, + [396] = 353, + [397] = 361, + [398] = 362, + [399] = 365, + [400] = 353, + [401] = 361, + [402] = 362, + [403] = 365, + [404] = 353, + [405] = 364, + [406] = 362, + [407] = 356, + [408] = 361, + [409] = 362, + [410] = 357, + [411] = 364, + [412] = 362, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 416, + [418] = 418, + [419] = 419, + [420] = 419, + [421] = 421, + [422] = 422, + [423] = 418, + [424] = 421, + [425] = 425, + [426] = 422, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 430, + [432] = 430, + [433] = 428, + [434] = 434, + [435] = 428, + [436] = 434, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 437, + [441] = 441, + [442] = 427, + [443] = 434, + [444] = 444, + [445] = 445, + [446] = 428, + [447] = 437, + [448] = 427, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 429, + [453] = 437, + [454] = 445, + [455] = 450, + [456] = 441, + [457] = 430, + [458] = 427, + [459] = 451, + [460] = 445, + [461] = 437, + [462] = 462, + [463] = 434, + [464] = 445, + [465] = 428, + [466] = 427, + [467] = 430, + [468] = 445, + [469] = 444, + [470] = 470, + [471] = 471, + [472] = 434, + [473] = 471, + [474] = 471, + [475] = 471, + [476] = 438, + [477] = 462, + [478] = 439, + [479] = 471, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1215,1234 +1368,795 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(24) - if (lookahead == '\r') SKIP(15) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '%') ADVANCE(124); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '(') ADVANCE(37); - if (lookahead == ')') ADVANCE(40); - if (lookahead == '*') ADVANCE(54); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(115); - if (lookahead == '.') ADVANCE(106); - if (lookahead == '/') ADVANCE(123); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(58); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(107); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == ']') ADVANCE(110); - if (lookahead == '|') ADVANCE(118); + if (eof) ADVANCE(18); + if (lookahead == '\n') SKIP(15); + if (lookahead == '\r') SKIP(0); + if (lookahead == '!') ADVANCE(74); + if (lookahead == '"') ADVANCE(98); + if (lookahead == '#') ADVANCE(11); + if (lookahead == '%') ADVANCE(85); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(24); + if (lookahead == ')') ADVANCE(26); + if (lookahead == '*') ADVANCE(37); + if (lookahead == '+') ADVANCE(39); + if (lookahead == ',') ADVANCE(27); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '.') ADVANCE(67); + if (lookahead == '/') ADVANCE(84); + if (lookahead == ':') ADVANCE(29); + if (lookahead == '<') ADVANCE(81); + if (lookahead == '=') ADVANCE(23); + if (lookahead == '>') ADVANCE(41); + if (lookahead == '?') ADVANCE(32); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(68); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '|') ADVANCE(79); + if (lookahead == 0xff02) ADVANCE(103); + if (lookahead == 0xff3b) ADVANCE(70); + if (lookahead == 0xff3d) ADVANCE(73); if (lookahead == '\t' || lookahead == '\f' || - lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); + lookahead == ' ') SKIP(0); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 1: - if (lookahead == '\n') SKIP(10) - if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '%') ADVANCE(124); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '(') ADVANCE(37); - if (lookahead == ')') ADVANCE(40); - if (lookahead == '*') ADVANCE(54); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(115); - if (lookahead == '.') ADVANCE(106); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(107); - if (lookahead == ']') ADVANCE(110); - if (lookahead == '|') ADVANCE(118); + if (lookahead == '\n') SKIP(8); + if (lookahead == '\r') SKIP(1); + if (lookahead == '!') ADVANCE(74); + if (lookahead == '%') ADVANCE(85); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(24); + if (lookahead == ')') ADVANCE(26); + if (lookahead == '*') ADVANCE(37); + if (lookahead == '+') ADVANCE(39); + if (lookahead == ',') ADVANCE(27); + if (lookahead == '-') ADVANCE(77); + if (lookahead == '.') ADVANCE(67); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '<') ADVANCE(81); + if (lookahead == '=') ADVANCE(23); + if (lookahead == '>') ADVANCE(40); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(68); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '|') ADVANCE(79); + if (lookahead == 0xff3b) ADVANCE(70); + if (lookahead == 0xff3d) ADVANCE(73); if (lookahead == '\t' || lookahead == '\f' || - lookahead == ' ') SKIP(1) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + lookahead == ' ') SKIP(1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); END_STATE(); case 2: - if (lookahead == '\n') SKIP(10) - if (lookahead == '\r') SKIP(2) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '%') ADVANCE(124); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '(') ADVANCE(37); - if (lookahead == ')') ADVANCE(40); - if (lookahead == '*') ADVANCE(54); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(115); - if (lookahead == '.') ADVANCE(106); - if (lookahead == '/') ADVANCE(123); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(107); - if (lookahead == ']') ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') SKIP(1) - if (lookahead == '|') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + ADVANCE_MAP( + '\n', 105, + '\r', 106, + '/', 107, + '\\', 12, + 0xff02, 103, + '\t', 106, + '\f', 106, + ' ', 106, + ); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(141); - if (lookahead == '\r') ADVANCE(143); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '/') ADVANCE(144); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(142); - if (lookahead != 0) ADVANCE(141); + ADVANCE_MAP( + '\n', 99, + '\r', 100, + '"', 98, + '/', 101, + '\\', 12, + '\t', 100, + '\f', 100, + ' ', 100, + ); + if (lookahead != 0) ADVANCE(99); END_STATE(); case 4: - if (lookahead == '\n') SKIP(11) - if (lookahead == '\r') SKIP(5) - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '@') ADVANCE(88); + if (lookahead == '\n') SKIP(9); + if (lookahead == '\r') SKIP(4); + if (lookahead == '"') ADVANCE(98); + if (lookahead == '#') ADVANCE(62); + if (lookahead == '/') ADVANCE(56); + if (lookahead == '@') ADVANCE(65); + if (lookahead == 0xff02) ADVANCE(104); if (lookahead == '\t' || lookahead == '\f' || - lookahead == ' ') ADVANCE(78); + lookahead == ' ') ADVANCE(55); if (lookahead != 0 && - lookahead != ',') ADVANCE(87); + lookahead != ',') ADVANCE(64); END_STATE(); case 5: - if (lookahead == '\n') SKIP(11) - if (lookahead == '\r') SKIP(5) - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') ADVANCE(78); - if (lookahead != 0 && - lookahead != ',') ADVANCE(87); + if (lookahead == '*') ADVANCE(7); + if (lookahead == '/') ADVANCE(20); END_STATE(); case 6: - if (lookahead == '*') ADVANCE(8); - if (lookahead == '/') ADVANCE(32); + if (lookahead == '*') ADVANCE(6); + if (lookahead == '/') ADVANCE(21); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 7: - if (lookahead == '*') ADVANCE(7); - if (lookahead == '/') ADVANCE(33); - if (lookahead != 0) ADVANCE(8); + if (lookahead == '*') ADVANCE(6); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '*') ADVANCE(7); - if (lookahead != 0) ADVANCE(8); + if (lookahead == '^') SKIP(1); + if (lookahead == '\t' || + lookahead == ' ') SKIP(8); END_STATE(); case 9: - if (lookahead == '+') ADVANCE(125); + if (lookahead == '^') SKIP(4); + if (lookahead == '\t' || + lookahead == ' ') SKIP(9); END_STATE(); case 10: - if (lookahead == '^') SKIP(1) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); END_STATE(); case 11: - if (lookahead == '^') SKIP(4) - END_STATE(); - case 12: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); - END_STATE(); - case 13: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 12: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(102); + END_STATE(); + case 13: + if (eof) ADVANCE(18); + if (lookahead == '\n') SKIP(16); + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(74); + if (lookahead == '"') ADVANCE(98); + if (lookahead == '#') ADVANCE(11); + if (lookahead == '(') ADVANCE(24); + if (lookahead == '*') ADVANCE(36); + if (lookahead == '+') ADVANCE(38); + if (lookahead == ',') ADVANCE(27); + if (lookahead == '-') ADVANCE(76); + if (lookahead == '/') ADVANCE(5); + if (lookahead == ':') ADVANCE(29); + if (lookahead == '=') ADVANCE(23); + if (lookahead == '>') ADVANCE(42); + if (lookahead == '?') ADVANCE(32); + if (lookahead == '[') ADVANCE(68); + if (lookahead == 0xff02) ADVANCE(103); + if (lookahead == 0xff3b) ADVANCE(70); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(13); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 14: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(145); + if (eof) ADVANCE(18); + if (lookahead == '\n') SKIP(17); + if (lookahead == '\r') SKIP(14); + if (lookahead == '!') ADVANCE(75); + if (lookahead == '"') ADVANCE(98); + if (lookahead == '#') ADVANCE(62); + if (lookahead == '(') ADVANCE(25); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(27); + if (lookahead == '-') ADVANCE(78); + if (lookahead == '/') ADVANCE(56); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '>') ADVANCE(43); + if (lookahead == '?') ADVANCE(33); + if (lookahead == '@') ADVANCE(65); + if (lookahead == '[') ADVANCE(69); + if (lookahead == 0xff02) ADVANCE(104); + if (lookahead == 0xff3b) ADVANCE(71); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(60); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 15: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(24) - if (lookahead == '\r') SKIP(15) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '%') ADVANCE(124); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '(') ADVANCE(37); - if (lookahead == ')') ADVANCE(40); - if (lookahead == '*') ADVANCE(54); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(115); - if (lookahead == '.') ADVANCE(106); - if (lookahead == '/') ADVANCE(123); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(58); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(107); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == ']') ADVANCE(110); + if (eof) ADVANCE(18); + if (lookahead == '^') SKIP(0); if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') SKIP(0) - if (lookahead == '|') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + lookahead == ' ') SKIP(15); END_STATE(); case 16: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(25) - if (lookahead == '\r') SKIP(17) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '(') ADVANCE(37); - if (lookahead == '*') ADVANCE(53); - if (lookahead == '+') ADVANCE(55); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '[') ADVANCE(107); + if (eof) ADVANCE(18); + if (lookahead == '^') SKIP(13); if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') SKIP(16) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + lookahead == ' ') SKIP(16); END_STATE(); case 17: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(25) - if (lookahead == '\r') SKIP(17) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '(') ADVANCE(37); - if (lookahead == '*') ADVANCE(53); - if (lookahead == '+') ADVANCE(55); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '[') ADVANCE(107); + if (eof) ADVANCE(18); + if (lookahead == '^') SKIP(14); if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') SKIP(16) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + lookahead == ' ') SKIP(17); END_STATE(); case 18: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(26) - if (lookahead == '\r') SKIP(19) - if (lookahead == '!') ADVANCE(112); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '(') ADVANCE(38); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '/') ADVANCE(79); - if (lookahead == ':') ADVANCE(44); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(108); - if (lookahead == '^') ADVANCE(93); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); - if (lookahead != 0) ADVANCE(87); - END_STATE(); - case 19: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(26) - if (lookahead == '\r') SKIP(19) - if (lookahead == '!') ADVANCE(112); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '(') ADVANCE(38); - if (lookahead == '+') ADVANCE(82); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '/') ADVANCE(79); - if (lookahead == ':') ADVANCE(44); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(108); - if (lookahead == '^') ADVANCE(90); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); - if (lookahead != 0) ADVANCE(87); - END_STATE(); - case 20: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(27) - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(140); - if (lookahead == '#') ADVANCE(102); - if (lookahead == '(') ADVANCE(39); - if (lookahead == '+') ADVANCE(99); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(96); - if (lookahead == ':') ADVANCE(45); - if (lookahead == '>') ADVANCE(61); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(109); - if (lookahead == '^') ADVANCE(94); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(103); - if (lookahead != 0) ADVANCE(104); - END_STATE(); - case 21: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(27) - if (lookahead == '\r') SKIP(21) - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(140); - if (lookahead == '#') ADVANCE(102); - if (lookahead == '(') ADVANCE(39); - if (lookahead == '+') ADVANCE(99); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(96); - if (lookahead == ':') ADVANCE(45); - if (lookahead == '>') ADVANCE(61); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(88); - if (lookahead == '[') ADVANCE(109); - if (lookahead == '^') ADVANCE(91); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(103); - if (lookahead != 0) ADVANCE(104); - END_STATE(); - case 22: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(28) - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '(') ADVANCE(37); - if (lookahead == '+') ADVANCE(9); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '[') ADVANCE(107); - if (lookahead == '^') ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') SKIP(22) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); - END_STATE(); - case 23: - if (eof) ADVANCE(29); - if (lookahead == '\n') SKIP(28) - if (lookahead == '\r') SKIP(23) - if (lookahead == '!') ADVANCE(111); - if (lookahead == '"') ADVANCE(139); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '(') ADVANCE(37); - if (lookahead == '+') ADVANCE(9); - if (lookahead == ',') ADVANCE(41); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(43); - if (lookahead == '>') ADVANCE(59); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '[') ADVANCE(107); - if (lookahead == '^') ADVANCE(92); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') SKIP(22) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); - END_STATE(); - case 24: - if (eof) ADVANCE(29); - if (lookahead == '^') SKIP(0) - END_STATE(); - case 25: - if (eof) ADVANCE(29); - if (lookahead == '^') SKIP(16) - END_STATE(); - case 26: - if (eof) ADVANCE(29); - if (lookahead == '^') SKIP(18) - END_STATE(); - case 27: - if (eof) ADVANCE(29); - if (lookahead == '^') SKIP(20) - END_STATE(); - case 28: - if (eof) ADVANCE(29); - if (lookahead == '^') SKIP(22) - END_STATE(); - case 29: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 30: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r' || - lookahead == '@') ADVANCE(32); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(30); - END_STATE(); - case 31: + case 19: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r' || lookahead == '"' || lookahead == ',' || - lookahead == '@') ADVANCE(32); + lookahead == '@') ADVANCE(20); if (lookahead != 0 && - lookahead != '\n') ADVANCE(31); + lookahead != '\n') ADVANCE(19); END_STATE(); - case 32: + case 20: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(32); + lookahead != '\n') ADVANCE(20); END_STATE(); - case 33: + case 21: ACCEPT_TOKEN(sym_block_comment); END_STATE(); - case 34: + case 22: ACCEPT_TOKEN(sym_block_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 35: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 36: + case 23: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 37: + case 24: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 38: + case 25: ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 40: + case 26: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 41: + case 27: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 42: + case 28: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 43: + case 29: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '?') ADVANCE(50); + if (lookahead == '?') ADVANCE(34); END_STATE(); - case 44: + case 30: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '?') ADVANCE(51); + if (lookahead == '?') ADVANCE(35); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '?' && + lookahead != '@') ADVANCE(64); END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '?') ADVANCE(52); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 46: + case 31: ACCEPT_TOKEN(sym_module_path); if (('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + END_STATE(); + case 32: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 33: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); + END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); + case 35: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 37: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(92); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(86); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(86); + if (lookahead == '=') ADVANCE(90); + END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(83); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '`') ADVANCE(48); + if (lookahead == 'c') ADVANCE(50); + if (lookahead == 'f') ADVANCE(52); + if (lookahead == 'h') ADVANCE(46); + if (lookahead == 'o') ADVANCE(44); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '`') ADVANCE(48); + if (lookahead == 'c') ADVANCE(50); + if (lookahead == 'f') ADVANCE(52); + if (lookahead == 'h') ADVANCE(46); + if (lookahead == 'o') ADVANCE(44); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '`') ADVANCE(49); + if (lookahead == 'c') ADVANCE(51); + if (lookahead == 'f') ADVANCE(53); + if (lookahead == 'h') ADVANCE(47); + if (lookahead == 'o') ADVANCE(45); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); + END_STATE(); + case 44: + ACCEPT_TOKEN(anon_sym_GTo); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_GTo); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); + END_STATE(); + case 46: + ACCEPT_TOKEN(anon_sym_GTh); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GTh); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); + ACCEPT_TOKEN(anon_sym_GT_BQUOTE); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT_BQUOTE); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '@') ADVANCE(104); + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + ACCEPT_TOKEN(anon_sym_GTc); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + ACCEPT_TOKEN(anon_sym_GTc); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_GTf); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_GTf); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(133); + ACCEPT_TOKEN(sym_print_text); + ADVANCE_MAP( + '!', 75, + '#', 62, + '(', 25, + '+', 59, + '-', 78, + '/', 56, + ':', 30, + '>', 43, + '?', 33, + '[', 69, + 0xff02, 104, + 0xff3b, 71, + '\t', 54, + '\f', 54, + ' ', 54, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(60); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\f' && + lookahead != '\r' && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '+' || '-' < lookahead) && + (lookahead < '>' || '[' < lookahead)) ADVANCE(64); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(125); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '#') ADVANCE(62); + if (lookahead == '/') ADVANCE(56); + if (lookahead == 0xff02) ADVANCE(104); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') ADVANCE(55); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\f' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '#' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(125); - if (lookahead == '=') ADVANCE(131); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '/') ADVANCE(19); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(122); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '*') ADVANCE(57); + if (lookahead == '/') ADVANCE(22); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '"' || + lookahead == ',' || + lookahead == '@') ADVANCE(7); + if (lookahead != 0) ADVANCE(58); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(122); - if (lookahead == '`') ADVANCE(68); - if (lookahead == 'c') ADVANCE(71); - if (lookahead == 'f') ADVANCE(74); - if (lookahead == 'h') ADVANCE(65); - if (lookahead == 'o') ADVANCE(62); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '*') ADVANCE(57); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '"' || + lookahead == ',' || + lookahead == '@') ADVANCE(7); + if (lookahead != 0) ADVANCE(58); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '`') ADVANCE(68); - if (lookahead == 'c') ADVANCE(71); - if (lookahead == 'f') ADVANCE(74); - if (lookahead == 'h') ADVANCE(65); - if (lookahead == 'o') ADVANCE(62); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '+') ADVANCE(87); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '+' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '`') ADVANCE(69); - if (lookahead == 'c') ADVANCE(72); - if (lookahead == 'f') ADVANCE(75); - if (lookahead == 'h') ADVANCE(66); - if (lookahead == 'o') ADVANCE(63); + ACCEPT_TOKEN(sym_print_text); + if (lookahead == '.') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(60); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '`') ADVANCE(70); - if (lookahead == 'c') ADVANCE(73); - if (lookahead == 'f') ADVANCE(76); - if (lookahead == 'h') ADVANCE(67); - if (lookahead == 'o') ADVANCE(64); + ACCEPT_TOKEN(sym_print_text); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(61); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '@') ADVANCE(104); + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_GTo); + ACCEPT_TOKEN(sym_print_text); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != ',' && + (lookahead < '@' || 'Z' < lookahead)) ADVANCE(64); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_GTo); + ACCEPT_TOKEN(sym_print_text); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + (lookahead < '@' || 'Z' < lookahead)) ADVANCE(64); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_GTo); + ACCEPT_TOKEN(sym_print_text); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '@') ADVANCE(104); + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_GTh); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_GTh); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_GTh); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_GT_BQUOTE); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_GT_BQUOTE); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_GT_BQUOTE); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_GTc); - END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_GTc); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_GTc); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_GTf); - END_STATE(); - case 75: - ACCEPT_TOKEN(anon_sym_GTf); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_GTf); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 77: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '!') ADVANCE(112); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '(') ADVANCE(38); - if (lookahead == '+') ADVANCE(82); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '/') ADVANCE(79); - if (lookahead == ':') ADVANCE(44); - if (lookahead == '>') ADVANCE(60); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(108); - if (lookahead == '^') ADVANCE(93); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 78: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(78); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 79: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '/') ADVANCE(31); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 80: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '/') ADVANCE(34); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '"' || - lookahead == ',' || - lookahead == '@') ADVANCE(8); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 81: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '"' || - lookahead == ',' || - lookahead == '@') ADVANCE(8); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '+') ADVANCE(126); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_print_text); - if (lookahead == '.') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_print_text); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 85: - ACCEPT_TOKEN(sym_print_text); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 86: - ACCEPT_TOKEN(sym_print_text); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 87: - ACCEPT_TOKEN(sym_print_text); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 88: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 89: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(93); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(77); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(94); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(95); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(89); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != ',' && - lookahead != '@') ADVANCE(87); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 95: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '!') ADVANCE(113); - if (lookahead == '"') ADVANCE(140); - if (lookahead == '#') ADVANCE(102); - if (lookahead == '(') ADVANCE(39); - if (lookahead == '+') ADVANCE(99); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '/') ADVANCE(96); - if (lookahead == ':') ADVANCE(45); - if (lookahead == '>') ADVANCE(61); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(109); - if (lookahead == '^') ADVANCE(94); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(103); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 96: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '/') ADVANCE(30); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 97: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '/') ADVANCE(35); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '@') ADVANCE(8); - if (lookahead != 0) ADVANCE(98); - END_STATE(); - case 98: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '@') ADVANCE(8); - if (lookahead != 0) ADVANCE(98); - END_STATE(); - case 99: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '+') ADVANCE(127); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 100: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead == '.') ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 101: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 102: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(102); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 103: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(103); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_print_continuation_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 105: + case 66: ACCEPT_TOKEN(sym_color_code); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 106: + case 67: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(42); + if (lookahead == '.') ADVANCE(28); END_STATE(); - case 107: + case 68: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 108: + case 69: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_LBRACK); + case 70: + ACCEPT_TOKEN(anon_sym_uff3b); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_uff3b); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '@') ADVANCE(104); + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); - case 110: + case 72: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 111: + case 73: + ACCEPT_TOKEN(anon_sym_uff3d); + END_STATE(); + case 74: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 112: + case 75: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 114: + case 76: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(128); + if (lookahead == '-') ADVANCE(88); END_STATE(); - case 115: + case 77: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(128); - if (lookahead == '=') ADVANCE(132); + if (lookahead == '-') ADVANCE(88); + if (lookahead == '=') ADVANCE(91); END_STATE(); - case 116: + case 78: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(129); + if (lookahead == '-') ADVANCE(89); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '-' && + lookahead != '@') ADVANCE(64); END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(130); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 118: + case 79: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 119: + case 80: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 120: + case 81: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(82); END_STATE(); - case 121: + case 82: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 122: + case 83: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 123: + case 84: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(8); - if (lookahead == '/') ADVANCE(32); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '*') ADVANCE(7); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '=') ADVANCE(93); END_STATE(); - case 124: + case 85: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 125: + case 86: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 126: + case 87: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 128: + case 88: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 129: + case 89: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != ',' && - lookahead != '@') ADVANCE(87); + lookahead != '@') ADVANCE(64); END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '@') ADVANCE(104); - END_STATE(); - case 131: + case 90: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 132: + case 91: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 133: + case 92: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 134: + case 93: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 135: + case 94: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); - case 136: + case 95: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); + if (lookahead == '.') ADVANCE(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); END_STATE(); - case 137: + case 96: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); END_STATE(); - case 138: + case 97: ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); END_STATE(); - case 139: + case 98: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_DQUOTE); + case 99: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 100: + ACCEPT_TOKEN(aux_sym_string_token1); + if (lookahead == '\n') ADVANCE(99); + if (lookahead == '\r') ADVANCE(100); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') ADVANCE(100); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(99); + END_STATE(); + case 101: + ACCEPT_TOKEN(aux_sym_string_token1); + if (lookahead == '*') ADVANCE(7); + if (lookahead == '/') ADVANCE(20); + END_STATE(); + case 102: + ACCEPT_TOKEN(aux_sym_string_token2); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_uff02); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_uff02); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '@') ADVANCE(104); + lookahead != '"' && + lookahead != ',' && + lookahead != '@') ADVANCE(64); END_STATE(); - case 141: - ACCEPT_TOKEN(aux_sym_string_token1); + case 105: + ACCEPT_TOKEN(aux_sym_string_token3); END_STATE(); - case 142: - ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '\n') ADVANCE(141); - if (lookahead == '\r') ADVANCE(143); - if (lookahead == '/') ADVANCE(144); + case 106: + ACCEPT_TOKEN(aux_sym_string_token3); + if (lookahead == '\n') ADVANCE(105); + if (lookahead == '\r') ADVANCE(106); + if (lookahead == '/') ADVANCE(107); if (lookahead == '\t' || lookahead == '\f' || - lookahead == ' ') ADVANCE(142); + lookahead == ' ') ADVANCE(106); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(141); + lookahead != '\\' && + lookahead != 0xff02) ADVANCE(105); END_STATE(); - case 143: - ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '\n') ADVANCE(141); - if (lookahead == '\r') ADVANCE(143); - if (lookahead == '/') ADVANCE(144); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') ADVANCE(142); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(141); - END_STATE(); - case 144: - ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(8); - if (lookahead == '/') ADVANCE(32); - END_STATE(); - case 145: - ACCEPT_TOKEN(aux_sym_string_token2); + case 107: + ACCEPT_TOKEN(aux_sym_string_token3); + if (lookahead == '*') ADVANCE(7); + if (lookahead == '/') ADVANCE(20); END_STATE(); default: return false; @@ -2454,8 +2168,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == '\n') SKIP(1) - if (lookahead == '\r') SKIP(2) + if (lookahead == '\n') SKIP(1); + if (lookahead == '\r') SKIP(0); + if (lookahead == 'a') ADVANCE(2); if (lookahead == 'b') ADVANCE(3); if (lookahead == 'c') ADVANCE(4); if (lookahead == 'f') ADVANCE(5); @@ -2466,172 +2181,183 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(10); if (lookahead == '\t' || lookahead == '\f' || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(0); END_STATE(); case 1: - if (lookahead == '^') SKIP(0) + if (lookahead == '^') SKIP(0); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1); END_STATE(); case 2: - if (lookahead == '\n') SKIP(1) - if (lookahead == '\r') SKIP(2) - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == '^') SKIP(0) - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'f') ADVANCE(5); - if (lookahead == 'i') ADVANCE(6); - if (lookahead == 'n') ADVANCE(7); - if (lookahead == 'r') ADVANCE(8); - if (lookahead == 't') ADVANCE(9); - if (lookahead == 'v') ADVANCE(10); + if (lookahead == 's') ADVANCE(11); END_STATE(); case 3: - if (lookahead == 'r') ADVANCE(11); + if (lookahead == 'r') ADVANCE(12); END_STATE(); case 4: - if (lookahead == 'o') ADVANCE(12); + if (lookahead == 'o') ADVANCE(13); END_STATE(); case 5: - if (lookahead == 'a') ADVANCE(13); - if (lookahead == 'o') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); + if (lookahead == 'a') ADVANCE(14); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'u') ADVANCE(16); END_STATE(); case 6: - if (lookahead == 'm') ADVANCE(16); + if (lookahead == 'm') ADVANCE(17); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); + if (lookahead == 'e') ADVANCE(18); + if (lookahead == 'u') ADVANCE(19); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(19); + if (lookahead == 'e') ADVANCE(20); END_STATE(); case 9: - if (lookahead == 'r') ADVANCE(20); + if (lookahead == 'r') ADVANCE(21); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(21); + if (lookahead == 'a') ADVANCE(22); END_STATE(); case 11: - if (lookahead == 'e') ADVANCE(22); + if (lookahead == 'c') ADVANCE(23); END_STATE(); case 12: - if (lookahead == 'n') ADVANCE(23); + if (lookahead == 'e') ADVANCE(24); END_STATE(); case 13: - if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'n') ADVANCE(25); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(25); + if (lookahead == 'l') ADVANCE(26); END_STATE(); case 15: - if (lookahead == 'n') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 16: - if (lookahead == 'p') ADVANCE(27); + if (lookahead == 'n') ADVANCE(28); END_STATE(); case 17: - if (lookahead == 'w') ADVANCE(28); + if (lookahead == 'p') ADVANCE(29); END_STATE(); case 18: - if (lookahead == 'l') ADVANCE(29); + if (lookahead == 'w') ADVANCE(30); END_STATE(); case 19: - if (lookahead == 't') ADVANCE(30); + if (lookahead == 'l') ADVANCE(31); END_STATE(); case 20: - if (lookahead == 'u') ADVANCE(31); + if (lookahead == 't') ADVANCE(32); END_STATE(); case 21: - if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'u') ADVANCE(33); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'r') ADVANCE(34); END_STATE(); case 23: - if (lookahead == 't') ADVANCE(34); + if (lookahead == 'i') ADVANCE(35); END_STATE(); case 24: - if (lookahead == 's') ADVANCE(35); + if (lookahead == 'a') ADVANCE(36); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 't') ADVANCE(37); END_STATE(); case 26: - if (lookahead == 'c') ADVANCE(36); + if (lookahead == 's') ADVANCE(38); END_STATE(); case 27: - if (lookahead == 'o') ADVANCE(37); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'c') ADVANCE(39); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == 'o') ADVANCE(40); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(39); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(40); + if (lookahead == 'l') ADVANCE(41); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 33: - if (lookahead == 'k') ADVANCE(41); - END_STATE(); - case 34: - if (lookahead == 'i') ADVANCE(42); - END_STATE(); - case 35: if (lookahead == 'e') ADVANCE(43); END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 35: + if (lookahead == 'i') ADVANCE(44); + END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_func); + if (lookahead == 'k') ADVANCE(45); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(44); + if (lookahead == 'i') ADVANCE(46); END_STATE(); case 38: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'e') ADVANCE(47); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_func); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'r') ADVANCE(48); END_STATE(); case 41: - ACCEPT_TOKEN(sym_break_statement); + ACCEPT_TOKEN(sym_null); END_STATE(); case 42: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'r') ADVANCE(49); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(47); - END_STATE(); - case 45: - if (lookahead == 'n') ADVANCE(48); - END_STATE(); - case 46: - if (lookahead == 'u') ADVANCE(49); - END_STATE(); - case 47: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 49: + ACCEPT_TOKEN(anon_sym_ascii); if (lookahead == 'e') ADVANCE(50); END_STATE(); + case 45: + ACCEPT_TOKEN(sym_break_statement); + END_STATE(); + case 46: + if (lookahead == 'n') ADVANCE(51); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 48: + if (lookahead == 't') ADVANCE(52); + END_STATE(); + case 49: + if (lookahead == 'n') ADVANCE(53); + END_STATE(); case 50: + if (lookahead == 'n') ADVANCE(54); + END_STATE(); + case 51: + if (lookahead == 'u') ADVANCE(55); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 54: + if (lookahead == 'd') ADVANCE(56); + END_STATE(); + case 55: + if (lookahead == 'e') ADVANCE(57); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_asciiend); + END_STATE(); + case 57: ACCEPT_TOKEN(sym_continue_statement); END_STATE(); default: @@ -2641,156 +2367,156 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 16}, - [2] = {.lex_state = 16, .external_lex_state = 2}, - [3] = {.lex_state = 16, .external_lex_state = 2}, - [4] = {.lex_state = 16, .external_lex_state = 2}, - [5] = {.lex_state = 16}, - [6] = {.lex_state = 16}, - [7] = {.lex_state = 16}, - [8] = {.lex_state = 16}, + [1] = {.lex_state = 13}, + [2] = {.lex_state = 13, .external_lex_state = 2}, + [3] = {.lex_state = 13}, + [4] = {.lex_state = 13}, + [5] = {.lex_state = 13, .external_lex_state = 2}, + [6] = {.lex_state = 13, .external_lex_state = 2}, + [7] = {.lex_state = 13}, + [8] = {.lex_state = 13}, [9] = {.lex_state = 0, .external_lex_state = 3}, [10] = {.lex_state = 0, .external_lex_state = 4}, [11] = {.lex_state = 0, .external_lex_state = 3}, - [12] = {.lex_state = 0, .external_lex_state = 3}, - [13] = {.lex_state = 0, .external_lex_state = 3}, - [14] = {.lex_state = 0, .external_lex_state = 3}, - [15] = {.lex_state = 0, .external_lex_state = 3}, - [16] = {.lex_state = 0, .external_lex_state = 3}, - [17] = {.lex_state = 0, .external_lex_state = 3}, - [18] = {.lex_state = 0, .external_lex_state = 3}, - [19] = {.lex_state = 0, .external_lex_state = 3}, - [20] = {.lex_state = 0, .external_lex_state = 3}, - [21] = {.lex_state = 0, .external_lex_state = 3}, - [22] = {.lex_state = 0, .external_lex_state = 3}, + [12] = {.lex_state = 0, .external_lex_state = 4}, + [13] = {.lex_state = 0, .external_lex_state = 4}, + [14] = {.lex_state = 0, .external_lex_state = 4}, + [15] = {.lex_state = 0, .external_lex_state = 4}, + [16] = {.lex_state = 0, .external_lex_state = 4}, + [17] = {.lex_state = 0, .external_lex_state = 4}, + [18] = {.lex_state = 0, .external_lex_state = 4}, + [19] = {.lex_state = 0, .external_lex_state = 4}, + [20] = {.lex_state = 0, .external_lex_state = 4}, + [21] = {.lex_state = 0, .external_lex_state = 4}, + [22] = {.lex_state = 0, .external_lex_state = 4}, [23] = {.lex_state = 0, .external_lex_state = 4}, - [24] = {.lex_state = 0, .external_lex_state = 3}, - [25] = {.lex_state = 0, .external_lex_state = 3}, + [24] = {.lex_state = 0, .external_lex_state = 4}, + [25] = {.lex_state = 0, .external_lex_state = 4}, [26] = {.lex_state = 0, .external_lex_state = 4}, - [27] = {.lex_state = 0, .external_lex_state = 3}, - [28] = {.lex_state = 0, .external_lex_state = 3}, - [29] = {.lex_state = 0, .external_lex_state = 3}, - [30] = {.lex_state = 0, .external_lex_state = 3}, - [31] = {.lex_state = 0, .external_lex_state = 3}, - [32] = {.lex_state = 0, .external_lex_state = 3}, - [33] = {.lex_state = 0, .external_lex_state = 3}, + [27] = {.lex_state = 0, .external_lex_state = 4}, + [28] = {.lex_state = 0, .external_lex_state = 4}, + [29] = {.lex_state = 0, .external_lex_state = 4}, + [30] = {.lex_state = 0, .external_lex_state = 4}, + [31] = {.lex_state = 0, .external_lex_state = 4}, + [32] = {.lex_state = 0, .external_lex_state = 4}, + [33] = {.lex_state = 0, .external_lex_state = 4}, [34] = {.lex_state = 0, .external_lex_state = 4}, [35] = {.lex_state = 0, .external_lex_state = 4}, - [36] = {.lex_state = 0, .external_lex_state = 3}, - [37] = {.lex_state = 0, .external_lex_state = 3}, - [38] = {.lex_state = 0, .external_lex_state = 3}, - [39] = {.lex_state = 0, .external_lex_state = 4}, + [36] = {.lex_state = 0, .external_lex_state = 4}, + [37] = {.lex_state = 0, .external_lex_state = 4}, + [38] = {.lex_state = 0, .external_lex_state = 4}, + [39] = {.lex_state = 0, .external_lex_state = 3}, [40] = {.lex_state = 0, .external_lex_state = 3}, [41] = {.lex_state = 0, .external_lex_state = 3}, - [42] = {.lex_state = 0, .external_lex_state = 4}, - [43] = {.lex_state = 0, .external_lex_state = 4}, - [44] = {.lex_state = 0, .external_lex_state = 4}, - [45] = {.lex_state = 0, .external_lex_state = 4}, - [46] = {.lex_state = 0, .external_lex_state = 4}, - [47] = {.lex_state = 0, .external_lex_state = 4}, - [48] = {.lex_state = 0, .external_lex_state = 4}, - [49] = {.lex_state = 0, .external_lex_state = 4}, - [50] = {.lex_state = 0, .external_lex_state = 4}, - [51] = {.lex_state = 0, .external_lex_state = 4}, - [52] = {.lex_state = 0, .external_lex_state = 4}, - [53] = {.lex_state = 0, .external_lex_state = 4}, - [54] = {.lex_state = 0, .external_lex_state = 4}, - [55] = {.lex_state = 0, .external_lex_state = 4}, - [56] = {.lex_state = 0, .external_lex_state = 4}, - [57] = {.lex_state = 0, .external_lex_state = 4}, - [58] = {.lex_state = 0, .external_lex_state = 4}, - [59] = {.lex_state = 0, .external_lex_state = 4}, - [60] = {.lex_state = 0, .external_lex_state = 4}, - [61] = {.lex_state = 0, .external_lex_state = 4}, - [62] = {.lex_state = 0, .external_lex_state = 4}, - [63] = {.lex_state = 16, .external_lex_state = 4}, - [64] = {.lex_state = 16, .external_lex_state = 3}, - [65] = {.lex_state = 18, .external_lex_state = 3}, - [66] = {.lex_state = 18, .external_lex_state = 4}, - [67] = {.lex_state = 18, .external_lex_state = 3}, - [68] = {.lex_state = 16, .external_lex_state = 4}, - [69] = {.lex_state = 16, .external_lex_state = 3}, - [70] = {.lex_state = 18, .external_lex_state = 4}, - [71] = {.lex_state = 16, .external_lex_state = 3}, - [72] = {.lex_state = 18, .external_lex_state = 3}, - [73] = {.lex_state = 18, .external_lex_state = 4}, - [74] = {.lex_state = 16, .external_lex_state = 4}, - [75] = {.lex_state = 20, .external_lex_state = 3}, - [76] = {.lex_state = 20, .external_lex_state = 4}, - [77] = {.lex_state = 20, .external_lex_state = 4}, - [78] = {.lex_state = 20, .external_lex_state = 4}, - [79] = {.lex_state = 20, .external_lex_state = 3}, - [80] = {.lex_state = 20, .external_lex_state = 3}, - [81] = {.lex_state = 18, .external_lex_state = 4}, - [82] = {.lex_state = 18, .external_lex_state = 3}, - [83] = {.lex_state = 18, .external_lex_state = 3}, - [84] = {.lex_state = 18, .external_lex_state = 4}, - [85] = {.lex_state = 18, .external_lex_state = 4}, - [86] = {.lex_state = 18, .external_lex_state = 3}, - [87] = {.lex_state = 20, .external_lex_state = 4}, - [88] = {.lex_state = 22, .external_lex_state = 3}, - [89] = {.lex_state = 20, .external_lex_state = 3}, - [90] = {.lex_state = 22, .external_lex_state = 3}, - [91] = {.lex_state = 22, .external_lex_state = 4}, - [92] = {.lex_state = 22, .external_lex_state = 4}, - [93] = {.lex_state = 22, .external_lex_state = 3}, - [94] = {.lex_state = 22, .external_lex_state = 4}, - [95] = {.lex_state = 22, .external_lex_state = 4}, - [96] = {.lex_state = 22, .external_lex_state = 4}, - [97] = {.lex_state = 22, .external_lex_state = 3}, - [98] = {.lex_state = 22, .external_lex_state = 4}, - [99] = {.lex_state = 22, .external_lex_state = 4}, - [100] = {.lex_state = 22, .external_lex_state = 3}, - [101] = {.lex_state = 22, .external_lex_state = 3}, - [102] = {.lex_state = 22, .external_lex_state = 3}, - [103] = {.lex_state = 16, .external_lex_state = 3}, - [104] = {.lex_state = 16, .external_lex_state = 3}, - [105] = {.lex_state = 16, .external_lex_state = 4}, - [106] = {.lex_state = 22, .external_lex_state = 4}, - [107] = {.lex_state = 16, .external_lex_state = 4}, - [108] = {.lex_state = 16, .external_lex_state = 3}, - [109] = {.lex_state = 16, .external_lex_state = 3}, - [110] = {.lex_state = 22, .external_lex_state = 3}, - [111] = {.lex_state = 16, .external_lex_state = 4}, - [112] = {.lex_state = 16, .external_lex_state = 4}, - [113] = {.lex_state = 16, .external_lex_state = 3}, - [114] = {.lex_state = 16, .external_lex_state = 4}, - [115] = {.lex_state = 16, .external_lex_state = 3}, - [116] = {.lex_state = 16, .external_lex_state = 4}, - [117] = {.lex_state = 16, .external_lex_state = 4}, - [118] = {.lex_state = 16, .external_lex_state = 3}, - [119] = {.lex_state = 16, .external_lex_state = 3}, - [120] = {.lex_state = 16, .external_lex_state = 4}, - [121] = {.lex_state = 16, .external_lex_state = 3}, - [122] = {.lex_state = 16, .external_lex_state = 4}, - [123] = {.lex_state = 16, .external_lex_state = 4}, - [124] = {.lex_state = 16, .external_lex_state = 4}, - [125] = {.lex_state = 16, .external_lex_state = 4}, - [126] = {.lex_state = 16, .external_lex_state = 4}, - [127] = {.lex_state = 16, .external_lex_state = 3}, - [128] = {.lex_state = 16, .external_lex_state = 3}, - [129] = {.lex_state = 16, .external_lex_state = 3}, - [130] = {.lex_state = 16, .external_lex_state = 3}, - [131] = {.lex_state = 16, .external_lex_state = 3}, - [132] = {.lex_state = 16, .external_lex_state = 3}, - [133] = {.lex_state = 16, .external_lex_state = 4}, - [134] = {.lex_state = 16, .external_lex_state = 4}, - [135] = {.lex_state = 16, .external_lex_state = 3}, - [136] = {.lex_state = 16, .external_lex_state = 4}, - [137] = {.lex_state = 16, .external_lex_state = 2}, - [138] = {.lex_state = 16}, - [139] = {.lex_state = 16, .external_lex_state = 2}, - [140] = {.lex_state = 16}, - [141] = {.lex_state = 0}, - [142] = {.lex_state = 0}, - [143] = {.lex_state = 0}, - [144] = {.lex_state = 0}, - [145] = {.lex_state = 0}, - [146] = {.lex_state = 0}, - [147] = {.lex_state = 0}, + [42] = {.lex_state = 0, .external_lex_state = 3}, + [43] = {.lex_state = 0, .external_lex_state = 3}, + [44] = {.lex_state = 0, .external_lex_state = 3}, + [45] = {.lex_state = 0, .external_lex_state = 3}, + [46] = {.lex_state = 0, .external_lex_state = 3}, + [47] = {.lex_state = 0, .external_lex_state = 3}, + [48] = {.lex_state = 0, .external_lex_state = 3}, + [49] = {.lex_state = 0, .external_lex_state = 3}, + [50] = {.lex_state = 0, .external_lex_state = 3}, + [51] = {.lex_state = 0, .external_lex_state = 3}, + [52] = {.lex_state = 0, .external_lex_state = 3}, + [53] = {.lex_state = 0, .external_lex_state = 3}, + [54] = {.lex_state = 0, .external_lex_state = 3}, + [55] = {.lex_state = 0, .external_lex_state = 3}, + [56] = {.lex_state = 0, .external_lex_state = 3}, + [57] = {.lex_state = 0, .external_lex_state = 3}, + [58] = {.lex_state = 0, .external_lex_state = 3}, + [59] = {.lex_state = 0, .external_lex_state = 3}, + [60] = {.lex_state = 0, .external_lex_state = 3}, + [61] = {.lex_state = 0, .external_lex_state = 3}, + [62] = {.lex_state = 0, .external_lex_state = 3}, + [63] = {.lex_state = 0, .external_lex_state = 3}, + [64] = {.lex_state = 0, .external_lex_state = 3}, + [65] = {.lex_state = 0, .external_lex_state = 3}, + [66] = {.lex_state = 0, .external_lex_state = 4}, + [67] = {.lex_state = 0, .external_lex_state = 3}, + [68] = {.lex_state = 0, .external_lex_state = 3}, + [69] = {.lex_state = 0, .external_lex_state = 4}, + [70] = {.lex_state = 0, .external_lex_state = 4}, + [71] = {.lex_state = 13, .external_lex_state = 3}, + [72] = {.lex_state = 13, .external_lex_state = 4}, + [73] = {.lex_state = 13, .external_lex_state = 3}, + [74] = {.lex_state = 13, .external_lex_state = 3}, + [75] = {.lex_state = 14, .external_lex_state = 4}, + [76] = {.lex_state = 13, .external_lex_state = 4}, + [77] = {.lex_state = 14, .external_lex_state = 3}, + [78] = {.lex_state = 13, .external_lex_state = 4}, + [79] = {.lex_state = 14, .external_lex_state = 4}, + [80] = {.lex_state = 14, .external_lex_state = 3}, + [81] = {.lex_state = 14, .external_lex_state = 3}, + [82] = {.lex_state = 14, .external_lex_state = 4}, + [83] = {.lex_state = 14, .external_lex_state = 3}, + [84] = {.lex_state = 14, .external_lex_state = 4}, + [85] = {.lex_state = 14, .external_lex_state = 4}, + [86] = {.lex_state = 14, .external_lex_state = 4}, + [87] = {.lex_state = 14, .external_lex_state = 3}, + [88] = {.lex_state = 14, .external_lex_state = 3}, + [89] = {.lex_state = 13, .external_lex_state = 3}, + [90] = {.lex_state = 13, .external_lex_state = 4}, + [91] = {.lex_state = 13, .external_lex_state = 4}, + [92] = {.lex_state = 13, .external_lex_state = 3}, + [93] = {.lex_state = 13, .external_lex_state = 4}, + [94] = {.lex_state = 13, .external_lex_state = 4}, + [95] = {.lex_state = 13, .external_lex_state = 3}, + [96] = {.lex_state = 13, .external_lex_state = 4}, + [97] = {.lex_state = 13, .external_lex_state = 4}, + [98] = {.lex_state = 13, .external_lex_state = 3}, + [99] = {.lex_state = 13, .external_lex_state = 3}, + [100] = {.lex_state = 13, .external_lex_state = 3}, + [101] = {.lex_state = 13, .external_lex_state = 3}, + [102] = {.lex_state = 13, .external_lex_state = 4}, + [103] = {.lex_state = 0, .external_lex_state = 4}, + [104] = {.lex_state = 0, .external_lex_state = 4}, + [105] = {.lex_state = 13, .external_lex_state = 3}, + [106] = {.lex_state = 13, .external_lex_state = 3}, + [107] = {.lex_state = 0, .external_lex_state = 4}, + [108] = {.lex_state = 0, .external_lex_state = 4}, + [109] = {.lex_state = 13, .external_lex_state = 4}, + [110] = {.lex_state = 0, .external_lex_state = 4}, + [111] = {.lex_state = 0, .external_lex_state = 4}, + [112] = {.lex_state = 13, .external_lex_state = 4}, + [113] = {.lex_state = 0, .external_lex_state = 4}, + [114] = {.lex_state = 0, .external_lex_state = 4}, + [115] = {.lex_state = 0, .external_lex_state = 4}, + [116] = {.lex_state = 0, .external_lex_state = 4}, + [117] = {.lex_state = 13, .external_lex_state = 4}, + [118] = {.lex_state = 13, .external_lex_state = 3}, + [119] = {.lex_state = 13, .external_lex_state = 3}, + [120] = {.lex_state = 13, .external_lex_state = 3}, + [121] = {.lex_state = 13, .external_lex_state = 4}, + [122] = {.lex_state = 13, .external_lex_state = 3}, + [123] = {.lex_state = 13, .external_lex_state = 3}, + [124] = {.lex_state = 13, .external_lex_state = 3}, + [125] = {.lex_state = 13, .external_lex_state = 3}, + [126] = {.lex_state = 13, .external_lex_state = 4}, + [127] = {.lex_state = 0, .external_lex_state = 4}, + [128] = {.lex_state = 13, .external_lex_state = 4}, + [129] = {.lex_state = 13, .external_lex_state = 4}, + [130] = {.lex_state = 13, .external_lex_state = 4}, + [131] = {.lex_state = 13, .external_lex_state = 4}, + [132] = {.lex_state = 13, .external_lex_state = 4}, + [133] = {.lex_state = 13, .external_lex_state = 3}, + [134] = {.lex_state = 0, .external_lex_state = 4}, + [135] = {.lex_state = 13, .external_lex_state = 4}, + [136] = {.lex_state = 13, .external_lex_state = 3}, + [137] = {.lex_state = 13, .external_lex_state = 4}, + [138] = {.lex_state = 13, .external_lex_state = 4}, + [139] = {.lex_state = 13, .external_lex_state = 3}, + [140] = {.lex_state = 13, .external_lex_state = 3}, + [141] = {.lex_state = 13, .external_lex_state = 3}, + [142] = {.lex_state = 13, .external_lex_state = 4}, + [143] = {.lex_state = 13, .external_lex_state = 2}, + [144] = {.lex_state = 13, .external_lex_state = 2}, + [145] = {.lex_state = 13}, + [146] = {.lex_state = 13}, + [147] = {.lex_state = 0, .external_lex_state = 4}, [148] = {.lex_state = 0}, [149] = {.lex_state = 0}, - [150] = {.lex_state = 0}, + [150] = {.lex_state = 0, .external_lex_state = 4}, [151] = {.lex_state = 0}, [152] = {.lex_state = 0}, [153] = {.lex_state = 0}, @@ -2861,19 +2587,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [218] = {.lex_state = 0}, [219] = {.lex_state = 0}, [220] = {.lex_state = 0}, - [221] = {.lex_state = 1}, - [222] = {.lex_state = 1}, - [223] = {.lex_state = 1}, - [224] = {.lex_state = 1}, - [225] = {.lex_state = 1}, - [226] = {.lex_state = 1}, - [227] = {.lex_state = 1}, - [228] = {.lex_state = 1}, - [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 1}, - [232] = {.lex_state = 1}, - [233] = {.lex_state = 1}, + [221] = {.lex_state = 0}, + [222] = {.lex_state = 0}, + [223] = {.lex_state = 0}, + [224] = {.lex_state = 0}, + [225] = {.lex_state = 0}, + [226] = {.lex_state = 0}, + [227] = {.lex_state = 0}, + [228] = {.lex_state = 0}, + [229] = {.lex_state = 0}, + [230] = {.lex_state = 0}, + [231] = {.lex_state = 0}, + [232] = {.lex_state = 0}, + [233] = {.lex_state = 0}, [234] = {.lex_state = 1}, [235] = {.lex_state = 1}, [236] = {.lex_state = 1}, @@ -2886,162 +2612,244 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [243] = {.lex_state = 1}, [244] = {.lex_state = 1}, [245] = {.lex_state = 1}, - [246] = {.lex_state = 1, .external_lex_state = 5}, - [247] = {.lex_state = 1, .external_lex_state = 5}, - [248] = {.lex_state = 1, .external_lex_state = 5}, - [249] = {.lex_state = 1, .external_lex_state = 5}, - [250] = {.lex_state = 1, .external_lex_state = 5}, - [251] = {.lex_state = 1, .external_lex_state = 5}, - [252] = {.lex_state = 1, .external_lex_state = 5}, - [253] = {.lex_state = 1, .external_lex_state = 5}, + [246] = {.lex_state = 1}, + [247] = {.lex_state = 1}, + [248] = {.lex_state = 1}, + [249] = {.lex_state = 1}, + [250] = {.lex_state = 1}, + [251] = {.lex_state = 1}, + [252] = {.lex_state = 1}, + [253] = {.lex_state = 1}, [254] = {.lex_state = 1}, [255] = {.lex_state = 1}, - [256] = {.lex_state = 1, .external_lex_state = 5}, - [257] = {.lex_state = 1, .external_lex_state = 5}, - [258] = {.lex_state = 1, .external_lex_state = 5}, - [259] = {.lex_state = 1, .external_lex_state = 5}, - [260] = {.lex_state = 1, .external_lex_state = 5}, - [261] = {.lex_state = 1, .external_lex_state = 5}, - [262] = {.lex_state = 1, .external_lex_state = 5}, - [263] = {.lex_state = 1}, - [264] = {.lex_state = 1}, - [265] = {.lex_state = 1}, - [266] = {.lex_state = 1, .external_lex_state = 5}, - [267] = {.lex_state = 1, .external_lex_state = 5}, - [268] = {.lex_state = 1, .external_lex_state = 5}, - [269] = {.lex_state = 1, .external_lex_state = 5}, - [270] = {.lex_state = 1}, - [271] = {.lex_state = 1}, - [272] = {.lex_state = 1, .external_lex_state = 5}, - [273] = {.lex_state = 1, .external_lex_state = 5}, - [274] = {.lex_state = 1}, - [275] = {.lex_state = 1}, - [276] = {.lex_state = 1}, - [277] = {.lex_state = 1, .external_lex_state = 5}, - [278] = {.lex_state = 1, .external_lex_state = 5}, - [279] = {.lex_state = 1, .external_lex_state = 5}, - [280] = {.lex_state = 1, .external_lex_state = 5}, - [281] = {.lex_state = 1, .external_lex_state = 5}, - [282] = {.lex_state = 1, .external_lex_state = 5}, - [283] = {.lex_state = 1, .external_lex_state = 5}, - [284] = {.lex_state = 1, .external_lex_state = 5}, - [285] = {.lex_state = 1}, - [286] = {.lex_state = 1, .external_lex_state = 5}, - [287] = {.lex_state = 1, .external_lex_state = 5}, - [288] = {.lex_state = 1}, - [289] = {.lex_state = 1}, - [290] = {.lex_state = 1}, - [291] = {.lex_state = 1}, - [292] = {.lex_state = 1}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 4}, - [295] = {.lex_state = 4}, - [296] = {.lex_state = 3}, - [297] = {.lex_state = 3}, - [298] = {.lex_state = 0}, - [299] = {.lex_state = 3}, - [300] = {.lex_state = 3}, - [301] = {.lex_state = 3}, - [302] = {.lex_state = 3}, - [303] = {.lex_state = 3}, - [304] = {.lex_state = 3}, - [305] = {.lex_state = 3}, - [306] = {.lex_state = 3}, - [307] = {.lex_state = 3}, - [308] = {.lex_state = 3}, - [309] = {.lex_state = 3}, - [310] = {.lex_state = 3}, - [311] = {.lex_state = 3}, - [312] = {.lex_state = 3}, - [313] = {.lex_state = 0}, - [314] = {.lex_state = 3}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, - [319] = {.lex_state = 0}, - [320] = {.lex_state = 0}, - [321] = {.lex_state = 0}, - [322] = {.lex_state = 0, .external_lex_state = 5}, - [323] = {.lex_state = 0}, - [324] = {.lex_state = 0}, - [325] = {.lex_state = 0, .external_lex_state = 5}, - [326] = {.lex_state = 0, .external_lex_state = 5}, - [327] = {.lex_state = 0, .external_lex_state = 5}, - [328] = {.lex_state = 0, .external_lex_state = 5}, - [329] = {.lex_state = 0, .external_lex_state = 5}, - [330] = {.lex_state = 0}, - [331] = {.lex_state = 0}, - [332] = {.lex_state = 0}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 0}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 1}, - [339] = {.lex_state = 1}, - [340] = {.lex_state = 0}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, + [256] = {.lex_state = 1}, + [257] = {.lex_state = 1}, + [258] = {.lex_state = 1}, + [259] = {.lex_state = 1}, + [260] = {.lex_state = 1}, + [261] = {.lex_state = 1, .external_lex_state = 4}, + [262] = {.lex_state = 1, .external_lex_state = 4}, + [263] = {.lex_state = 1, .external_lex_state = 4}, + [264] = {.lex_state = 1, .external_lex_state = 4}, + [265] = {.lex_state = 1, .external_lex_state = 4}, + [266] = {.lex_state = 1, .external_lex_state = 4}, + [267] = {.lex_state = 1, .external_lex_state = 4}, + [268] = {.lex_state = 1, .external_lex_state = 4}, + [269] = {.lex_state = 1, .external_lex_state = 4}, + [270] = {.lex_state = 1, .external_lex_state = 4}, + [271] = {.lex_state = 1, .external_lex_state = 4}, + [272] = {.lex_state = 1, .external_lex_state = 4}, + [273] = {.lex_state = 1, .external_lex_state = 4}, + [274] = {.lex_state = 1, .external_lex_state = 4}, + [275] = {.lex_state = 1, .external_lex_state = 4}, + [276] = {.lex_state = 1, .external_lex_state = 4}, + [277] = {.lex_state = 1, .external_lex_state = 4}, + [278] = {.lex_state = 1, .external_lex_state = 4}, + [279] = {.lex_state = 1, .external_lex_state = 4}, + [280] = {.lex_state = 1, .external_lex_state = 4}, + [281] = {.lex_state = 1}, + [282] = {.lex_state = 1, .external_lex_state = 4}, + [283] = {.lex_state = 1, .external_lex_state = 4}, + [284] = {.lex_state = 1, .external_lex_state = 4}, + [285] = {.lex_state = 1, .external_lex_state = 4}, + [286] = {.lex_state = 1, .external_lex_state = 4}, + [287] = {.lex_state = 1, .external_lex_state = 4}, + [288] = {.lex_state = 1, .external_lex_state = 4}, + [289] = {.lex_state = 1, .external_lex_state = 4}, + [290] = {.lex_state = 1, .external_lex_state = 4}, + [291] = {.lex_state = 1, .external_lex_state = 4}, + [292] = {.lex_state = 1, .external_lex_state = 4}, + [293] = {.lex_state = 1, .external_lex_state = 4}, + [294] = {.lex_state = 1, .external_lex_state = 4}, + [295] = {.lex_state = 1, .external_lex_state = 4}, + [296] = {.lex_state = 1, .external_lex_state = 4}, + [297] = {.lex_state = 1}, + [298] = {.lex_state = 1, .external_lex_state = 5}, + [299] = {.lex_state = 1}, + [300] = {.lex_state = 1, .external_lex_state = 5}, + [301] = {.lex_state = 1, .external_lex_state = 5}, + [302] = {.lex_state = 1}, + [303] = {.lex_state = 1, .external_lex_state = 5}, + [304] = {.lex_state = 1, .external_lex_state = 5}, + [305] = {.lex_state = 1, .external_lex_state = 5}, + [306] = {.lex_state = 1}, + [307] = {.lex_state = 1, .external_lex_state = 5}, + [308] = {.lex_state = 1}, + [309] = {.lex_state = 1, .external_lex_state = 5}, + [310] = {.lex_state = 1}, + [311] = {.lex_state = 1, .external_lex_state = 5}, + [312] = {.lex_state = 1}, + [313] = {.lex_state = 1, .external_lex_state = 5}, + [314] = {.lex_state = 1}, + [315] = {.lex_state = 1, .external_lex_state = 5}, + [316] = {.lex_state = 1}, + [317] = {.lex_state = 1, .external_lex_state = 5}, + [318] = {.lex_state = 1, .external_lex_state = 5}, + [319] = {.lex_state = 1, .external_lex_state = 5}, + [320] = {.lex_state = 1, .external_lex_state = 5}, + [321] = {.lex_state = 1}, + [322] = {.lex_state = 1, .external_lex_state = 5}, + [323] = {.lex_state = 1, .external_lex_state = 5}, + [324] = {.lex_state = 1}, + [325] = {.lex_state = 1, .external_lex_state = 5}, + [326] = {.lex_state = 1}, + [327] = {.lex_state = 1, .external_lex_state = 5}, + [328] = {.lex_state = 1, .external_lex_state = 5}, + [329] = {.lex_state = 1, .external_lex_state = 5}, + [330] = {.lex_state = 1, .external_lex_state = 5}, + [331] = {.lex_state = 1, .external_lex_state = 5}, + [332] = {.lex_state = 1, .external_lex_state = 5}, + [333] = {.lex_state = 1, .external_lex_state = 5}, + [334] = {.lex_state = 1}, + [335] = {.lex_state = 1, .external_lex_state = 5}, + [336] = {.lex_state = 1, .external_lex_state = 5}, + [337] = {.lex_state = 1, .external_lex_state = 5}, + [338] = {.lex_state = 1, .external_lex_state = 5}, + [339] = {.lex_state = 1, .external_lex_state = 5}, + [340] = {.lex_state = 1}, + [341] = {.lex_state = 1, .external_lex_state = 5}, + [342] = {.lex_state = 1, .external_lex_state = 5}, + [343] = {.lex_state = 1, .external_lex_state = 5}, [344] = {.lex_state = 1}, - [345] = {.lex_state = 1}, - [346] = {.lex_state = 0}, - [347] = {.lex_state = 1}, + [345] = {.lex_state = 1, .external_lex_state = 5}, + [346] = {.lex_state = 1, .external_lex_state = 5}, + [347] = {.lex_state = 0, .external_lex_state = 4}, [348] = {.lex_state = 0}, - [349] = {.lex_state = 1}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 1}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 1}, - [356] = {.lex_state = 1}, - [357] = {.lex_state = 1}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 0}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, + [349] = {.lex_state = 4}, + [350] = {.lex_state = 4}, + [351] = {.lex_state = 0, .external_lex_state = 4}, + [352] = {.lex_state = 0, .external_lex_state = 4}, + [353] = {.lex_state = 2}, + [354] = {.lex_state = 2}, + [355] = {.lex_state = 3}, + [356] = {.lex_state = 0, .external_lex_state = 4}, + [357] = {.lex_state = 0, .external_lex_state = 4}, + [358] = {.lex_state = 2}, + [359] = {.lex_state = 0, .external_lex_state = 4}, + [360] = {.lex_state = 0, .external_lex_state = 4}, + [361] = {.lex_state = 3}, + [362] = {.lex_state = 2}, [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, -}; - -enum { - ts_external_token__newline = 0, - ts_external_token__indent = 1, - ts_external_token__dedent = 2, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__newline] = sym__newline, - [ts_external_token__indent] = sym__indent, - [ts_external_token__dedent] = sym__dedent, -}; - -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token__dedent] = true, - }, - [2] = { - [ts_external_token__dedent] = true, - }, - [3] = { - [ts_external_token__newline] = true, - [ts_external_token__dedent] = true, - }, - [4] = { - [ts_external_token__newline] = true, - }, - [5] = { - [ts_external_token__indent] = true, - }, + [364] = {.lex_state = 0, .external_lex_state = 4}, + [365] = {.lex_state = 3}, + [366] = {.lex_state = 2}, + [367] = {.lex_state = 0, .external_lex_state = 4}, + [368] = {.lex_state = 0, .external_lex_state = 4}, + [369] = {.lex_state = 3}, + [370] = {.lex_state = 0, .external_lex_state = 4}, + [371] = {.lex_state = 3}, + [372] = {.lex_state = 2}, + [373] = {.lex_state = 0, .external_lex_state = 4}, + [374] = {.lex_state = 2}, + [375] = {.lex_state = 3}, + [376] = {.lex_state = 2}, + [377] = {.lex_state = 0, .external_lex_state = 4}, + [378] = {.lex_state = 0, .external_lex_state = 4}, + [379] = {.lex_state = 0, .external_lex_state = 4}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 0, .external_lex_state = 4}, + [383] = {.lex_state = 3}, + [384] = {.lex_state = 3}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0, .external_lex_state = 4}, + [387] = {.lex_state = 0, .external_lex_state = 4}, + [388] = {.lex_state = 0, .external_lex_state = 4}, + [389] = {.lex_state = 3}, + [390] = {.lex_state = 2}, + [391] = {.lex_state = 3}, + [392] = {.lex_state = 2}, + [393] = {.lex_state = 3}, + [394] = {.lex_state = 2}, + [395] = {.lex_state = 3}, + [396] = {.lex_state = 2}, + [397] = {.lex_state = 3}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 3}, + [400] = {.lex_state = 2}, + [401] = {.lex_state = 3}, + [402] = {.lex_state = 2}, + [403] = {.lex_state = 3}, + [404] = {.lex_state = 2}, + [405] = {.lex_state = 0, .external_lex_state = 4}, + [406] = {.lex_state = 2}, + [407] = {.lex_state = 0, .external_lex_state = 4}, + [408] = {.lex_state = 3}, + [409] = {.lex_state = 2}, + [410] = {.lex_state = 0, .external_lex_state = 4}, + [411] = {.lex_state = 0, .external_lex_state = 4}, + [412] = {.lex_state = 2}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 0}, + [416] = {.lex_state = 0}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 0, .external_lex_state = 5}, + [419] = {.lex_state = 0, .external_lex_state = 5}, + [420] = {.lex_state = 0, .external_lex_state = 5}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 0, .external_lex_state = 5}, + [423] = {.lex_state = 0, .external_lex_state = 5}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 0}, + [426] = {.lex_state = 0, .external_lex_state = 5}, + [427] = {.lex_state = 0, .external_lex_state = 6}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 1}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 0}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0}, + [437] = {.lex_state = 1}, + [438] = {.lex_state = 0}, + [439] = {.lex_state = 1}, + [440] = {.lex_state = 1}, + [441] = {.lex_state = 0}, + [442] = {.lex_state = 0, .external_lex_state = 6}, + [443] = {.lex_state = 0}, + [444] = {.lex_state = 0}, + [445] = {.lex_state = 0}, + [446] = {.lex_state = 0}, + [447] = {.lex_state = 1}, + [448] = {.lex_state = 0, .external_lex_state = 6}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 1}, + [452] = {.lex_state = 1}, + [453] = {.lex_state = 1}, + [454] = {.lex_state = 0}, + [455] = {.lex_state = 0}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 0}, + [458] = {.lex_state = 0, .external_lex_state = 6}, + [459] = {.lex_state = 1}, + [460] = {.lex_state = 0}, + [461] = {.lex_state = 1}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 0}, + [464] = {.lex_state = 0}, + [465] = {.lex_state = 0}, + [466] = {.lex_state = 0, .external_lex_state = 6}, + [467] = {.lex_state = 0}, + [468] = {.lex_state = 0}, + [469] = {.lex_state = 0}, + [470] = {.lex_state = 0}, + [471] = {.lex_state = 0, .external_lex_state = 6}, + [472] = {.lex_state = 0}, + [473] = {.lex_state = 0, .external_lex_state = 6}, + [474] = {.lex_state = 0, .external_lex_state = 6}, + [475] = {.lex_state = 0, .external_lex_state = 6}, + [476] = {.lex_state = 0}, + [477] = {.lex_state = 0}, + [478] = {.lex_state = 1}, + [479] = {.lex_state = 0, .external_lex_state = 6}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_comment] = ACTIONS(3), @@ -3074,7 +2882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_code] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_uff3b] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_uff3d] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), @@ -3094,40 +2904,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_string_token2] = ACTIONS(1), + [anon_sym_uff02] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [sym_null] = ACTIONS(1), + [anon_sym_ascii] = ACTIONS(1), + [anon_sym_asciiend] = ACTIONS(1), [sym__newline] = ACTIONS(1), [sym__indent] = ACTIONS(1), [sym__dedent] = ACTIONS(1), + [sym_ascii_content] = ACTIONS(1), }, - [1] = { - [sym_source_file] = STATE(358), - [sym__statement] = STATE(5), - [sym_variable_declaration] = STATE(120), - [sym_function_declaration] = STATE(120), - [sym_for_loop] = STATE(120), - [sym_import_statement] = STATE(120), - [sym_new_statement] = STATE(26), - [sym_return_statement] = STATE(120), - [sym_conditional] = STATE(120), - [sym_else_clause] = STATE(120), - [sym_command] = STATE(122), - [sym_print_command] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym__expression] = STATE(26), - [sym_member_expression] = STATE(26), - [sym_call_expression] = STATE(26), - [sym_index_expression] = STATE(26), - [sym_unary_expression] = STATE(26), - [sym_binary_expression] = STATE(26), - [sym_update_expression] = STATE(26), - [sym_assignment_expression] = STATE(26), - [sym_parenthesized_expression] = STATE(26), - [sym_array] = STATE(26), - [sym_string] = STATE(26), - [sym_boolean] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(5), + [STATE(1)] = { + [sym_source_file] = STATE(470), + [sym__statement] = STATE(4), + [sym_variable_declaration] = STATE(117), + [sym_function_declaration] = STATE(117), + [sym_for_loop] = STATE(117), + [sym_import_statement] = STATE(117), + [sym_new_statement] = STATE(18), + [sym_return_statement] = STATE(117), + [sym_conditional] = STATE(117), + [sym_else_clause] = STATE(117), + [sym_command] = STATE(138), + [sym_print_command] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym__expression] = STATE(18), + [sym_member_expression] = STATE(18), + [sym_call_expression] = STATE(18), + [sym_index_expression] = STATE(18), + [sym_unary_expression] = STATE(18), + [sym_binary_expression] = STATE(18), + [sym_update_expression] = STATE(18), + [sym_assignment_expression] = STATE(18), + [sym_parenthesized_expression] = STATE(18), + [sym_array] = STATE(18), + [sym_string] = STATE(18), + [sym_boolean] = STATE(18), + [sym_ascii_string] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(4), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(9), @@ -3152,6 +2967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GTf] = ACTIONS(35), [sym_color_code] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_uff3b] = ACTIONS(39), [anon_sym_BANG] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_PLUS] = ACTIONS(45), @@ -3159,220 +2975,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(47), [sym_float] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_true] = ACTIONS(51), - [anon_sym_false] = ACTIONS(51), + [anon_sym_uff02] = ACTIONS(51), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), [sym_null] = ACTIONS(47), + [anon_sym_ascii] = ACTIONS(55), }, - [2] = { - [sym__statement] = STATE(4), - [sym_variable_declaration] = STATE(132), - [sym_function_declaration] = STATE(132), - [sym_for_loop] = STATE(132), - [sym_import_statement] = STATE(132), - [sym_new_statement] = STATE(41), - [sym_return_statement] = STATE(132), - [sym_conditional] = STATE(132), - [sym_else_clause] = STATE(132), - [sym_command] = STATE(129), - [sym_print_command] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym__expression] = STATE(41), - [sym_member_expression] = STATE(41), - [sym_call_expression] = STATE(41), - [sym_index_expression] = STATE(41), - [sym_unary_expression] = STATE(41), - [sym_binary_expression] = STATE(41), - [sym_update_expression] = STATE(41), - [sym_assignment_expression] = STATE(41), - [sym_parenthesized_expression] = STATE(41), - [sym_array] = STATE(41), - [sym_string] = STATE(41), - [sym_boolean] = STATE(41), - [aux_sym_source_file_repeat1] = STATE(4), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_block_comment] = ACTIONS(55), - [anon_sym_var] = ACTIONS(57), - [anon_sym_func] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [sym_break_statement] = ACTIONS(73), - [sym_continue_statement] = ACTIONS(73), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_COLON_QMARK] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GTo] = ACTIONS(81), - [anon_sym_GTh] = ACTIONS(81), - [anon_sym_GT_BQUOTE] = ACTIONS(81), - [anon_sym_GTc] = ACTIONS(81), - [anon_sym_GTf] = ACTIONS(81), - [sym_color_code] = ACTIONS(83), - [anon_sym_LBRACK] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [sym_float] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_null] = ACTIONS(93), - [sym__dedent] = ACTIONS(99), + [STATE(2)] = { + [sym__statement] = STATE(2), + [sym_variable_declaration] = STATE(133), + [sym_function_declaration] = STATE(133), + [sym_for_loop] = STATE(133), + [sym_import_statement] = STATE(133), + [sym_new_statement] = STATE(39), + [sym_return_statement] = STATE(133), + [sym_conditional] = STATE(133), + [sym_else_clause] = STATE(133), + [sym_command] = STATE(136), + [sym_print_command] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym__expression] = STATE(39), + [sym_member_expression] = STATE(39), + [sym_call_expression] = STATE(39), + [sym_index_expression] = STATE(39), + [sym_unary_expression] = STATE(39), + [sym_binary_expression] = STATE(39), + [sym_update_expression] = STATE(39), + [sym_assignment_expression] = STATE(39), + [sym_parenthesized_expression] = STATE(39), + [sym_array] = STATE(39), + [sym_string] = STATE(39), + [sym_boolean] = STATE(39), + [sym_ascii_string] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(2), + [sym_identifier] = ACTIONS(57), + [sym_comment] = ACTIONS(60), + [sym_block_comment] = ACTIONS(60), + [anon_sym_var] = ACTIONS(63), + [anon_sym_func] = ACTIONS(66), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_for] = ACTIONS(72), + [anon_sym_COLON] = ACTIONS(75), + [anon_sym_import] = ACTIONS(78), + [anon_sym_new] = ACTIONS(81), + [anon_sym_return] = ACTIONS(84), + [sym_break_statement] = ACTIONS(87), + [sym_continue_statement] = ACTIONS(87), + [anon_sym_QMARK] = ACTIONS(90), + [anon_sym_COLON_QMARK] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(96), + [anon_sym_GTo] = ACTIONS(99), + [anon_sym_GTh] = ACTIONS(99), + [anon_sym_GT_BQUOTE] = ACTIONS(99), + [anon_sym_GTc] = ACTIONS(99), + [anon_sym_GTf] = ACTIONS(99), + [sym_color_code] = ACTIONS(102), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_uff3b] = ACTIONS(105), + [anon_sym_BANG] = ACTIONS(108), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(114), + [anon_sym_DASH_DASH] = ACTIONS(114), + [sym_number] = ACTIONS(117), + [sym_float] = ACTIONS(102), + [anon_sym_DQUOTE] = ACTIONS(120), + [anon_sym_uff02] = ACTIONS(123), + [anon_sym_true] = ACTIONS(126), + [anon_sym_false] = ACTIONS(126), + [sym_null] = ACTIONS(117), + [anon_sym_ascii] = ACTIONS(129), + [sym__dedent] = ACTIONS(132), }, - [3] = { - [sym__statement] = STATE(4), - [sym_variable_declaration] = STATE(132), - [sym_function_declaration] = STATE(132), - [sym_for_loop] = STATE(132), - [sym_import_statement] = STATE(132), - [sym_new_statement] = STATE(41), - [sym_return_statement] = STATE(132), - [sym_conditional] = STATE(132), - [sym_else_clause] = STATE(132), - [sym_command] = STATE(129), - [sym_print_command] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym__expression] = STATE(41), - [sym_member_expression] = STATE(41), - [sym_call_expression] = STATE(41), - [sym_index_expression] = STATE(41), - [sym_unary_expression] = STATE(41), - [sym_binary_expression] = STATE(41), - [sym_update_expression] = STATE(41), - [sym_assignment_expression] = STATE(41), - [sym_parenthesized_expression] = STATE(41), - [sym_array] = STATE(41), - [sym_string] = STATE(41), - [sym_boolean] = STATE(41), - [aux_sym_source_file_repeat1] = STATE(4), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_block_comment] = ACTIONS(55), - [anon_sym_var] = ACTIONS(57), - [anon_sym_func] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [sym_break_statement] = ACTIONS(73), - [sym_continue_statement] = ACTIONS(73), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_COLON_QMARK] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GTo] = ACTIONS(81), - [anon_sym_GTh] = ACTIONS(81), - [anon_sym_GT_BQUOTE] = ACTIONS(81), - [anon_sym_GTc] = ACTIONS(81), - [anon_sym_GTf] = ACTIONS(81), - [sym_color_code] = ACTIONS(83), - [anon_sym_LBRACK] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [sym_float] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_null] = ACTIONS(93), - [sym__dedent] = ACTIONS(101), + [STATE(3)] = { + [sym__statement] = STATE(3), + [sym_variable_declaration] = STATE(117), + [sym_function_declaration] = STATE(117), + [sym_for_loop] = STATE(117), + [sym_import_statement] = STATE(117), + [sym_new_statement] = STATE(18), + [sym_return_statement] = STATE(117), + [sym_conditional] = STATE(117), + [sym_else_clause] = STATE(117), + [sym_command] = STATE(138), + [sym_print_command] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym__expression] = STATE(18), + [sym_member_expression] = STATE(18), + [sym_call_expression] = STATE(18), + [sym_index_expression] = STATE(18), + [sym_unary_expression] = STATE(18), + [sym_binary_expression] = STATE(18), + [sym_update_expression] = STATE(18), + [sym_assignment_expression] = STATE(18), + [sym_parenthesized_expression] = STATE(18), + [sym_array] = STATE(18), + [sym_string] = STATE(18), + [sym_boolean] = STATE(18), + [sym_ascii_string] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(3), + [ts_builtin_sym_end] = ACTIONS(132), + [sym_identifier] = ACTIONS(134), + [sym_comment] = ACTIONS(137), + [sym_block_comment] = ACTIONS(137), + [anon_sym_var] = ACTIONS(140), + [anon_sym_func] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_for] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(152), + [anon_sym_import] = ACTIONS(155), + [anon_sym_new] = ACTIONS(158), + [anon_sym_return] = ACTIONS(161), + [sym_break_statement] = ACTIONS(164), + [sym_continue_statement] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(167), + [anon_sym_COLON_QMARK] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(173), + [anon_sym_GTo] = ACTIONS(176), + [anon_sym_GTh] = ACTIONS(176), + [anon_sym_GT_BQUOTE] = ACTIONS(176), + [anon_sym_GTc] = ACTIONS(176), + [anon_sym_GTf] = ACTIONS(176), + [sym_color_code] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(182), + [anon_sym_uff3b] = ACTIONS(182), + [anon_sym_BANG] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [sym_number] = ACTIONS(194), + [sym_float] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_uff02] = ACTIONS(200), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [sym_null] = ACTIONS(194), + [anon_sym_ascii] = ACTIONS(206), }, - [4] = { - [sym__statement] = STATE(4), - [sym_variable_declaration] = STATE(132), - [sym_function_declaration] = STATE(132), - [sym_for_loop] = STATE(132), - [sym_import_statement] = STATE(132), - [sym_new_statement] = STATE(41), - [sym_return_statement] = STATE(132), - [sym_conditional] = STATE(132), - [sym_else_clause] = STATE(132), - [sym_command] = STATE(129), - [sym_print_command] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym__expression] = STATE(41), - [sym_member_expression] = STATE(41), - [sym_call_expression] = STATE(41), - [sym_index_expression] = STATE(41), - [sym_unary_expression] = STATE(41), - [sym_binary_expression] = STATE(41), - [sym_update_expression] = STATE(41), - [sym_assignment_expression] = STATE(41), - [sym_parenthesized_expression] = STATE(41), - [sym_array] = STATE(41), - [sym_string] = STATE(41), - [sym_boolean] = STATE(41), - [aux_sym_source_file_repeat1] = STATE(4), - [sym_identifier] = ACTIONS(103), - [sym_comment] = ACTIONS(106), - [sym_block_comment] = ACTIONS(106), - [anon_sym_var] = ACTIONS(109), - [anon_sym_func] = ACTIONS(112), - [anon_sym_LPAREN] = ACTIONS(115), - [anon_sym_for] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_new] = ACTIONS(127), - [anon_sym_return] = ACTIONS(130), - [sym_break_statement] = ACTIONS(133), - [sym_continue_statement] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(136), - [anon_sym_COLON_QMARK] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(142), - [anon_sym_GTo] = ACTIONS(145), - [anon_sym_GTh] = ACTIONS(145), - [anon_sym_GT_BQUOTE] = ACTIONS(145), - [anon_sym_GTc] = ACTIONS(145), - [anon_sym_GTf] = ACTIONS(145), - [sym_color_code] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(160), - [anon_sym_DASH_DASH] = ACTIONS(160), - [sym_number] = ACTIONS(163), - [sym_float] = ACTIONS(148), - [anon_sym_DQUOTE] = ACTIONS(166), - [anon_sym_true] = ACTIONS(169), - [anon_sym_false] = ACTIONS(169), - [sym_null] = ACTIONS(163), - [sym__dedent] = ACTIONS(172), - }, - [5] = { - [sym__statement] = STATE(6), - [sym_variable_declaration] = STATE(120), - [sym_function_declaration] = STATE(120), - [sym_for_loop] = STATE(120), - [sym_import_statement] = STATE(120), - [sym_new_statement] = STATE(26), - [sym_return_statement] = STATE(120), - [sym_conditional] = STATE(120), - [sym_else_clause] = STATE(120), - [sym_command] = STATE(122), - [sym_print_command] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym__expression] = STATE(26), - [sym_member_expression] = STATE(26), - [sym_call_expression] = STATE(26), - [sym_index_expression] = STATE(26), - [sym_unary_expression] = STATE(26), - [sym_binary_expression] = STATE(26), - [sym_update_expression] = STATE(26), - [sym_assignment_expression] = STATE(26), - [sym_parenthesized_expression] = STATE(26), - [sym_array] = STATE(26), - [sym_string] = STATE(26), - [sym_boolean] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(174), + [STATE(4)] = { + [sym__statement] = STATE(3), + [sym_variable_declaration] = STATE(117), + [sym_function_declaration] = STATE(117), + [sym_for_loop] = STATE(117), + [sym_import_statement] = STATE(117), + [sym_new_statement] = STATE(18), + [sym_return_statement] = STATE(117), + [sym_conditional] = STATE(117), + [sym_else_clause] = STATE(117), + [sym_command] = STATE(138), + [sym_print_command] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym__expression] = STATE(18), + [sym_member_expression] = STATE(18), + [sym_call_expression] = STATE(18), + [sym_index_expression] = STATE(18), + [sym_unary_expression] = STATE(18), + [sym_binary_expression] = STATE(18), + [sym_update_expression] = STATE(18), + [sym_assignment_expression] = STATE(18), + [sym_parenthesized_expression] = STATE(18), + [sym_array] = STATE(18), + [sym_string] = STATE(18), + [sym_boolean] = STATE(18), + [sym_ascii_string] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(3), + [ts_builtin_sym_end] = ACTIONS(209), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(9), [sym_block_comment] = ACTIONS(9), @@ -3396,6 +3162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GTf] = ACTIONS(35), [sym_color_code] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_uff3b] = ACTIONS(39), [anon_sym_BANG] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(43), [anon_sym_PLUS_PLUS] = ACTIONS(45), @@ -3403,3357 +3170,4107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(47), [sym_float] = ACTIONS(37), [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_true] = ACTIONS(51), - [anon_sym_false] = ACTIONS(51), + [anon_sym_uff02] = ACTIONS(51), + [anon_sym_true] = ACTIONS(53), + [anon_sym_false] = ACTIONS(53), [sym_null] = ACTIONS(47), + [anon_sym_ascii] = ACTIONS(55), }, - [6] = { - [sym__statement] = STATE(6), - [sym_variable_declaration] = STATE(120), - [sym_function_declaration] = STATE(120), - [sym_for_loop] = STATE(120), - [sym_import_statement] = STATE(120), - [sym_new_statement] = STATE(26), - [sym_return_statement] = STATE(120), - [sym_conditional] = STATE(120), - [sym_else_clause] = STATE(120), - [sym_command] = STATE(122), - [sym_print_command] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym__expression] = STATE(26), - [sym_member_expression] = STATE(26), - [sym_call_expression] = STATE(26), - [sym_index_expression] = STATE(26), - [sym_unary_expression] = STATE(26), - [sym_binary_expression] = STATE(26), - [sym_update_expression] = STATE(26), - [sym_assignment_expression] = STATE(26), - [sym_parenthesized_expression] = STATE(26), - [sym_array] = STATE(26), - [sym_string] = STATE(26), - [sym_boolean] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(172), - [sym_identifier] = ACTIONS(176), - [sym_comment] = ACTIONS(179), - [sym_block_comment] = ACTIONS(179), - [anon_sym_var] = ACTIONS(182), - [anon_sym_func] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(188), - [anon_sym_for] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(194), - [anon_sym_import] = ACTIONS(197), - [anon_sym_new] = ACTIONS(200), - [anon_sym_return] = ACTIONS(203), - [sym_break_statement] = ACTIONS(206), - [sym_continue_statement] = ACTIONS(206), - [anon_sym_QMARK] = ACTIONS(209), - [anon_sym_COLON_QMARK] = ACTIONS(212), - [anon_sym_GT] = ACTIONS(215), - [anon_sym_GTo] = ACTIONS(218), - [anon_sym_GTh] = ACTIONS(218), - [anon_sym_GT_BQUOTE] = ACTIONS(218), - [anon_sym_GTc] = ACTIONS(218), - [anon_sym_GTf] = ACTIONS(218), - [sym_color_code] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(224), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(230), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [sym_number] = ACTIONS(236), - [sym_float] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(239), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [sym_null] = ACTIONS(236), - }, - [7] = { - [sym__statement] = STATE(3), - [sym_variable_declaration] = STATE(132), - [sym_function_declaration] = STATE(132), - [sym_for_loop] = STATE(132), - [sym_import_statement] = STATE(132), - [sym_new_statement] = STATE(41), - [sym_return_statement] = STATE(132), - [sym_conditional] = STATE(132), - [sym_else_clause] = STATE(132), - [sym_command] = STATE(129), - [sym_print_command] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym__expression] = STATE(41), - [sym_member_expression] = STATE(41), - [sym_call_expression] = STATE(41), - [sym_index_expression] = STATE(41), - [sym_unary_expression] = STATE(41), - [sym_binary_expression] = STATE(41), - [sym_update_expression] = STATE(41), - [sym_assignment_expression] = STATE(41), - [sym_parenthesized_expression] = STATE(41), - [sym_array] = STATE(41), - [sym_string] = STATE(41), - [sym_boolean] = STATE(41), - [aux_sym_source_file_repeat1] = STATE(3), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_block_comment] = ACTIONS(55), - [anon_sym_var] = ACTIONS(57), - [anon_sym_func] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [sym_break_statement] = ACTIONS(73), - [sym_continue_statement] = ACTIONS(73), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_COLON_QMARK] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GTo] = ACTIONS(81), - [anon_sym_GTh] = ACTIONS(81), - [anon_sym_GT_BQUOTE] = ACTIONS(81), - [anon_sym_GTc] = ACTIONS(81), - [anon_sym_GTf] = ACTIONS(81), - [sym_color_code] = ACTIONS(83), - [anon_sym_LBRACK] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [sym_float] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_null] = ACTIONS(93), - }, - [8] = { + [STATE(5)] = { [sym__statement] = STATE(2), - [sym_variable_declaration] = STATE(132), - [sym_function_declaration] = STATE(132), - [sym_for_loop] = STATE(132), - [sym_import_statement] = STATE(132), - [sym_new_statement] = STATE(41), - [sym_return_statement] = STATE(132), - [sym_conditional] = STATE(132), - [sym_else_clause] = STATE(132), - [sym_command] = STATE(129), - [sym_print_command] = STATE(132), - [sym_expression_statement] = STATE(132), - [sym__expression] = STATE(41), - [sym_member_expression] = STATE(41), - [sym_call_expression] = STATE(41), - [sym_index_expression] = STATE(41), - [sym_unary_expression] = STATE(41), - [sym_binary_expression] = STATE(41), - [sym_update_expression] = STATE(41), - [sym_assignment_expression] = STATE(41), - [sym_parenthesized_expression] = STATE(41), - [sym_array] = STATE(41), - [sym_string] = STATE(41), - [sym_boolean] = STATE(41), + [sym_variable_declaration] = STATE(133), + [sym_function_declaration] = STATE(133), + [sym_for_loop] = STATE(133), + [sym_import_statement] = STATE(133), + [sym_new_statement] = STATE(39), + [sym_return_statement] = STATE(133), + [sym_conditional] = STATE(133), + [sym_else_clause] = STATE(133), + [sym_command] = STATE(136), + [sym_print_command] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym__expression] = STATE(39), + [sym_member_expression] = STATE(39), + [sym_call_expression] = STATE(39), + [sym_index_expression] = STATE(39), + [sym_unary_expression] = STATE(39), + [sym_binary_expression] = STATE(39), + [sym_update_expression] = STATE(39), + [sym_assignment_expression] = STATE(39), + [sym_parenthesized_expression] = STATE(39), + [sym_array] = STATE(39), + [sym_string] = STATE(39), + [sym_boolean] = STATE(39), + [sym_ascii_string] = STATE(39), [aux_sym_source_file_repeat1] = STATE(2), - [sym_identifier] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_block_comment] = ACTIONS(55), - [anon_sym_var] = ACTIONS(57), - [anon_sym_func] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [sym_break_statement] = ACTIONS(73), - [sym_continue_statement] = ACTIONS(73), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_COLON_QMARK] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GTo] = ACTIONS(81), - [anon_sym_GTh] = ACTIONS(81), - [anon_sym_GT_BQUOTE] = ACTIONS(81), - [anon_sym_GTc] = ACTIONS(81), - [anon_sym_GTf] = ACTIONS(81), - [sym_color_code] = ACTIONS(83), - [anon_sym_LBRACK] = ACTIONS(85), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_PLUS_PLUS] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(91), - [sym_number] = ACTIONS(93), - [sym_float] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(95), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_null] = ACTIONS(93), + [sym_identifier] = ACTIONS(211), + [sym_comment] = ACTIONS(213), + [sym_block_comment] = ACTIONS(213), + [anon_sym_var] = ACTIONS(215), + [anon_sym_func] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_for] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_import] = ACTIONS(225), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return] = ACTIONS(229), + [sym_break_statement] = ACTIONS(231), + [sym_continue_statement] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(237), + [anon_sym_GTo] = ACTIONS(239), + [anon_sym_GTh] = ACTIONS(239), + [anon_sym_GT_BQUOTE] = ACTIONS(239), + [anon_sym_GTc] = ACTIONS(239), + [anon_sym_GTf] = ACTIONS(239), + [sym_color_code] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_uff3b] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [sym_number] = ACTIONS(251), + [sym_float] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_uff02] = ACTIONS(255), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_null] = ACTIONS(251), + [anon_sym_ascii] = ACTIONS(259), + [sym__dedent] = ACTIONS(261), + }, + [STATE(6)] = { + [sym__statement] = STATE(2), + [sym_variable_declaration] = STATE(133), + [sym_function_declaration] = STATE(133), + [sym_for_loop] = STATE(133), + [sym_import_statement] = STATE(133), + [sym_new_statement] = STATE(39), + [sym_return_statement] = STATE(133), + [sym_conditional] = STATE(133), + [sym_else_clause] = STATE(133), + [sym_command] = STATE(136), + [sym_print_command] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym__expression] = STATE(39), + [sym_member_expression] = STATE(39), + [sym_call_expression] = STATE(39), + [sym_index_expression] = STATE(39), + [sym_unary_expression] = STATE(39), + [sym_binary_expression] = STATE(39), + [sym_update_expression] = STATE(39), + [sym_assignment_expression] = STATE(39), + [sym_parenthesized_expression] = STATE(39), + [sym_array] = STATE(39), + [sym_string] = STATE(39), + [sym_boolean] = STATE(39), + [sym_ascii_string] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(2), + [sym_identifier] = ACTIONS(211), + [sym_comment] = ACTIONS(213), + [sym_block_comment] = ACTIONS(213), + [anon_sym_var] = ACTIONS(215), + [anon_sym_func] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_for] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_import] = ACTIONS(225), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return] = ACTIONS(229), + [sym_break_statement] = ACTIONS(231), + [sym_continue_statement] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(237), + [anon_sym_GTo] = ACTIONS(239), + [anon_sym_GTh] = ACTIONS(239), + [anon_sym_GT_BQUOTE] = ACTIONS(239), + [anon_sym_GTc] = ACTIONS(239), + [anon_sym_GTf] = ACTIONS(239), + [sym_color_code] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_uff3b] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [sym_number] = ACTIONS(251), + [sym_float] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_uff02] = ACTIONS(255), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_null] = ACTIONS(251), + [anon_sym_ascii] = ACTIONS(259), + [sym__dedent] = ACTIONS(263), + }, + [STATE(7)] = { + [sym__statement] = STATE(5), + [sym_variable_declaration] = STATE(133), + [sym_function_declaration] = STATE(133), + [sym_for_loop] = STATE(133), + [sym_import_statement] = STATE(133), + [sym_new_statement] = STATE(39), + [sym_return_statement] = STATE(133), + [sym_conditional] = STATE(133), + [sym_else_clause] = STATE(133), + [sym_command] = STATE(136), + [sym_print_command] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym__expression] = STATE(39), + [sym_member_expression] = STATE(39), + [sym_call_expression] = STATE(39), + [sym_index_expression] = STATE(39), + [sym_unary_expression] = STATE(39), + [sym_binary_expression] = STATE(39), + [sym_update_expression] = STATE(39), + [sym_assignment_expression] = STATE(39), + [sym_parenthesized_expression] = STATE(39), + [sym_array] = STATE(39), + [sym_string] = STATE(39), + [sym_boolean] = STATE(39), + [sym_ascii_string] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(211), + [sym_comment] = ACTIONS(213), + [sym_block_comment] = ACTIONS(213), + [anon_sym_var] = ACTIONS(215), + [anon_sym_func] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_for] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_import] = ACTIONS(225), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return] = ACTIONS(229), + [sym_break_statement] = ACTIONS(231), + [sym_continue_statement] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(237), + [anon_sym_GTo] = ACTIONS(239), + [anon_sym_GTh] = ACTIONS(239), + [anon_sym_GT_BQUOTE] = ACTIONS(239), + [anon_sym_GTc] = ACTIONS(239), + [anon_sym_GTf] = ACTIONS(239), + [sym_color_code] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_uff3b] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [sym_number] = ACTIONS(251), + [sym_float] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_uff02] = ACTIONS(255), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_null] = ACTIONS(251), + [anon_sym_ascii] = ACTIONS(259), + }, + [STATE(8)] = { + [sym__statement] = STATE(6), + [sym_variable_declaration] = STATE(133), + [sym_function_declaration] = STATE(133), + [sym_for_loop] = STATE(133), + [sym_import_statement] = STATE(133), + [sym_new_statement] = STATE(39), + [sym_return_statement] = STATE(133), + [sym_conditional] = STATE(133), + [sym_else_clause] = STATE(133), + [sym_command] = STATE(136), + [sym_print_command] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym__expression] = STATE(39), + [sym_member_expression] = STATE(39), + [sym_call_expression] = STATE(39), + [sym_index_expression] = STATE(39), + [sym_unary_expression] = STATE(39), + [sym_binary_expression] = STATE(39), + [sym_update_expression] = STATE(39), + [sym_assignment_expression] = STATE(39), + [sym_parenthesized_expression] = STATE(39), + [sym_array] = STATE(39), + [sym_string] = STATE(39), + [sym_boolean] = STATE(39), + [sym_ascii_string] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(211), + [sym_comment] = ACTIONS(213), + [sym_block_comment] = ACTIONS(213), + [anon_sym_var] = ACTIONS(215), + [anon_sym_func] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_for] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_import] = ACTIONS(225), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return] = ACTIONS(229), + [sym_break_statement] = ACTIONS(231), + [sym_continue_statement] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(233), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(237), + [anon_sym_GTo] = ACTIONS(239), + [anon_sym_GTh] = ACTIONS(239), + [anon_sym_GT_BQUOTE] = ACTIONS(239), + [anon_sym_GTc] = ACTIONS(239), + [anon_sym_GTf] = ACTIONS(239), + [sym_color_code] = ACTIONS(241), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_uff3b] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [sym_number] = ACTIONS(251), + [sym_float] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_uff02] = ACTIONS(255), + [anon_sym_true] = ACTIONS(257), + [anon_sym_false] = ACTIONS(257), + [sym_null] = ACTIONS(251), + [anon_sym_ascii] = ACTIONS(259), + }, + [STATE(9)] = { + [sym__command_arg] = STATE(74), + [sym_star_level] = STATE(74), + [sym_enchantment_level] = STATE(74), + [sym_string] = STATE(74), + [aux_sym_command_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(265), + [sym_comment] = ACTIONS(268), + [sym_block_comment] = ACTIONS(268), + [anon_sym_var] = ACTIONS(270), + [anon_sym_EQ] = ACTIONS(268), + [anon_sym_func] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(268), + [anon_sym_for] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_import] = ACTIONS(270), + [anon_sym_new] = ACTIONS(270), + [anon_sym_return] = ACTIONS(270), + [sym_break_statement] = ACTIONS(270), + [sym_continue_statement] = ACTIONS(270), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_COLON_QMARK] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_GTo] = ACTIONS(268), + [anon_sym_GTh] = ACTIONS(268), + [anon_sym_GT_BQUOTE] = ACTIONS(268), + [anon_sym_GTc] = ACTIONS(268), + [anon_sym_GTf] = ACTIONS(268), + [sym_color_code] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_uff3b] = ACTIONS(268), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_PLUS_PLUS] = ACTIONS(268), + [anon_sym_DASH_DASH] = ACTIONS(268), + [anon_sym_PLUS_EQ] = ACTIONS(268), + [anon_sym_DASH_EQ] = ACTIONS(268), + [anon_sym_STAR_EQ] = ACTIONS(268), + [anon_sym_SLASH_EQ] = ACTIONS(268), + [sym_number] = ACTIONS(265), + [sym_float] = ACTIONS(268), + [anon_sym_DQUOTE] = ACTIONS(278), + [anon_sym_uff02] = ACTIONS(281), + [anon_sym_true] = ACTIONS(270), + [anon_sym_false] = ACTIONS(270), + [sym_null] = ACTIONS(270), + [anon_sym_ascii] = ACTIONS(270), + [sym__newline] = ACTIONS(268), + [sym__dedent] = ACTIONS(268), + }, + [STATE(10)] = { + [sym__command_arg] = STATE(78), + [sym_star_level] = STATE(78), + [sym_enchantment_level] = STATE(78), + [sym_string] = STATE(78), + [aux_sym_command_repeat1] = STATE(78), + [ts_builtin_sym_end] = ACTIONS(268), + [sym_identifier] = ACTIONS(284), + [sym_comment] = ACTIONS(268), + [sym_block_comment] = ACTIONS(268), + [anon_sym_var] = ACTIONS(270), + [anon_sym_EQ] = ACTIONS(268), + [anon_sym_func] = ACTIONS(270), + [anon_sym_LPAREN] = ACTIONS(268), + [anon_sym_for] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(270), + [anon_sym_import] = ACTIONS(270), + [anon_sym_new] = ACTIONS(270), + [anon_sym_return] = ACTIONS(270), + [sym_break_statement] = ACTIONS(270), + [sym_continue_statement] = ACTIONS(270), + [anon_sym_QMARK] = ACTIONS(268), + [anon_sym_COLON_QMARK] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(290), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_GTo] = ACTIONS(268), + [anon_sym_GTh] = ACTIONS(268), + [anon_sym_GT_BQUOTE] = ACTIONS(268), + [anon_sym_GTc] = ACTIONS(268), + [anon_sym_GTf] = ACTIONS(268), + [sym_color_code] = ACTIONS(268), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_uff3b] = ACTIONS(268), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(270), + [anon_sym_PIPE] = ACTIONS(268), + [anon_sym_AMP] = ACTIONS(268), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_SLASH] = ACTIONS(270), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_PLUS_PLUS] = ACTIONS(268), + [anon_sym_DASH_DASH] = ACTIONS(268), + [anon_sym_PLUS_EQ] = ACTIONS(268), + [anon_sym_DASH_EQ] = ACTIONS(268), + [anon_sym_STAR_EQ] = ACTIONS(268), + [anon_sym_SLASH_EQ] = ACTIONS(268), + [sym_number] = ACTIONS(284), + [sym_float] = ACTIONS(268), + [anon_sym_DQUOTE] = ACTIONS(293), + [anon_sym_uff02] = ACTIONS(296), + [anon_sym_true] = ACTIONS(270), + [anon_sym_false] = ACTIONS(270), + [sym_null] = ACTIONS(270), + [anon_sym_ascii] = ACTIONS(270), + [sym__newline] = ACTIONS(268), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(252), 1, + [0] = 2, + ACTIONS(299), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(301), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [58] = 6, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(305), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(303), 26, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [124] = 6, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(317), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(315), 26, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [190] = 2, + ACTIONS(321), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(319), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [248] = 2, + ACTIONS(317), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(315), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [306] = 2, + ACTIONS(325), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(323), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [364] = 2, + ACTIONS(329), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(327), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [422] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(345), 1, + anon_sym_PIPE, + ACTIONS(347), 1, + anon_sym_AMP, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(353), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(331), 15, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(333), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [508] = 2, + ACTIONS(357), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(355), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [566] = 2, + ACTIONS(361), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(359), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [624] = 2, + ACTIONS(365), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(363), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [682] = 11, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 23, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [758] = 2, + ACTIONS(373), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(371), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [816] = 7, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [884] = 8, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(369), 19, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [954] = 9, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(369), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_LT, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1026] = 2, + ACTIONS(377), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(375), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1084] = 11, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 23, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1160] = 14, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(347), 1, + anon_sym_AMP, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(379), 1, + anon_sym_EQ, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 20, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1242] = 13, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(379), 1, + anon_sym_EQ, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1322] = 6, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 26, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1388] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(345), 1, + anon_sym_PIPE, + ACTIONS(347), 1, + anon_sym_AMP, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(353), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(382), 15, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(384), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [1474] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(345), 1, + anon_sym_PIPE, + ACTIONS(347), 1, + anon_sym_AMP, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(353), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(386), 15, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(388), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [1560] = 2, + ACTIONS(392), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(390), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1618] = 2, + ACTIONS(396), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(394), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1676] = 2, + ACTIONS(400), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(398), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1734] = 2, + ACTIONS(404), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(402), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1792] = 2, + ACTIONS(299), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(301), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [1850] = 16, + ACTIONS(406), 1, + anon_sym_EQ, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(422), 1, + anon_sym_PIPE, + ACTIONS(424), 1, + anon_sym_AMP, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(432), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(331), 15, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(333), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [1936] = 16, + ACTIONS(406), 1, + anon_sym_EQ, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(422), 1, + anon_sym_PIPE, + ACTIONS(424), 1, + anon_sym_AMP, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(432), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(434), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(436), 15, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2022] = 16, + ACTIONS(406), 1, + anon_sym_EQ, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(422), 1, + anon_sym_PIPE, + ACTIONS(424), 1, + anon_sym_AMP, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(432), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(386), 15, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(388), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [2108] = 2, + ACTIONS(365), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(363), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2166] = 2, + ACTIONS(325), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(323), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2224] = 2, + ACTIONS(438), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(440), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2282] = 2, + ACTIONS(442), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(444), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2340] = 6, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(305), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(303), 26, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2406] = 6, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(317), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(315), 26, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2472] = 2, + ACTIONS(317), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(315), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2530] = 2, + ACTIONS(329), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(327), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2588] = 2, + ACTIONS(357), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(355), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2646] = 11, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 23, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2722] = 2, + ACTIONS(373), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(371), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2780] = 7, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2848] = 8, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 19, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2918] = 9, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_LT, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 25, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [2990] = 2, + ACTIONS(377), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(375), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3048] = 11, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 23, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3124] = 14, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(424), 1, + anon_sym_AMP, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(446), 1, + anon_sym_EQ, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 20, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3206] = 13, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(446), 1, + anon_sym_EQ, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3286] = 6, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(367), 26, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3352] = 16, + ACTIONS(406), 1, + anon_sym_EQ, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(416), 1, + anon_sym_DOT, + ACTIONS(420), 1, + anon_sym_BANG, + ACTIONS(422), 1, + anon_sym_PIPE, + ACTIONS(424), 1, + anon_sym_AMP, + ACTIONS(428), 1, + anon_sym_PERCENT, + ACTIONS(410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(414), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(426), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(430), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(432), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(382), 15, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + ACTIONS(384), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [3438] = 2, + ACTIONS(392), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(390), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3496] = 2, + ACTIONS(396), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(394), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3554] = 2, + ACTIONS(400), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(398), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3612] = 2, + ACTIONS(404), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(402), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3670] = 2, + ACTIONS(438), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(440), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3728] = 2, + ACTIONS(321), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(319), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3786] = 2, + ACTIONS(361), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(359), 32, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3844] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_BANG, + ACTIONS(345), 1, + anon_sym_PIPE, + ACTIONS(347), 1, + anon_sym_AMP, + ACTIONS(351), 1, + anon_sym_PERCENT, + ACTIONS(311), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(313), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(339), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(349), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(353), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(434), 15, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(436), 15, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3930] = 2, + ACTIONS(442), 21, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(444), 32, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [3988] = 15, + ACTIONS(219), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_new, + ACTIONS(245), 1, + anon_sym_BANG, + ACTIONS(247), 1, + anon_sym_DASH, + ACTIONS(253), 1, + anon_sym_DQUOTE, ACTIONS(255), 1, - anon_sym_PLUS, - ACTIONS(258), 1, - anon_sym_DQUOTE, - ACTIONS(245), 2, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(257), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(455), 2, + sym_color_code, + sym_float, + ACTIONS(449), 3, sym_identifier, sym_number, - STATE(69), 5, - sym__command_arg, - sym_star_level, - sym_enchantment_level, + sym_null, + ACTIONS(453), 9, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + ACTIONS(451), 11, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + STATE(40), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, sym_string, - aux_sym_command_repeat1, - ACTIONS(250), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(248), 29, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - [70] = 7, - ACTIONS(264), 1, - anon_sym_STAR, - ACTIONS(267), 1, - anon_sym_PLUS, - ACTIONS(270), 1, - anon_sym_DQUOTE, - ACTIONS(261), 2, - sym_identifier, - sym_number, - STATE(74), 5, - sym__command_arg, - sym_star_level, - sym_enchantment_level, - sym_string, - aux_sym_command_repeat1, - ACTIONS(250), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(248), 29, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - [140] = 2, - ACTIONS(273), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(275), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [195] = 13, - ACTIONS(281), 1, - anon_sym_EQ, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 20, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [272] = 2, - ACTIONS(304), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(306), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [327] = 2, - ACTIONS(308), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(310), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [382] = 2, - ACTIONS(312), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(314), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [437] = 2, - ACTIONS(316), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(318), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [492] = 16, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(324), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_PIPE, - ACTIONS(328), 1, - anon_sym_AMP, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(320), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(322), 14, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - [575] = 6, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 25, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [638] = 14, - ACTIONS(281), 1, - anon_sym_EQ, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(328), 1, - anon_sym_AMP, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [717] = 11, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 22, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [790] = 9, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_LT, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [859] = 8, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 18, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [926] = 2, - ACTIONS(334), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(332), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [981] = 7, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1046] = 2, - ACTIONS(336), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(338), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1101] = 16, - ACTIONS(344), 1, - anon_sym_EQ, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(360), 1, - anon_sym_PIPE, - ACTIONS(362), 1, - anon_sym_AMP, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(370), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(340), 14, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - ACTIONS(342), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - [1184] = 11, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 22, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1257] = 2, - ACTIONS(372), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(374), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1312] = 2, - ACTIONS(376), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(378), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1367] = 2, - ACTIONS(380), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(382), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1422] = 6, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(380), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(382), 25, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1485] = 6, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(384), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(386), 25, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1548] = 2, - ACTIONS(388), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(390), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1603] = 2, - ACTIONS(394), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(392), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1658] = 16, - ACTIONS(344), 1, - anon_sym_EQ, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(360), 1, - anon_sym_PIPE, - ACTIONS(362), 1, - anon_sym_AMP, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(370), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(396), 14, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - ACTIONS(398), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - [1741] = 2, - ACTIONS(394), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(392), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1796] = 2, - ACTIONS(334), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(332), 30, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [1851] = 16, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(324), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_PIPE, - ACTIONS(328), 1, - anon_sym_AMP, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(400), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(402), 14, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - [1934] = 14, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(362), 1, - anon_sym_AMP, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(404), 1, - anon_sym_EQ, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2013] = 16, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(324), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_PIPE, - ACTIONS(328), 1, - anon_sym_AMP, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(396), 14, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - ACTIONS(398), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - [2096] = 16, - ACTIONS(284), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_DOT, - ACTIONS(294), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_BANG, - ACTIONS(300), 1, - anon_sym_PERCENT, - ACTIONS(324), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_PIPE, - ACTIONS(328), 1, - anon_sym_AMP, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(298), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(330), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(340), 14, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - ACTIONS(342), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - [2179] = 2, - ACTIONS(312), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(314), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2234] = 2, - ACTIONS(316), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(318), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2289] = 2, - ACTIONS(388), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(390), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2344] = 16, - ACTIONS(344), 1, - anon_sym_EQ, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(360), 1, - anon_sym_PIPE, - ACTIONS(362), 1, - anon_sym_AMP, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(370), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(400), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(402), 14, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - [2427] = 16, - ACTIONS(344), 1, - anon_sym_EQ, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(360), 1, - anon_sym_PIPE, - ACTIONS(362), 1, - anon_sym_AMP, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(370), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(320), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(322), 14, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - sym_float, - anon_sym_DQUOTE, - [2510] = 6, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(384), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(386), 25, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2573] = 6, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(380), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(382), 25, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2636] = 6, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 25, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2699] = 13, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(358), 1, - anon_sym_BANG, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(404), 1, - anon_sym_EQ, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 20, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2776] = 11, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 22, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2849] = 2, - ACTIONS(308), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(310), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2904] = 2, - ACTIONS(273), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(275), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [2959] = 9, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_LT, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3028] = 8, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 18, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3095] = 7, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 24, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3160] = 2, - ACTIONS(336), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(338), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3215] = 11, - ACTIONS(346), 1, - anon_sym_LPAREN, - ACTIONS(354), 1, - anon_sym_DOT, - ACTIONS(356), 1, - anon_sym_LBRACK, - ACTIONS(366), 1, - anon_sym_PERCENT, - ACTIONS(348), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(352), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(368), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(279), 22, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3288] = 2, - ACTIONS(304), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(306), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3343] = 2, - ACTIONS(372), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(374), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3398] = 2, - ACTIONS(376), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(378), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3453] = 2, - ACTIONS(380), 20, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(382), 30, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - sym_float, - anon_sym_DQUOTE, - [3508] = 13, + sym_boolean, + sym_ascii_string, + [4071] = 15, ACTIONS(15), 1, anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, ACTIONS(41), 1, anon_sym_BANG, ACTIONS(43), 1, anon_sym_DASH, ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - ACTIONS(413), 2, + ACTIONS(459), 2, sym_color_code, sym_float, - ACTIONS(409), 3, + ACTIONS(457), 3, sym_identifier, sym_number, sym_null, - ACTIONS(411), 9, + ACTIONS(453), 9, anon_sym_var, anon_sym_func, anon_sym_for, @@ -6763,7 +7280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_break_statement, sym_continue_statement, anon_sym_GT, - ACTIONS(407), 11, + ACTIONS(451), 11, sym__newline, ts_builtin_sym_end, sym_comment, @@ -6775,7 +7292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - STATE(35), 13, + STATE(69), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -6789,295 +7306,26 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [3583] = 13, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, - anon_sym_BANG, - ACTIONS(89), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(417), 2, - sym_color_code, - sym_float, - ACTIONS(415), 3, - sym_identifier, - sym_number, - sym_null, - ACTIONS(411), 9, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - ACTIONS(407), 11, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - STATE(40), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [3658] = 10, - ACTIONS(423), 1, - anon_sym_AT, - ACTIONS(425), 1, - anon_sym_CARET, - ACTIONS(427), 1, - anon_sym_DQUOTE, - STATE(97), 1, - sym_print_args, - STATE(100), 1, - sym_print_argument, - ACTIONS(421), 2, - sym_print_text, - sym_color_code, - ACTIONS(429), 2, - sym__newline, - sym__dedent, - STATE(102), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - STATE(67), 3, - sym_interpolation, - sym_string, - aux_sym_print_argument_repeat1, - ACTIONS(419), 31, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_true, - anon_sym_false, - sym_null, - [3724] = 10, - ACTIONS(433), 1, - anon_sym_AT, - ACTIONS(435), 1, - anon_sym_CARET, - ACTIONS(437), 1, - anon_sym_DQUOTE, - STATE(92), 1, - sym_print_args, - STATE(94), 1, - sym_print_argument, - ACTIONS(429), 2, - sym__newline, - ts_builtin_sym_end, - ACTIONS(431), 2, - sym_print_text, - sym_color_code, - STATE(91), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - STATE(70), 3, - sym_interpolation, - sym_string, - aux_sym_print_argument_repeat1, - ACTIONS(419), 31, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_true, - anon_sym_false, - sym_null, - [3790] = 5, - ACTIONS(423), 1, - anon_sym_AT, - ACTIONS(441), 1, - sym_print_text, - ACTIONS(443), 2, - sym__newline, - sym__dedent, - STATE(72), 3, - sym_interpolation, - sym_string, - aux_sym_print_argument_repeat1, - ACTIONS(439), 35, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [3843] = 7, - ACTIONS(452), 1, + sym_ascii_string, + [4154] = 8, + ACTIONS(468), 1, anon_sym_STAR, - ACTIONS(455), 1, - anon_sym_PLUS, - ACTIONS(458), 1, - anon_sym_DQUOTE, - ACTIONS(447), 2, - sym_identifier, - sym_number, - STATE(68), 5, - sym__command_arg, - sym_star_level, - sym_enchantment_level, - sym_string, - aux_sym_command_repeat1, - ACTIONS(450), 14, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(445), 18, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - [3900] = 7, - ACTIONS(467), 1, - anon_sym_STAR, - ACTIONS(469), 1, - anon_sym_PLUS, ACTIONS(471), 1, + anon_sym_PLUS, + ACTIONS(474), 1, anon_sym_DQUOTE, + ACTIONS(477), 1, + anon_sym_uff02, ACTIONS(461), 2, sym_identifier, sym_number, - STATE(71), 5, + STATE(73), 5, sym__command_arg, sym_star_level, sym_enchantment_level, sym_string, aux_sym_command_repeat1, - ACTIONS(465), 14, + ACTIONS(466), 15, anon_sym_var, anon_sym_func, anon_sym_for, @@ -7092,7 +7340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(463), 18, + anon_sym_ascii, + ACTIONS(464), 19, sym__newline, sym__dedent, sym_comment, @@ -7107,75 +7356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, - [3957] = 5, - ACTIONS(433), 1, - anon_sym_AT, - ACTIONS(473), 1, - sym_print_text, - ACTIONS(443), 2, - sym__newline, - ts_builtin_sym_end, - STATE(73), 3, - sym_interpolation, - sym_string, - aux_sym_print_argument_repeat1, - ACTIONS(439), 35, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4010] = 7, - ACTIONS(478), 1, + [4216] = 8, + ACTIONS(486), 1, anon_sym_STAR, - ACTIONS(481), 1, + ACTIONS(488), 1, anon_sym_PLUS, - ACTIONS(484), 1, + ACTIONS(490), 1, anon_sym_DQUOTE, - ACTIONS(475), 2, + ACTIONS(492), 1, + anon_sym_uff02, + ACTIONS(480), 2, sym_identifier, sym_number, - STATE(71), 5, + STATE(73), 5, sym__command_arg, sym_star_level, sym_enchantment_level, sym_string, aux_sym_command_repeat1, - ACTIONS(450), 14, + ACTIONS(484), 15, anon_sym_var, anon_sym_func, anon_sym_for, @@ -7190,7 +7394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(445), 18, + anon_sym_ascii, + ACTIONS(482), 19, sym__newline, sym__dedent, sym_comment, @@ -7205,81 +7410,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, - [4067] = 6, - ACTIONS(492), 1, + [4278] = 9, + ACTIONS(500), 1, anon_sym_AT, - ACTIONS(495), 1, + ACTIONS(502), 1, anon_sym_DQUOTE, - ACTIONS(489), 2, - sym_print_text, - sym_color_code, - ACTIONS(498), 2, - sym__newline, - sym__dedent, - STATE(72), 3, - sym_interpolation, - sym_string, - aux_sym_print_argument_repeat1, - ACTIONS(487), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_true, - anon_sym_false, - sym_null, - [4122] = 6, - ACTIONS(503), 1, - anon_sym_AT, - ACTIONS(506), 1, - anon_sym_DQUOTE, - ACTIONS(498), 2, + ACTIONS(504), 1, + anon_sym_uff02, + STATE(102), 1, + sym_print_argument, + STATE(121), 1, + sym_print_args, + ACTIONS(494), 2, sym__newline, ts_builtin_sym_end, - ACTIONS(500), 2, + ACTIONS(498), 2, sym_print_text, sym_color_code, - STATE(73), 3, + STATE(82), 3, sym_interpolation, sym_string, aux_sym_print_argument_repeat1, - ACTIONS(487), 33, + ACTIONS(496), 33, sym_comment, sym_block_comment, anon_sym_var, anon_sym_func, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -7295,8 +7457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - anon_sym_CARET, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7307,23 +7469,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - [4177] = 7, - ACTIONS(511), 1, + anon_sym_ascii, + [4342] = 8, + ACTIONS(509), 1, anon_sym_STAR, - ACTIONS(513), 1, + ACTIONS(512), 1, anon_sym_PLUS, ACTIONS(515), 1, anon_sym_DQUOTE, - ACTIONS(509), 2, + ACTIONS(518), 1, + anon_sym_uff02, + ACTIONS(506), 2, sym_identifier, sym_number, - STATE(68), 5, + STATE(76), 5, sym__command_arg, sym_star_level, sym_enchantment_level, sym_string, aux_sym_command_repeat1, - ACTIONS(465), 14, + ACTIONS(466), 15, anon_sym_var, anon_sym_func, anon_sym_for, @@ -7338,7 +7503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(463), 18, + anon_sym_ascii, + ACTIONS(464), 19, sym__newline, ts_builtin_sym_end, sym_comment, @@ -7353,22 +7519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, - [4234] = 5, - ACTIONS(519), 1, + [4404] = 9, + ACTIONS(523), 1, anon_sym_AT, - ACTIONS(522), 1, - aux_sym_print_continuation_token1, - ACTIONS(525), 2, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_uff02, + STATE(92), 1, + sym_print_argument, + STATE(141), 1, + sym_print_args, + ACTIONS(494), 2, sym__newline, sym__dedent, - STATE(75), 2, + ACTIONS(521), 2, + sym_print_text, + sym_color_code, + STATE(81), 3, sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(517), 34, + sym_string, + aux_sym_print_argument_repeat1, + ACTIONS(496), 33, sym_comment, sym_block_comment, anon_sym_var, @@ -7389,9 +7566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - anon_sym_CARET, - sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7399,73 +7575,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_float, - anon_sym_DQUOTE, anon_sym_true, anon_sym_false, sym_null, - [4285] = 5, + anon_sym_ascii, + [4468] = 8, ACTIONS(531), 1, - anon_sym_AT, + anon_sym_STAR, ACTIONS(533), 1, - aux_sym_print_continuation_token1, - ACTIONS(527), 2, - sym__newline, - ts_builtin_sym_end, - STATE(77), 2, - sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(529), 34, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4336] = 5, + anon_sym_PLUS, ACTIONS(535), 1, - anon_sym_AT, - ACTIONS(538), 1, - aux_sym_print_continuation_token1, - ACTIONS(525), 2, - sym__newline, - ts_builtin_sym_end, - STATE(77), 2, - sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(517), 34, - sym_comment, - sym_block_comment, + anon_sym_DQUOTE, + ACTIONS(537), 1, + anon_sym_uff02, + ACTIONS(529), 2, + sym_identifier, + sym_number, + STATE(76), 5, + sym__command_arg, + sym_star_level, + sym_enchantment_level, + sym_string, + aux_sym_command_repeat1, + ACTIONS(484), 15, anon_sym_var, anon_sym_func, - anon_sym_LPAREN, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -7473,91 +7607,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_break_statement, sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, anon_sym_true, anon_sym_false, sym_null, - [4387] = 5, - ACTIONS(531), 1, - anon_sym_AT, - ACTIONS(545), 1, - aux_sym_print_continuation_token1, - ACTIONS(541), 2, + anon_sym_ascii, + ACTIONS(482), 19, sym__newline, ts_builtin_sym_end, - STATE(76), 2, - sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(543), 34, sym_comment, sym_block_comment, - anon_sym_var, - anon_sym_func, anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_GT, anon_sym_GTo, anon_sym_GTh, anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - anon_sym_CARET, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, - anon_sym_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_identifier, - sym_number, sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4438] = 5, - ACTIONS(547), 1, + [4530] = 7, + ACTIONS(546), 1, anon_sym_AT, ACTIONS(549), 1, - aux_sym_print_continuation_token1, - ACTIONS(541), 2, + anon_sym_DQUOTE, + ACTIONS(552), 1, + anon_sym_uff02, + ACTIONS(539), 2, sym__newline, - sym__dedent, - STATE(80), 2, + ts_builtin_sym_end, + ACTIONS(543), 2, + sym_print_text, + sym_color_code, + STATE(79), 3, sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(543), 34, + sym_string, + aux_sym_print_argument_repeat1, + ACTIONS(541), 34, sym_comment, sym_block_comment, anon_sym_var, anon_sym_func, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -7573,9 +7672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - anon_sym_CARET, - sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7583,61 +7681,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_float, - anon_sym_DQUOTE, anon_sym_true, anon_sym_false, sym_null, - [4489] = 5, - ACTIONS(547), 1, + anon_sym_ascii, + [4589] = 7, + ACTIONS(558), 1, anon_sym_AT, - ACTIONS(551), 1, - aux_sym_print_continuation_token1, - ACTIONS(527), 2, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(564), 1, + anon_sym_uff02, + ACTIONS(539), 2, sym__newline, sym__dedent, - STATE(75), 2, + ACTIONS(555), 2, + sym_print_text, + sym_color_code, + STATE(80), 3, sym_interpolation, - aux_sym_print_continuation_repeat1, - ACTIONS(529), 34, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4540] = 2, - ACTIONS(553), 2, - sym__newline, - ts_builtin_sym_end, - ACTIONS(555), 37, + sym_string, + aux_sym_print_argument_repeat1, + ACTIONS(541), 34, sym_comment, sym_block_comment, anon_sym_var, @@ -7659,11 +7724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - sym_print_text, - anon_sym_AT, - anon_sym_CARET, - sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7671,15 +7733,23 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_float, - anon_sym_DQUOTE, anon_sym_true, anon_sym_false, sym_null, - [4584] = 2, - ACTIONS(306), 2, + anon_sym_ascii, + [4648] = 5, + ACTIONS(523), 1, + anon_sym_AT, + ACTIONS(569), 1, + sym_print_text, + ACTIONS(571), 2, sym__newline, sym__dedent, - ACTIONS(304), 37, + STATE(80), 3, + sym_interpolation, + sym_string, + aux_sym_print_argument_repeat1, + ACTIONS(567), 37, sym_comment, sym_block_comment, anon_sym_var, @@ -7701,11 +7771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - sym_print_text, - anon_sym_AT, - anon_sym_CARET, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7714,56 +7782,24 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, anon_sym_true, anon_sym_false, sym_null, - [4628] = 2, - ACTIONS(553), 2, - sym__newline, - sym__dedent, - ACTIONS(555), 37, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_print_text, + anon_sym_ascii, + [4703] = 5, + ACTIONS(500), 1, anon_sym_AT, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4672] = 2, - ACTIONS(310), 2, + ACTIONS(573), 1, + sym_print_text, + ACTIONS(571), 2, sym__newline, ts_builtin_sym_end, - ACTIONS(308), 37, + STATE(79), 3, + sym_interpolation, + sym_string, + aux_sym_print_argument_repeat1, + ACTIONS(567), 37, sym_comment, sym_block_comment, anon_sym_var, @@ -7785,11 +7821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, - sym_print_text, - anon_sym_AT, - anon_sym_CARET, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7798,56 +7832,16 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, anon_sym_true, anon_sym_false, sym_null, - [4716] = 2, - ACTIONS(306), 2, - sym__newline, - ts_builtin_sym_end, - ACTIONS(304), 37, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_print_text, - anon_sym_AT, - anon_sym_CARET, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4760] = 2, - ACTIONS(310), 2, + anon_sym_ascii, + [4758] = 2, + ACTIONS(577), 2, sym__newline, sym__dedent, - ACTIONS(308), 37, + ACTIONS(575), 39, sym_comment, sym_block_comment, anon_sym_var, @@ -7871,9 +7865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_print_text, anon_sym_AT, - anon_sym_CARET, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7882,19 +7876,22 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, anon_sym_true, anon_sym_false, sym_null, + anon_sym_ascii, [4804] = 2, - ACTIONS(553), 2, + ACTIONS(319), 2, sym__newline, ts_builtin_sym_end, - ACTIONS(555), 36, + ACTIONS(321), 39, sym_comment, sym_block_comment, anon_sym_var, anon_sym_func, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -7910,11 +7907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, + sym_print_text, anon_sym_AT, - anon_sym_CARET, - aux_sym_print_continuation_token1, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -7923,62 +7920,22 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, anon_sym_true, anon_sym_false, sym_null, - [4847] = 4, - ACTIONS(559), 1, - anon_sym_CARET, - ACTIONS(561), 2, + anon_sym_ascii, + [4850] = 2, + ACTIONS(359), 2, sym__newline, - sym__dedent, - STATE(93), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(557), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4894] = 2, - ACTIONS(553), 2, - sym__newline, - sym__dedent, - ACTIONS(555), 36, + ts_builtin_sym_end, + ACTIONS(361), 39, sym_comment, sym_block_comment, anon_sym_var, anon_sym_func, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -7994,11 +7951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_BQUOTE, anon_sym_GTc, anon_sym_GTf, + sym_print_text, anon_sym_AT, - anon_sym_CARET, - aux_sym_print_continuation_token1, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS_PLUS, @@ -8007,34 +7964,174 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, anon_sym_true, anon_sym_false, sym_null, - [4937] = 4, - ACTIONS(565), 1, + anon_sym_ascii, + [4896] = 2, + ACTIONS(577), 2, + sym__newline, + ts_builtin_sym_end, + ACTIONS(575), 39, + sym_comment, + sym_block_comment, + anon_sym_var, + anon_sym_func, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(101), 1, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GT, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_print_text, + anon_sym_AT, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_identifier, + sym_number, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [4942] = 2, + ACTIONS(319), 2, + sym__newline, + sym__dedent, + ACTIONS(321), 39, + sym_comment, + sym_block_comment, + anon_sym_var, + anon_sym_func, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GT, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_print_text, + anon_sym_AT, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_identifier, + sym_number, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [4988] = 2, + ACTIONS(359), 2, + sym__newline, + sym__dedent, + ACTIONS(361), 39, + sym_comment, + sym_block_comment, + anon_sym_var, + anon_sym_func, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GT, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_print_text, + anon_sym_AT, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_identifier, + sym_number, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + [5034] = 4, + ACTIONS(583), 1, + anon_sym_COMMA, + STATE(89), 1, aux_sym_print_args_repeat1, - ACTIONS(567), 3, + ACTIONS(579), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(581), 21, sym__newline, sym__dedent, - anon_sym_CARET, - ACTIONS(563), 33, sym_comment, sym_block_comment, - anon_sym_var, - anon_sym_func, anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_GT, anon_sym_GTo, anon_sym_GTh, anon_sym_GT_BQUOTE, @@ -8042,419 +8139,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, - anon_sym_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_identifier, - sym_number, sym_float, anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [4984] = 4, - ACTIONS(573), 1, - anon_sym_CARET, - ACTIONS(569), 2, - sym__newline, - ts_builtin_sym_end, - STATE(95), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(571), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5031] = 4, - ACTIONS(573), 1, - anon_sym_CARET, - ACTIONS(569), 2, - sym__newline, - ts_builtin_sym_end, - STATE(99), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(571), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5078] = 4, - ACTIONS(577), 1, - anon_sym_CARET, - ACTIONS(580), 2, - sym__newline, - sym__dedent, - STATE(93), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(575), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5125] = 4, + anon_sym_uff02, + [5083] = 4, ACTIONS(586), 1, anon_sym_COMMA, - STATE(96), 1, - aux_sym_print_args_repeat1, - ACTIONS(582), 3, - sym__newline, - ts_builtin_sym_end, - anon_sym_CARET, - ACTIONS(584), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5172] = 4, - ACTIONS(588), 1, - anon_sym_CARET, - ACTIONS(580), 2, - sym__newline, - ts_builtin_sym_end, - STATE(95), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(575), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5219] = 4, - ACTIONS(586), 1, - anon_sym_COMMA, - STATE(98), 1, - aux_sym_print_args_repeat1, - ACTIONS(567), 3, - sym__newline, - ts_builtin_sym_end, - anon_sym_CARET, - ACTIONS(563), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5266] = 4, - ACTIONS(559), 1, - anon_sym_CARET, - ACTIONS(569), 2, - sym__newline, - sym__dedent, - STATE(88), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(571), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5313] = 4, - ACTIONS(595), 1, - anon_sym_COMMA, - STATE(98), 1, - aux_sym_print_args_repeat1, - ACTIONS(591), 3, - sym__newline, - ts_builtin_sym_end, - anon_sym_CARET, - ACTIONS(593), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5360] = 4, - ACTIONS(573), 1, - anon_sym_CARET, - ACTIONS(561), 2, - sym__newline, - ts_builtin_sym_end, - STATE(95), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(557), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5407] = 4, - ACTIONS(565), 1, - anon_sym_COMMA, STATE(90), 1, aux_sym_print_args_repeat1, - ACTIONS(582), 3, - sym__newline, - sym__dedent, - anon_sym_CARET, - ACTIONS(584), 33, - sym_comment, - sym_block_comment, + ACTIONS(579), 17, anon_sym_var, anon_sym_func, - anon_sym_LPAREN, anon_sym_for, anon_sym_COLON, anon_sym_import, @@ -8462,9 +8161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_break_statement, sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(581), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_GT, anon_sym_GTo, anon_sym_GTh, anon_sym_GT_BQUOTE, @@ -8472,105 +8184,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, - anon_sym_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_identifier, - sym_number, sym_float, anon_sym_DQUOTE, + anon_sym_uff02, + [5132] = 2, + ACTIONS(591), 18, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, anon_sym_true, anon_sym_false, sym_null, - [5454] = 4, - ACTIONS(598), 1, + anon_sym_ascii, + ACTIONS(589), 22, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5177] = 4, + ACTIONS(597), 1, anon_sym_COMMA, - STATE(101), 1, + STATE(95), 1, aux_sym_print_args_repeat1, - ACTIONS(591), 3, - sym__newline, - sym__dedent, - anon_sym_CARET, - ACTIONS(593), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5501] = 4, - ACTIONS(559), 1, - anon_sym_CARET, - ACTIONS(569), 2, - sym__newline, - sym__dedent, - STATE(93), 2, - sym_print_continuation, - aux_sym_print_command_repeat1, - ACTIONS(571), 33, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5548] = 2, - ACTIONS(308), 17, + ACTIONS(593), 17, anon_sym_var, anon_sym_func, anon_sym_for, @@ -8580,7 +8249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_break_statement, sym_continue_statement, - anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, sym_identifier, @@ -8588,7 +8256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(310), 20, + anon_sym_ascii, + ACTIONS(595), 21, sym__newline, sym__dedent, sym_comment, @@ -8596,7 +8265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_STAR, anon_sym_GTo, anon_sym_GTh, anon_sym_GT_BQUOTE, @@ -8604,13 +8272,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [5590] = 2, + anon_sym_uff02, + [5226] = 4, + ACTIONS(603), 1, + anon_sym_COMMA, + STATE(90), 1, + aux_sym_print_args_repeat1, ACTIONS(601), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(599), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5275] = 2, + ACTIONS(607), 18, anon_sym_var, anon_sym_func, anon_sym_for, @@ -8628,9 +8343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(603), 20, + anon_sym_ascii, + ACTIONS(605), 22, sym__newline, - sym__dedent, + ts_builtin_sym_end, sym_comment, sym_block_comment, anon_sym_LPAREN, @@ -8644,13 +8360,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [5632] = 2, + anon_sym_uff02, + [5320] = 4, + ACTIONS(597), 1, + anon_sym_COMMA, + STATE(89), 1, + aux_sym_print_args_repeat1, ACTIONS(601), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(599), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5369] = 2, + ACTIONS(321), 18, anon_sym_var, anon_sym_func, anon_sym_for, @@ -8668,7 +8431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(603), 20, + anon_sym_ascii, + ACTIONS(319), 22, sym__newline, ts_builtin_sym_end, sym_comment, @@ -8684,53 +8448,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [5674] = 2, - ACTIONS(591), 3, - sym__newline, - ts_builtin_sym_end, - anon_sym_CARET, - ACTIONS(593), 34, - sym_comment, - sym_block_comment, + anon_sym_uff02, + [5414] = 2, + ACTIONS(361), 18, anon_sym_var, anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(359), 22, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5459] = 2, + ACTIONS(607), 18, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(605), 22, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5504] = 2, + ACTIONS(321), 18, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(319), 22, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5549] = 2, + ACTIONS(361), 18, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(359), 22, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5594] = 2, + ACTIONS(591), 18, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(589), 22, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_STAR, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [5639] = 4, + ACTIONS(603), 1, anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5716] = 2, - ACTIONS(607), 17, + STATE(93), 1, + aux_sym_print_args_repeat1, + ACTIONS(593), 17, anon_sym_var, anon_sym_func, anon_sym_for, @@ -8740,7 +8685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_break_statement, sym_continue_statement, - anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, sym_identifier, @@ -8748,7 +8692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(605), 20, + anon_sym_ascii, + ACTIONS(595), 21, sym__newline, ts_builtin_sym_end, sym_comment, @@ -8756,7 +8701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_STAR, anon_sym_GTo, anon_sym_GTh, anon_sym_GT_BQUOTE, @@ -8764,485 +8708,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [5758] = 2, - ACTIONS(607), 17, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(605), 20, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, + anon_sym_uff02, + [5688] = 18, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_STAR, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [5800] = 2, - ACTIONS(304), 17, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(306), 20, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_STAR, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [5842] = 2, - ACTIONS(591), 3, - sym__newline, - sym__dedent, - anon_sym_CARET, - ACTIONS(593), 34, - sym_comment, - sym_block_comment, - anon_sym_var, - anon_sym_func, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GT, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_identifier, - sym_number, - sym_float, - anon_sym_DQUOTE, - anon_sym_true, - anon_sym_false, - sym_null, - [5884] = 2, - ACTIONS(308), 17, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(310), 20, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_STAR, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [5926] = 2, - ACTIONS(304), 17, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(306), 20, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_STAR, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [5968] = 3, ACTIONS(613), 1, - anon_sym_EQ, - ACTIONS(609), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(611), 19, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(633), 1, + anon_sym_ascii, + ACTIONS(635), 1, sym__newline, - sym__dedent, + STATE(113), 1, + aux_sym_array_repeat1, + STATE(373), 1, + sym_array_elements, + ACTIONS(3), 2, sym_comment, sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, + ACTIONS(615), 2, sym_color_code, + sym_float, + ACTIONS(617), 2, anon_sym_LBRACK, - anon_sym_BANG, + anon_sym_uff3b, + ACTIONS(619), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6011] = 3, - ACTIONS(615), 1, - anon_sym_EQ, - ACTIONS(609), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - sym_null, - ACTIONS(611), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6054] = 2, - ACTIONS(617), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(609), 3, sym_identifier, sym_number, - anon_sym_true, - anon_sym_false, sym_null, - ACTIONS(619), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [5764] = 18, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6094] = 2, - ACTIONS(623), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, + ACTIONS(613), 1, anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(621), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6134] = 2, - ACTIONS(627), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, + ACTIONS(623), 1, anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(625), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, + ACTIONS(627), 1, anon_sym_DQUOTE, - [6174] = 2, - ACTIONS(629), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(631), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6214] = 2, - ACTIONS(633), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(635), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6254] = 3, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(639), 1, + anon_sym_ascii, ACTIONS(641), 1, sym__newline, - ACTIONS(639), 16, + STATE(116), 1, + aux_sym_array_repeat1, + STATE(411), 1, + sym_array_elements, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(615), 2, + sym_color_code, + sym_float, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(637), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, + sym_identifier, + sym_number, + sym_null, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [5840] = 2, + ACTIONS(579), 17, anon_sym_var, anon_sym_func, anon_sym_for, @@ -9259,11 +8849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(637), 18, - ts_builtin_sym_end, + anon_sym_ascii, + ACTIONS(581), 22, + sym__newline, + sym__dedent, sym_comment, sym_block_comment, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_GTo, @@ -9273,13 +8866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [6296] = 2, - ACTIONS(643), 16, + anon_sym_uff02, + [5884] = 3, + ACTIONS(647), 1, + anon_sym_EQ, + ACTIONS(643), 17, anon_sym_var, anon_sym_func, anon_sym_for, @@ -9296,7 +8893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(645), 19, + anon_sym_ascii, + ACTIONS(645), 21, sym__newline, sym__dedent, sym_comment, @@ -9311,52 +8909,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [6336] = 3, + anon_sym_uff02, + [5930] = 18, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, ACTIONS(651), 1, + anon_sym_ascii, + ACTIONS(653), 1, sym__newline, - ACTIONS(649), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(647), 18, - ts_builtin_sym_end, + STATE(108), 1, + aux_sym_array_repeat1, + STATE(405), 1, + sym_array_elements, + ACTIONS(3), 2, sym_comment, sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, + ACTIONS(615), 2, sym_color_code, + sym_float, + ACTIONS(617), 2, anon_sym_LBRACK, - anon_sym_BANG, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_float, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(649), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, + sym_identifier, + sym_number, + sym_null, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [6006] = 18, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, anon_sym_DQUOTE, - [6378] = 2, - ACTIONS(655), 16, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + STATE(357), 1, + sym_array_elements, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(615), 2, + sym_color_code, + sym_float, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(655), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, + sym_identifier, + sym_number, + sym_null, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [6082] = 3, + ACTIONS(661), 1, + anon_sym_EQ, + ACTIONS(643), 17, anon_sym_var, anon_sym_func, anon_sym_for, @@ -9373,7 +9052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(653), 19, + anon_sym_ascii, + ACTIONS(645), 21, sym__newline, ts_builtin_sym_end, sym_comment, @@ -9388,830 +9068,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GTf, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [6418] = 2, - ACTIONS(659), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(657), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, + anon_sym_uff02, + [6128] = 18, + ACTIONS(611), 1, anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6458] = 2, - ACTIONS(643), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, + ACTIONS(613), 1, anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(645), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, + ACTIONS(621), 1, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6498] = 2, - ACTIONS(663), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, + ACTIONS(623), 1, anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(661), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, + ACTIONS(627), 1, anon_sym_DQUOTE, - [6538] = 2, - ACTIONS(627), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(625), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6578] = 2, - ACTIONS(623), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(621), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6618] = 3, + ACTIONS(629), 1, + anon_sym_uff02, ACTIONS(665), 1, - sym__newline, - ACTIONS(649), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(647), 18, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6660] = 2, - ACTIONS(659), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(657), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6700] = 2, - ACTIONS(663), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(661), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6740] = 3, + anon_sym_ascii, ACTIONS(667), 1, sym__newline, - ACTIONS(639), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(637), 18, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6782] = 2, - ACTIONS(633), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(635), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6822] = 2, - ACTIONS(629), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(631), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6862] = 2, - ACTIONS(655), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(653), 19, - sym__newline, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6902] = 2, - ACTIONS(617), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(619), 19, - sym__newline, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6942] = 2, - ACTIONS(669), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(671), 18, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [6981] = 2, - ACTIONS(669), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(671), 18, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [7020] = 2, - ACTIONS(673), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(675), 18, - sym__dedent, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [7059] = 2, - ACTIONS(673), 16, - anon_sym_var, - anon_sym_func, - anon_sym_for, - anon_sym_COLON, - anon_sym_import, - anon_sym_new, - anon_sym_return, - sym_break_statement, - sym_continue_statement, - anon_sym_GT, - anon_sym_DASH, - sym_identifier, - sym_number, - anon_sym_true, - anon_sym_false, - sym_null, - ACTIONS(675), 18, - ts_builtin_sym_end, - sym_comment, - sym_block_comment, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_GTo, - anon_sym_GTh, - anon_sym_GT_BQUOTE, - anon_sym_GTc, - anon_sym_GTf, - sym_color_code, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_float, - anon_sym_DQUOTE, - [7098] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(687), 1, - anon_sym_RBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - STATE(360), 1, - sym_array_elements, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(683), 2, - sym_color_code, - sym_float, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(677), 3, - sym_identifier, - sym_number, - sym_null, - STATE(245), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7159] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(701), 1, - anon_sym_RPAREN, - STATE(335), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(703), 2, - sym_color_code, - sym_float, - ACTIONS(699), 3, - sym_identifier, - sym_number, - sym_null, - STATE(244), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7220] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(705), 1, - anon_sym_RPAREN, + STATE(111), 1, + aux_sym_array_repeat1, STATE(364), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(703), 2, - sym_color_code, - sym_float, - ACTIONS(699), 3, - sym_identifier, - sym_number, - sym_null, - STATE(244), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7281] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(707), 1, - anon_sym_RBRACK, - STATE(354), 1, sym_array_elements, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(683), 2, + ACTIONS(615), 2, sym_color_code, sym_float, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(677), 3, + ACTIONS(663), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, sym_identifier, sym_number, sym_null, - STATE(245), 13, + STATE(261), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10225,40 +9132,51 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7342] = 14, - ACTIONS(679), 1, + sym_ascii_string, + [6204] = 18, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, - ACTIONS(709), 1, - anon_sym_RBRACK, - STATE(340), 1, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + STATE(368), 1, sym_array_elements, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(683), 2, + ACTIONS(615), 2, sym_color_code, sym_float, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(677), 3, + ACTIONS(669), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, sym_identifier, sym_number, sym_null, - STATE(245), 13, + STATE(261), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10272,179 +9190,93 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7403] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, + sym_ascii_string, + [6280] = 2, + ACTIONS(579), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(711), 1, - anon_sym_RPAREN, - STATE(331), 1, - sym_argument_list, - ACTIONS(3), 2, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(581), 22, + sym__newline, + ts_builtin_sym_end, sym_comment, sym_block_comment, - ACTIONS(693), 2, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(703), 2, - sym_color_code, sym_float, - ACTIONS(699), 3, - sym_identifier, - sym_number, - sym_null, - STATE(244), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7464] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, - anon_sym_RBRACK, - STATE(353), 1, + anon_sym_uff02, + [6324] = 18, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + STATE(378), 1, sym_array_elements, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(683), 2, + ACTIONS(615), 2, sym_color_code, sym_float, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(677), 3, - sym_identifier, - sym_number, - sym_null, - STATE(245), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7525] = 14, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_RPAREN, - STATE(348), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(703), 2, - sym_color_code, - sym_float, - ACTIONS(699), 3, - sym_identifier, - sym_number, - sym_null, - STATE(244), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7586] = 13, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(721), 1, + ACTIONS(671), 2, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(719), 2, - sym_color_code, - sym_float, - ACTIONS(717), 3, + anon_sym_uff3d, + ACTIONS(609), 3, sym_identifier, sym_number, sym_null, - STATE(255), 13, + STATE(261), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10458,38 +9290,51 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7644] = 13, - ACTIONS(679), 1, + sym_ascii_string, + [6400] = 18, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, - ACTIONS(723), 1, - anon_sym_RBRACK, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(675), 1, + anon_sym_ascii, + ACTIONS(677), 1, + sym__newline, + STATE(115), 1, + aux_sym_array_repeat1, + STATE(382), 1, + sym_array_elements, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(719), 2, + ACTIONS(615), 2, sym_color_code, sym_float, - ACTIONS(717), 3, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(673), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, sym_identifier, sym_number, sym_null, - STATE(255), 13, + STATE(261), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10503,36 +9348,576 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7702] = 12, + sym_ascii_string, + [6476] = 18, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + STATE(387), 1, + sym_array_elements, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(615), 2, + sym_color_code, + sym_float, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(679), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, + sym_identifier, + sym_number, + sym_null, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [6552] = 18, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + STATE(410), 1, + sym_array_elements, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(615), 2, + sym_color_code, + sym_float, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(681), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(609), 3, + sym_identifier, + sym_number, + sym_null, + STATE(261), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [6628] = 3, + ACTIONS(687), 1, + sym__newline, + ACTIONS(685), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(683), 20, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6673] = 2, + ACTIONS(689), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(691), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6716] = 2, + ACTIONS(693), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(695), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6759] = 2, + ACTIONS(697), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(699), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6802] = 2, + ACTIONS(703), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(701), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6845] = 2, + ACTIONS(705), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(707), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6888] = 2, + ACTIONS(709), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(711), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6931] = 2, + ACTIONS(713), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(715), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [6974] = 2, + ACTIONS(717), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(719), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7017] = 2, + ACTIONS(697), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(699), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7060] = 17, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(729), 1, - anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, - anon_sym_BANG, - ACTIONS(737), 1, - anon_sym_DASH, - ACTIONS(741), 1, - anon_sym_DQUOTE, + sym__newline, + STATE(147), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(731), 2, - sym_color_code, - sym_float, - ACTIONS(739), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(725), 3, + ACTIONS(723), 2, + sym_color_code, + sym_float, + ACTIONS(725), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(721), 3, sym_identifier, sym_number, sym_null, - STATE(260), 13, + STATE(273), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10546,36 +9931,296 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7757] = 12, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + sym_ascii_string, + [7133] = 2, + ACTIONS(689), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, anon_sym_DASH, - ACTIONS(49), 1, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(691), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, anon_sym_DQUOTE, + anon_sym_uff02, + [7176] = 2, + ACTIONS(705), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(707), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7219] = 2, + ACTIONS(709), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(711), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7262] = 2, + ACTIONS(713), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(715), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7305] = 2, + ACTIONS(717), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(719), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7348] = 3, + ACTIONS(730), 1, + sym__newline, + ACTIONS(685), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(683), 20, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7393] = 17, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(734), 1, + sym__newline, + STATE(147), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(747), 2, + ACTIONS(723), 2, sym_color_code, sym_float, - ACTIONS(745), 3, + ACTIONS(732), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(721), 3, sym_identifier, sym_number, sym_null, - STATE(58), 13, + STATE(273), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10589,198 +10234,526 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [7812] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, + sym_ascii_string, + [7466] = 2, + ACTIONS(739), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(751), 2, - sym_color_code, - sym_float, - ACTIONS(749), 3, sym_identifier, sym_number, - sym_null, - STATE(291), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7867] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, anon_sym_true, anon_sym_false, - ACTIONS(755), 2, - sym_color_code, - sym_float, - ACTIONS(753), 3, - sym_identifier, - sym_number, sym_null, - STATE(270), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7922] = 12, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(729), 1, - anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, - anon_sym_BANG, - ACTIONS(737), 1, - anon_sym_DASH, - ACTIONS(741), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + anon_sym_ascii, + ACTIONS(737), 21, + sym__newline, + ts_builtin_sym_end, sym_comment, sym_block_comment, - ACTIONS(739), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7509] = 3, + ACTIONS(745), 1, + sym__newline, + ACTIONS(741), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, anon_sym_true, anon_sym_false, - ACTIONS(759), 2, - sym_color_code, - sym_float, - ACTIONS(757), 3, - sym_identifier, - sym_number, sym_null, - STATE(252), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [7977] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + anon_sym_ascii, + ACTIONS(743), 20, + sym__dedent, sym_comment, sym_block_comment, - ACTIONS(693), 2, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7554] = 2, + ACTIONS(749), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, anon_sym_true, anon_sym_false, - ACTIONS(719), 2, + sym_null, + anon_sym_ascii, + ACTIONS(747), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, sym_float, - ACTIONS(717), 3, + anon_sym_DQUOTE, + anon_sym_uff02, + [7597] = 3, + ACTIONS(751), 1, + sym__newline, + ACTIONS(741), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, sym_identifier, sym_number, + anon_sym_true, + anon_sym_false, sym_null, - STATE(255), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8032] = 12, - ACTIONS(15), 1, + anon_sym_ascii, + ACTIONS(743), 20, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_new, - ACTIONS(39), 1, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, anon_sym_LBRACK, - ACTIONS(41), 1, + anon_sym_uff3b, anon_sym_BANG, - ACTIONS(43), 1, - anon_sym_DASH, - ACTIONS(49), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, anon_sym_DQUOTE, + anon_sym_uff02, + [7642] = 2, + ACTIONS(739), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(737), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7685] = 2, + ACTIONS(749), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(747), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7728] = 2, + ACTIONS(703), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(701), 21, + sym__newline, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7771] = 2, + ACTIONS(693), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(695), 21, + sym__newline, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7814] = 2, + ACTIONS(753), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(755), 20, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7856] = 2, + ACTIONS(757), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(759), 20, + sym__dedent, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7898] = 2, + ACTIONS(753), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(755), 20, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7940] = 2, + ACTIONS(757), 17, + anon_sym_var, + anon_sym_func, + anon_sym_for, + anon_sym_COLON, + anon_sym_import, + anon_sym_new, + anon_sym_return, + sym_break_statement, + sym_continue_statement, + anon_sym_GT, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(759), 20, + ts_builtin_sym_end, + sym_comment, + sym_block_comment, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_GTo, + anon_sym_GTh, + anon_sym_GT_BQUOTE, + anon_sym_GTc, + anon_sym_GTf, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [7982] = 16, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(763), 2, @@ -10790,7 +10763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(55), 13, + STATE(295), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10804,36 +10777,46 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8087] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [8051] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + STATE(472), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(767), 2, + ACTIONS(773), 2, sym_color_code, sym_float, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, ACTIONS(765), 3, sym_identifier, sym_number, sym_null, - STATE(17), 13, + STATE(281), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -10847,251 +10830,46 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8142] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8120] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(791), 1, + anon_sym_RPAREN, + STATE(434), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(771), 2, + ACTIONS(773), 2, sym_color_code, sym_float, - ACTIONS(769), 3, - sym_identifier, - sym_number, - sym_null, - STATE(285), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8197] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, ACTIONS(775), 2, - sym_color_code, - sym_float, - ACTIONS(773), 3, - sym_identifier, - sym_number, - sym_null, - STATE(240), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8252] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(779), 2, - sym_color_code, - sym_float, - ACTIONS(777), 3, - sym_identifier, - sym_number, - sym_null, - STATE(225), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8307] = 12, - ACTIONS(727), 1, - anon_sym_LPAREN, - ACTIONS(729), 1, - anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, - anon_sym_BANG, - ACTIONS(737), 1, - anon_sym_DASH, - ACTIONS(741), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(739), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(743), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(783), 2, - sym_color_code, - sym_float, - ACTIONS(781), 3, - sym_identifier, - sym_number, - sym_null, - STATE(282), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8362] = 12, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, - anon_sym_BANG, - ACTIONS(89), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, ACTIONS(787), 2, - sym_color_code, - sym_float, - ACTIONS(785), 3, - sym_identifier, - sym_number, - sym_null, - STATE(12), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [8417] = 12, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, - anon_sym_DASH, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(45), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(51), 2, anon_sym_true, anon_sym_false, - ACTIONS(791), 2, - sym_color_code, - sym_float, - ACTIONS(789), 3, + ACTIONS(765), 3, sym_identifier, sym_number, sym_null, - STATE(39), 13, + STATE(281), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11105,36 +10883,46 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8472] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [8189] = 16, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(793), 1, + sym__newline, + STATE(147), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, - ACTIONS(795), 2, + ACTIONS(723), 2, sym_color_code, sym_float, - ACTIONS(793), 3, + ACTIONS(721), 3, sym_identifier, sym_number, sym_null, - STATE(20), 13, + STATE(273), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11148,36 +10936,46 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8527] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [8258] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(795), 1, + anon_sym_RPAREN, + STATE(463), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(773), 2, + sym_color_code, + sym_float, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, - ACTIONS(799), 2, - sym_color_code, - sym_float, - ACTIONS(797), 3, + ACTIONS(765), 3, sym_identifier, sym_number, sym_null, - STATE(21), 13, + STATE(281), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11191,26 +10989,138 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8582] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [8327] = 16, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(797), 1, + anon_sym_RPAREN, + STATE(443), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(773), 2, + sym_color_code, + sym_float, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(765), 3, + sym_identifier, + sym_number, + sym_null, + STATE(281), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [8396] = 16, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(799), 1, + anon_sym_RPAREN, + STATE(436), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(773), 2, + sym_color_code, + sym_float, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(765), 3, + sym_identifier, + sym_number, + sym_null, + STATE(281), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [8465] = 14, + ACTIONS(219), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_new, + ACTIONS(245), 1, + anon_sym_BANG, + ACTIONS(247), 1, + anon_sym_DASH, + ACTIONS(253), 1, + anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(803), 2, @@ -11220,7 +11130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(253), 13, + STATE(61), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11234,26 +11144,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8637] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [8528] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(807), 2, @@ -11263,7 +11179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(22), 13, + STATE(270), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11277,26 +11193,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8692] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8591] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(811), 2, @@ -11306,7 +11228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(224), 13, + STATE(271), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11320,26 +11242,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8747] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8654] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(815), 2, @@ -11349,7 +11277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(235), 13, + STATE(272), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11363,26 +11291,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8802] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8717] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(819), 2, @@ -11392,7 +11326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(222), 13, + STATE(274), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11406,26 +11340,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8857] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8780] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(823), 2, @@ -11435,7 +11375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(233), 13, + STATE(33), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11449,26 +11389,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8912] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [8843] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(827), 2, @@ -11478,7 +11424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(24), 13, + STATE(13), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11492,26 +11438,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [8967] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8906] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(831), 2, @@ -11521,7 +11473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(230), 13, + STATE(46), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11535,26 +11487,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9022] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [8969] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(835), 2, @@ -11564,7 +11522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(229), 13, + STATE(47), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11578,26 +11536,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9077] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [9032] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(839), 2, @@ -11607,7 +11571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(239), 13, + STATE(324), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11621,26 +11585,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9132] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [9095] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(843), 2, @@ -11650,7 +11620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(27), 13, + STATE(31), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11664,26 +11634,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9187] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [9158] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(847), 2, @@ -11693,7 +11669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(227), 13, + STATE(334), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11707,36 +11683,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9242] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [9221] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(851), 2, + ACTIONS(855), 2, sym_color_code, sym_float, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, ACTIONS(849), 3, sym_identifier, sym_number, sym_null, - STATE(38), 13, + STATE(298), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -11750,241 +11732,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9297] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [9284] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(743), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(855), 2, - sym_color_code, - sym_float, - ACTIONS(853), 3, - sym_identifier, - sym_number, - sym_null, - STATE(250), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [9352] = 12, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_new, - ACTIONS(39), 1, + ACTIONS(775), 2, anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, - anon_sym_DASH, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(45), 2, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(859), 2, - sym_color_code, - sym_float, - ACTIONS(857), 3, - sym_identifier, - sym_number, - sym_null, - STATE(50), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [9407] = 12, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(43), 1, - anon_sym_DASH, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(45), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(51), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(863), 2, - sym_color_code, - sym_float, - ACTIONS(861), 3, - sym_identifier, - sym_number, - sym_null, - STATE(56), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [9462] = 12, - ACTIONS(679), 1, - anon_sym_LPAREN, - ACTIONS(681), 1, - anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_BANG, - ACTIONS(691), 1, - anon_sym_DASH, - ACTIONS(695), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(693), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(697), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(867), 2, - sym_color_code, - sym_float, - ACTIONS(865), 3, - sym_identifier, - sym_number, - sym_null, - STATE(264), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [9517] = 12, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, - anon_sym_BANG, - ACTIONS(89), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(871), 2, - sym_color_code, - sym_float, - ACTIONS(869), 3, - sym_identifier, - sym_number, - sym_null, - STATE(31), 13, - sym_new_statement, - sym__expression, - sym_member_expression, - sym_call_expression, - sym_index_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_assignment_expression, - sym_parenthesized_expression, - sym_array, - sym_string, - sym_boolean, - [9572] = 12, - ACTIONS(61), 1, - anon_sym_LPAREN, - ACTIONS(69), 1, - anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, - anon_sym_BANG, - ACTIONS(89), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(91), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(875), 2, @@ -11994,7 +11767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(32), 13, + STATE(297), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12008,26 +11781,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9627] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [9347] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(879), 2, @@ -12037,7 +11816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(292), 13, + STATE(51), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12051,26 +11830,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9682] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [9410] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(883), 2, @@ -12080,7 +11865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(275), 13, + STATE(53), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12094,26 +11879,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9737] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [9473] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(887), 2, @@ -12123,7 +11914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(18), 13, + STATE(54), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12137,26 +11928,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9792] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [9536] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(891), 2, @@ -12166,7 +11963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(290), 13, + STATE(55), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12180,26 +11977,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9847] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [9599] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(895), 2, @@ -12209,7 +12012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(251), 13, + STATE(57), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12223,26 +12026,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9902] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [9662] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(899), 2, @@ -12252,7 +12061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(48), 13, + STATE(58), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12266,26 +12075,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [9957] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [9725] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(903), 2, @@ -12295,7 +12110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(54), 13, + STATE(59), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12309,26 +12124,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10012] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [9788] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(907), 2, @@ -12338,7 +12159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(49), 13, + STATE(60), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12352,26 +12173,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10067] = 12, + sym_ascii_string, + [9851] = 14, ACTIONS(15), 1, anon_sym_LPAREN, ACTIONS(23), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, ACTIONS(41), 1, anon_sym_BANG, ACTIONS(43), 1, anon_sym_DASH, ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(911), 2, @@ -12381,7 +12208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(47), 13, + STATE(32), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12395,26 +12222,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10122] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [9914] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(915), 2, @@ -12424,7 +12257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(247), 13, + STATE(314), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12438,26 +12271,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10177] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [9977] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(919), 2, @@ -12467,7 +12306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(249), 13, + STATE(26), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12481,26 +12320,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10232] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10040] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(923), 2, @@ -12510,7 +12355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(262), 13, + STATE(310), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12524,26 +12369,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10287] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [10103] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(927), 2, @@ -12553,7 +12404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(45), 13, + STATE(304), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12567,26 +12418,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10342] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10166] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(931), 2, @@ -12596,7 +12453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(261), 13, + STATE(28), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12610,26 +12467,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10397] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [10229] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(935), 2, @@ -12639,7 +12502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(288), 13, + STATE(29), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12653,26 +12516,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10452] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10292] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(939), 2, @@ -12682,7 +12551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(246), 13, + STATE(30), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12696,26 +12565,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10507] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10355] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(943), 2, @@ -12725,7 +12600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(283), 13, + STATE(309), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12739,26 +12614,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10562] = 12, - ACTIONS(61), 1, + sym_ascii_string, + [10418] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(69), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(85), 1, - anon_sym_LBRACK, - ACTIONS(87), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(89), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(91), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(97), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(947), 2, @@ -12768,7 +12649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(19), 13, + STATE(341), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12782,26 +12663,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10617] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10481] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(951), 2, @@ -12811,7 +12698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(259), 13, + STATE(342), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12825,26 +12712,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10672] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [10544] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(955), 2, @@ -12854,7 +12747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(254), 13, + STATE(339), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12868,26 +12761,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10727] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10607] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(959), 2, @@ -12897,7 +12796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(258), 13, + STATE(307), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12911,26 +12810,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10782] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10670] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(963), 2, @@ -12940,7 +12845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(266), 13, + STATE(345), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12954,26 +12859,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10837] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10733] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(967), 2, @@ -12983,7 +12894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(272), 13, + STATE(247), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -12997,26 +12908,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10892] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [10796] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(771), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(777), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(779), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(783), 1, anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(787), 2, anon_sym_true, anon_sym_false, ACTIONS(971), 2, @@ -13026,7 +12943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(276), 13, + STATE(248), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13040,26 +12957,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [10947] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [10859] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(975), 2, @@ -13069,7 +12992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(274), 13, + STATE(327), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13083,26 +13006,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11002] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [10922] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(979), 2, @@ -13112,7 +13041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(271), 13, + STATE(315), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13126,26 +13055,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11057] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [10985] = 14, + ACTIONS(219), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(227), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(245), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(247), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(253), 1, anon_sym_DQUOTE, + ACTIONS(255), 1, + anon_sym_uff02, + ACTIONS(259), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(243), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(249), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(257), 2, anon_sym_true, anon_sym_false, ACTIONS(983), 2, @@ -13155,7 +13090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(273), 13, + STATE(41), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13169,26 +13104,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11112] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [11048] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(987), 2, @@ -13198,7 +13139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(263), 13, + STATE(320), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13212,26 +13153,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11167] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [11111] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(991), 2, @@ -13241,7 +13188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(231), 13, + STATE(322), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13255,26 +13202,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11222] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [11174] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(995), 2, @@ -13284,7 +13237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(51), 13, + STATE(323), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13298,26 +13251,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11277] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [11237] = 14, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(853), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(859), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(869), 2, anon_sym_true, anon_sym_false, ACTIONS(999), 2, @@ -13327,7 +13286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(265), 13, + STATE(325), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13341,26 +13300,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11332] = 12, - ACTIONS(679), 1, + sym_ascii_string, + [11300] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(681), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(685), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(691), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(695), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(693), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(697), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(1003), 2, @@ -13370,7 +13335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(289), 13, + STATE(12), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13384,26 +13349,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11387] = 12, - ACTIONS(15), 1, + sym_ascii_string, + [11363] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(43), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(49), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(45), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(51), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(1007), 2, @@ -13413,7 +13384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(46), 13, + STATE(291), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13427,26 +13398,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11442] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [11426] = 14, + ACTIONS(611), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(613), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(621), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(623), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(627), 1, anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(631), 2, anon_sym_true, anon_sym_false, ACTIONS(1011), 2, @@ -13456,7 +13433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(248), 13, + STATE(262), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13470,26 +13447,32 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11497] = 12, - ACTIONS(727), 1, + sym_ascii_string, + [11489] = 14, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(729), 1, + ACTIONS(23), 1, anon_sym_new, - ACTIONS(733), 1, - anon_sym_LBRACK, - ACTIONS(735), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(737), 1, + ACTIONS(43), 1, anon_sym_DASH, - ACTIONS(741), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(739), 2, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(743), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, ACTIONS(1015), 2, @@ -13499,7 +13482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_number, sym_null, - STATE(269), 13, + STATE(22), 14, sym_new_statement, sym__expression, sym_member_expression, @@ -13513,194 +13496,1531 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_boolean, - [11552] = 3, + sym_ascii_string, + [11552] = 14, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_new, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, + anon_sym_DASH, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(380), 7, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(382), 20, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, + ACTIONS(39), 2, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, + anon_sym_uff3b, + ACTIONS(45), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11588] = 9, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - ACTIONS(279), 15, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, + sym_color_code, + sym_float, + ACTIONS(1017), 3, + sym_identifier, + sym_number, + sym_null, + STATE(25), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11615] = 14, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11636] = 3, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(336), 7, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DOT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(338), 20, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, + ACTIONS(617), 2, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, + anon_sym_uff3b, + ACTIONS(625), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11672] = 11, - ACTIONS(1017), 1, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1023), 2, + sym_color_code, + sym_float, + ACTIONS(1021), 3, + sym_identifier, + sym_number, + sym_null, + STATE(294), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11678] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1027), 2, + sym_color_code, + sym_float, + ACTIONS(1025), 3, + sym_identifier, + sym_number, + sym_null, + STATE(235), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11741] = 14, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(279), 13, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11724] = 7, - ACTIONS(1017), 1, + sym_color_code, + sym_float, + ACTIONS(1029), 3, + sym_identifier, + sym_number, + sym_null, + STATE(263), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11804] = 14, + ACTIONS(767), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1027), 2, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(380), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(382), 16, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1035), 2, + sym_color_code, + sym_float, + ACTIONS(1033), 3, + sym_identifier, + sym_number, + sym_null, + STATE(237), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11867] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11768] = 3, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(334), 7, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1039), 2, + sym_color_code, + sym_float, + ACTIONS(1037), 3, + sym_identifier, + sym_number, + sym_null, + STATE(238), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11930] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1043), 2, + sym_color_code, + sym_float, + ACTIONS(1041), 3, + sym_identifier, + sym_number, + sym_null, + STATE(239), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [11993] = 14, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1047), 2, + sym_color_code, + sym_float, + ACTIONS(1045), 3, + sym_identifier, + sym_number, + sym_null, + STATE(264), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12056] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1051), 2, + sym_color_code, + sym_float, + ACTIONS(1049), 3, + sym_identifier, + sym_number, + sym_null, + STATE(241), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12119] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1055), 2, + sym_color_code, + sym_float, + ACTIONS(1053), 3, + sym_identifier, + sym_number, + sym_null, + STATE(242), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12182] = 14, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1059), 2, + sym_color_code, + sym_float, + ACTIONS(1057), 3, + sym_identifier, + sym_number, + sym_null, + STATE(266), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12245] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1063), 2, + sym_color_code, + sym_float, + ACTIONS(1061), 3, + sym_identifier, + sym_number, + sym_null, + STATE(243), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12308] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1067), 2, + sym_color_code, + sym_float, + ACTIONS(1065), 3, + sym_identifier, + sym_number, + sym_null, + STATE(244), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12371] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1071), 2, + sym_color_code, + sym_float, + ACTIONS(1069), 3, + sym_identifier, + sym_number, + sym_null, + STATE(245), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12434] = 14, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(613), 1, + anon_sym_new, + ACTIONS(621), 1, + anon_sym_BANG, + ACTIONS(623), 1, + anon_sym_DASH, + ACTIONS(627), 1, + anon_sym_DQUOTE, + ACTIONS(629), 1, + anon_sym_uff02, + ACTIONS(657), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(617), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(625), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(631), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1075), 2, + sym_color_code, + sym_float, + ACTIONS(1073), 3, + sym_identifier, + sym_number, + sym_null, + STATE(268), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12497] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1079), 2, + sym_color_code, + sym_float, + ACTIONS(1077), 3, + sym_identifier, + sym_number, + sym_null, + STATE(340), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12560] = 14, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_new, + ACTIONS(859), 1, + anon_sym_BANG, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1083), 2, + sym_color_code, + sym_float, + ACTIONS(1081), 3, + sym_identifier, + sym_number, + sym_null, + STATE(300), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12623] = 14, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_new, + ACTIONS(859), 1, + anon_sym_BANG, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1087), 2, + sym_color_code, + sym_float, + ACTIONS(1085), 3, + sym_identifier, + sym_number, + sym_null, + STATE(301), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12686] = 14, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_new, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(43), 1, + anon_sym_DASH, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(51), 1, + anon_sym_uff02, + ACTIONS(55), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(39), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(45), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1091), 2, + sym_color_code, + sym_float, + ACTIONS(1089), 3, + sym_identifier, + sym_number, + sym_null, + STATE(24), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12749] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1095), 2, + sym_color_code, + sym_float, + ACTIONS(1093), 3, + sym_identifier, + sym_number, + sym_null, + STATE(312), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12812] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1099), 2, + sym_color_code, + sym_float, + ACTIONS(1097), 3, + sym_identifier, + sym_number, + sym_null, + STATE(302), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12875] = 14, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_new, + ACTIONS(859), 1, + anon_sym_BANG, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1103), 2, + sym_color_code, + sym_float, + ACTIONS(1101), 3, + sym_identifier, + sym_number, + sym_null, + STATE(303), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [12938] = 14, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_new, + ACTIONS(859), 1, + anon_sym_BANG, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1107), 2, + sym_color_code, + sym_float, + ACTIONS(1105), 3, + sym_identifier, + sym_number, + sym_null, + STATE(305), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13001] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1111), 2, + sym_color_code, + sym_float, + ACTIONS(1109), 3, + sym_identifier, + sym_number, + sym_null, + STATE(316), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13064] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1115), 2, + sym_color_code, + sym_float, + ACTIONS(1113), 3, + sym_identifier, + sym_number, + sym_null, + STATE(306), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13127] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1119), 2, + sym_color_code, + sym_float, + ACTIONS(1117), 3, + sym_identifier, + sym_number, + sym_null, + STATE(321), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13190] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1123), 2, + sym_color_code, + sym_float, + ACTIONS(1121), 3, + sym_identifier, + sym_number, + sym_null, + STATE(308), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13253] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1127), 2, + sym_color_code, + sym_float, + ACTIONS(1125), 3, + sym_identifier, + sym_number, + sym_null, + STATE(326), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13316] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1131), 2, + sym_color_code, + sym_float, + ACTIONS(1129), 3, + sym_identifier, + sym_number, + sym_null, + STATE(299), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13379] = 14, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_new, + ACTIONS(777), 1, + anon_sym_BANG, + ACTIONS(779), 1, + anon_sym_DASH, + ACTIONS(783), 1, + anon_sym_DQUOTE, + ACTIONS(785), 1, + anon_sym_uff02, + ACTIONS(789), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(775), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(781), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(787), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1135), 2, + sym_color_code, + sym_float, + ACTIONS(1133), 3, + sym_identifier, + sym_number, + sym_null, + STATE(344), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13442] = 14, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_new, + ACTIONS(859), 1, + anon_sym_BANG, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_uff02, + ACTIONS(871), 1, + anon_sym_ascii, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(857), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(863), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(869), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1139), 2, + sym_color_code, + sym_float, + ACTIONS(1137), 3, + sym_identifier, + sym_number, + sym_null, + STATE(318), 14, + sym_new_statement, + sym__expression, + sym_member_expression, + sym_call_expression, + sym_index_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_assignment_expression, + sym_parenthesized_expression, + sym_array, + sym_string, + sym_boolean, + sym_ascii_string, + [13505] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(396), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -13708,7 +15028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(332), 20, + ACTIONS(394), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13716,7 +15036,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -13729,57 +15051,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [11804] = 16, - ACTIONS(1017), 1, + [13543] = 11, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1149), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(322), 5, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 14, + anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_AT, anon_sym_RBRACK, - [11866] = 3, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13597] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(372), 7, + ACTIONS(373), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -13787,7 +15106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(374), 20, + ACTIONS(371), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13795,7 +15114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -13808,139 +15129,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [11902] = 13, - ACTIONS(1017), 1, + [13635] = 8, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1149), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1045), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(279), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11958] = 14, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1045), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(279), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12016] = 11, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(369), 6, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, anon_sym_GT, + anon_sym_DASH, anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(279), 13, + anon_sym_SLASH, + ACTIONS(367), 16, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_AT, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12068] = 3, + [13683] = 9, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(273), 7, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + ACTIONS(367), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13733] = 10, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(369), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 16, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13785] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(377), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -13948,7 +15264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(275), 20, + ACTIONS(375), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13956,7 +15272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -13969,51 +15287,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12104] = 10, - ACTIONS(1017), 1, + [13823] = 11, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1149), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(277), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(279), 15, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 14, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_AT, anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13877] = 14, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1159), 1, + anon_sym_EQ, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13937] = 13, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1159), 1, + anon_sym_EQ, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [13995] = 7, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(367), 17, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PERCENT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12154] = 3, + [14041] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(394), 7, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(382), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + [14105] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(442), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14021,7 +15520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(392), 20, + ACTIONS(444), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14029,7 +15528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14042,49 +15543,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12190] = 8, - ACTIONS(1017), 1, + [14143] = 7, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1149), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1027), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(277), 6, + ACTIONS(305), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(279), 15, + ACTIONS(303), 17, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_AT, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PERCENT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12236] = 3, + [14189] = 7, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(312), 7, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(317), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(315), 17, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14235] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(392), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14092,7 +15633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(314), 20, + ACTIONS(390), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14100,7 +15641,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14113,11 +15656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12272] = 3, + [14273] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(316), 7, + ACTIONS(321), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14125,7 +15668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(318), 20, + ACTIONS(319), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14133,7 +15676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14146,11 +15691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12308] = 3, + [14311] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(388), 7, + ACTIONS(400), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14158,7 +15703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(390), 20, + ACTIONS(398), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14166,7 +15711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14179,85 +15726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12344] = 7, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, + [14349] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(279), 16, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12388] = 7, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1021), 1, - anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(384), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(386), 16, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12432] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(376), 7, + ACTIONS(404), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14265,7 +15738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(378), 20, + ACTIONS(402), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14273,7 +15746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14286,11 +15761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12468] = 3, + [14387] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(304), 7, + ACTIONS(299), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14298,7 +15773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(306), 20, + ACTIONS(301), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14306,7 +15781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14319,11 +15796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12504] = 3, + [14425] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(308), 7, + ACTIONS(317), 7, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, @@ -14331,7 +15808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(310), 20, + ACTIONS(315), 22, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, @@ -14339,7 +15816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_AT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14352,555 +15831,2189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12540] = 19, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1048), 1, - anon_sym_RPAREN, - ACTIONS(1050), 1, - anon_sym_COMMA, - ACTIONS(1052), 1, - anon_sym_DOT, - STATE(205), 1, - sym_comma_sep, - STATE(298), 1, - aux_sym_argument_list_repeat1, + [14463] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(325), 7, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH, anon_sym_LT, - ACTIONS(1033), 2, + anon_sym_SLASH, + ACTIONS(323), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12607] = 18, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, + [14501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(361), 7, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, anon_sym_DOT, - ACTIONS(1054), 1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(359), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1056), 1, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_RBRACK, - STATE(317), 1, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14539] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(329), 7, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(327), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(438), 7, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(440), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14615] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(365), 7, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14653] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(357), 7, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(355), 22, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14691] = 18, + ACTIONS(1172), 1, + anon_sym_EQ, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1176), 1, + anon_sym_COMMA, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1192), 1, + anon_sym_PIPE, + ACTIONS(1194), 1, + anon_sym_AMP, + ACTIONS(1198), 1, + anon_sym_PERCENT, + STATE(351), 1, aux_sym_array_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1178), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1180), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1188), 3, + sym__newline, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1202), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12671] = 17, - ACTIONS(1058), 1, - anon_sym_EQ, - ACTIONS(1060), 1, + [14758] = 7, + ACTIONS(1174), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1184), 1, anon_sym_DOT, - ACTIONS(1070), 1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1186), 2, anon_sym_LBRACK, - ACTIONS(1072), 1, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(317), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(315), 15, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, - ACTIONS(1074), 1, anon_sym_PIPE, - ACTIONS(1076), 1, anon_sym_AMP, - ACTIONS(1080), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PERCENT, - ACTIONS(1086), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14802] = 8, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(367), 14, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14848] = 9, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + ACTIONS(367), 14, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14896] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(321), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(319), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14932] = 10, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(369), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 14, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [14982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(377), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(375), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15018] = 11, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 12, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15070] = 4, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1204), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 19, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15108] = 14, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1194), 1, + anon_sym_AMP, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 9, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15166] = 13, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 10, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15222] = 7, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(367), 15, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15266] = 16, + ACTIONS(1172), 1, + anon_sym_EQ, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1192), 1, + anon_sym_PIPE, + ACTIONS(1194), 1, + anon_sym_AMP, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1202), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(1210), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + [15328] = 16, + ACTIONS(1172), 1, + anon_sym_EQ, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1192), 1, + anon_sym_PIPE, + ACTIONS(1194), 1, + anon_sym_AMP, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(382), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1202), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15390] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(392), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(390), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15426] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(361), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(359), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(396), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(394), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(400), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(398), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15570] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(404), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(402), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15606] = 19, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1212), 1, + anon_sym_RPAREN, + ACTIONS(1214), 1, + anon_sym_COMMA, + ACTIONS(1216), 1, + anon_sym_DOT, + STATE(167), 1, + sym_comma_sep, + STATE(363), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15674] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(299), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(301), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15710] = 4, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1218), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 19, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15748] = 4, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1221), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 19, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15786] = 4, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1224), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 19, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15824] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(357), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(355), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15860] = 4, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1227), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 19, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(325), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(323), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15934] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(438), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(440), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [15970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(442), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(444), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16006] = 7, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(305), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(303), 15, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16050] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(317), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(315), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16086] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(329), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(327), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16122] = 11, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 12, + sym__newline, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16174] = 16, + ACTIONS(1172), 1, + anon_sym_EQ, + ACTIONS(1174), 1, + anon_sym_LPAREN, + ACTIONS(1184), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_BANG, + ACTIONS(1192), 1, + anon_sym_PIPE, + ACTIONS(1194), 1, + anon_sym_AMP, + ACTIONS(1198), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1180), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1186), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1196), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1200), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1202), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(1230), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_uff3d, + [16236] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(373), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(371), 21, + sym__newline, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16272] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1232), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16332] = 17, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1250), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1262), 1, + sym__indent, + STATE(130), 1, + sym_block, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1260), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16394] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1264), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16454] = 17, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1250), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1266), 1, sym__indent, STATE(118), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12732] = 17, - ACTIONS(1058), 1, + [16516] = 17, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1060), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, + ACTIONS(1248), 1, anon_sym_BANG, - ACTIONS(1074), 1, + ACTIONS(1250), 1, anon_sym_PIPE, - ACTIONS(1076), 1, + ACTIONS(1252), 1, anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, - ACTIONS(1086), 1, + ACTIONS(1266), 1, sym__indent, - STATE(115), 1, + STATE(119), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12793] = 17, - ACTIONS(1058), 1, - anon_sym_EQ, - ACTIONS(1060), 1, + [16578] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1074), 1, - anon_sym_PIPE, - ACTIONS(1076), 1, - anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1088), 1, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1268), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16638] = 17, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1250), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1266), 1, sym__indent, STATE(123), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12854] = 17, - ACTIONS(1058), 1, + [16700] = 17, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1060), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, + ACTIONS(1248), 1, anon_sym_BANG, - ACTIONS(1074), 1, + ACTIONS(1250), 1, anon_sym_PIPE, - ACTIONS(1076), 1, + ACTIONS(1252), 1, anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, - ACTIONS(1088), 1, + ACTIONS(1262), 1, sym__indent, - STATE(136), 1, + STATE(132), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12915] = 17, - ACTIONS(1058), 1, + [16762] = 17, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1060), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, + ACTIONS(1248), 1, anon_sym_BANG, - ACTIONS(1074), 1, + ACTIONS(1250), 1, anon_sym_PIPE, - ACTIONS(1076), 1, + ACTIONS(1252), 1, anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, - ACTIONS(1088), 1, + ACTIONS(1266), 1, sym__indent, - STATE(134), 1, + STATE(125), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12976] = 17, - ACTIONS(1058), 1, - anon_sym_EQ, - ACTIONS(1060), 1, + [16824] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1074), 1, - anon_sym_PIPE, - ACTIONS(1076), 1, - anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1086), 1, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1270), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [16884] = 17, + ACTIONS(1234), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1250), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1262), 1, sym__indent, - STATE(135), 1, + STATE(142), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13037] = 17, - ACTIONS(1058), 1, - anon_sym_EQ, - ACTIONS(1060), 1, + [16946] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1074), 1, - anon_sym_PIPE, - ACTIONS(1076), 1, - anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1088), 1, - sym__indent, - STATE(116), 1, - sym_block, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1157), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1272), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13098] = 17, - ACTIONS(1058), 1, + [17006] = 17, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1060), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, + ACTIONS(1248), 1, anon_sym_BANG, - ACTIONS(1074), 1, + ACTIONS(1250), 1, anon_sym_PIPE, - ACTIONS(1076), 1, + ACTIONS(1252), 1, anon_sym_AMP, - ACTIONS(1080), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, - ACTIONS(1086), 1, + ACTIONS(1262), 1, sym__indent, STATE(128), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, + ACTIONS(1240), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1066), 2, + ACTIONS(1242), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1078), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1082), 2, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1084), 4, + ACTIONS(1260), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13159] = 16, - ACTIONS(1017), 1, + [17068] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, + ACTIONS(1162), 1, anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, + ACTIONS(1164), 1, anon_sym_AMP, - ACTIONS(1052), 1, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1090), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13218] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, + ACTIONS(1151), 2, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1092), 2, - anon_sym_COMMA, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1274), 2, anon_sym_RBRACK, - ACTIONS(1043), 4, + anon_sym_uff3d, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13277] = 3, + [17128] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(336), 6, + ACTIONS(396), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(338), 17, + ACTIONS(394), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14913,23 +18026,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13309] = 3, + [17161] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1276), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(304), 6, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17220] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(321), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(306), 17, + ACTIONS(319), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -14942,348 +18099,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13341] = 11, - ACTIONS(1060), 1, + [17253] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1080), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1064), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1078), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(279), 9, - sym__indent, - anon_sym_EQ, + ACTIONS(1162), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(1164), 1, anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13389] = 14, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1076), 1, - anon_sym_AMP, - ACTIONS(1080), 1, - anon_sym_PERCENT, - ACTIONS(1094), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1064), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1078), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(279), 6, - sym__indent, - anon_sym_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13443] = 13, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1080), 1, - anon_sym_PERCENT, - ACTIONS(1094), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1064), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1078), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(279), 7, - sym__indent, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13495] = 7, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(279), 12, - sym__indent, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13535] = 16, - ACTIONS(322), 1, - sym__indent, - ACTIONS(1058), 1, - anon_sym_EQ, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1072), 1, - anon_sym_BANG, - ACTIONS(1074), 1, - anon_sym_PIPE, - ACTIONS(1076), 1, - anon_sym_AMP, - ACTIONS(1080), 1, - anon_sym_PERCENT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1064), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1078), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1084), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13593] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1278), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13651] = 16, - ACTIONS(1017), 1, + [17312] = 10, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, - ACTIONS(1035), 1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(369), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 11, + sym__indent, anon_sym_EQ, - ACTIONS(1037), 1, anon_sym_BANG, - ACTIONS(1039), 1, anon_sym_PIPE, - ACTIONS(1041), 1, anon_sym_AMP, - ACTIONS(1099), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17359] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(377), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(375), 18, + sym__indent, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17451] = 11, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 9, + sym__indent, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17500] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(325), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(323), 18, + sym__indent, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17533] = 14, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1282), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 6, + sym__indent, + anon_sym_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17588] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1285), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1147), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17647] = 13, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(1282), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 7, + sym__indent, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17700] = 7, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(367), 12, + sym__indent, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17741] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1149), 1, + anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1287), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13709] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, + [17800] = 16, + ACTIONS(382), 1, + sym__indent, + ACTIONS(1234), 1, anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1101), 1, + ACTIONS(1248), 1, + anon_sym_BANG, + ACTIONS(1250), 1, + anon_sym_PIPE, + ACTIONS(1252), 1, + anon_sym_AMP, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1260), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [17859] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1289), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13767] = 10, - ACTIONS(1060), 1, + [17918] = 9, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1080), 1, + ACTIONS(1256), 1, anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(277), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1062), 2, + ACTIONS(1238), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1064), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1082), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(279), 11, + ACTIONS(369), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + ACTIONS(367), 11, sym__indent, anon_sym_EQ, anon_sym_BANG, @@ -15295,23 +18643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13813] = 3, + [17963] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(316), 6, + ACTIONS(438), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(318), 17, + ACTIONS(440), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -15324,23 +18673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13845] = 3, + [17996] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(312), 6, + ACTIONS(400), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(314), 17, + ACTIONS(398), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -15353,488 +18703,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13877] = 11, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1080), 1, - anon_sym_PERCENT, + [18029] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1062), 2, + ACTIONS(317), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1064), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1066), 2, anon_sym_GT, + anon_sym_DASH, anon_sym_LT, - ACTIONS(1078), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(279), 9, + anon_sym_SLASH, + ACTIONS(315), 18, sym__indent, anon_sym_EQ, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [13925] = 16, - ACTIONS(1017), 1, anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, anon_sym_DOT, - ACTIONS(1103), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [13983] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1105), 1, - anon_sym_RBRACK, + [18062] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(442), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14041] = 9, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1080), 1, - anon_sym_PERCENT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, - ACTIONS(279), 11, + anon_sym_SLASH, + ACTIONS(444), 18, sym__indent, anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14085] = 8, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(1080), 1, - anon_sym_PERCENT, + [18095] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(277), 6, + ACTIONS(404), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(279), 11, + ACTIONS(402), 18, sym__indent, anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14127] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, + [18128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(299), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(301), 18, + sym__indent, anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(1107), 1, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18161] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1291), 1, anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14185] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1109), 1, - anon_sym_AT, + [18220] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(329), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, anon_sym_GT, + anon_sym_DASH, anon_sym_LT, - ACTIONS(1033), 2, + anon_sym_SLASH, + ACTIONS(327), 18, + sym__indent, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14243] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, + [18253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(357), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(355), 18, + sym__indent, anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(1111), 1, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18286] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(361), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(359), 18, + sym__indent, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18319] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(365), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(363), 18, + sym__indent, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18352] = 11, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1256), 1, + anon_sym_PERCENT, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1238), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1240), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1254), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(367), 9, + sym__indent, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18401] = 16, + ACTIONS(1141), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_PERCENT, + ACTIONS(1162), 1, + anon_sym_BANG, + ACTIONS(1164), 1, + anon_sym_AMP, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1216), 1, + anon_sym_DOT, + ACTIONS(1293), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14301] = 3, + [18460] = 7, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(334), 6, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(305), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(332), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14333] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(372), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(374), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(376), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(378), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14397] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(380), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(382), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14429] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(308), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(310), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14461] = 7, - ACTIONS(1060), 1, - anon_sym_LPAREN, - ACTIONS(1068), 1, - anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1082), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(380), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(382), 12, + ACTIONS(303), 12, sym__indent, anon_sym_EQ, anon_sym_BANG, @@ -15847,27 +19101,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14501] = 7, - ACTIONS(1060), 1, + [18501] = 7, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1068), 1, + ACTIONS(1244), 1, anon_sym_DOT, - ACTIONS(1070), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1082), 2, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(384), 6, + ACTIONS(317), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(386), 12, + ACTIONS(315), 12, sym__indent, anon_sym_EQ, anon_sym_BANG, @@ -15880,23 +19135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14541] = 3, + [18542] = 3, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(273), 6, + ACTIONS(373), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(275), 17, + ACTIONS(371), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -15909,65 +19165,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14573] = 16, - ACTIONS(1017), 1, + [18575] = 16, + ACTIONS(1141), 1, anon_sym_LPAREN, - ACTIONS(1021), 1, + ACTIONS(1149), 1, anon_sym_DOT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1155), 1, anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, + ACTIONS(1162), 1, anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, + ACTIONS(1164), 1, anon_sym_AMP, - ACTIONS(1113), 1, + ACTIONS(1166), 1, + anon_sym_EQ, + ACTIONS(1168), 1, + anon_sym_PIPE, + ACTIONS(1295), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1019), 2, + ACTIONS(1143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, + ACTIONS(1145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1031), 2, + ACTIONS(1147), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1033), 2, + ACTIONS(1151), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1153), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1043), 4, + ACTIONS(1157), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1170), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14631] = 3, + [18634] = 8, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1244), 1, + anon_sym_DOT, + ACTIONS(1256), 1, + anon_sym_PERCENT, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(388), 6, + ACTIONS(1246), 2, + anon_sym_LBRACK, + anon_sym_uff3b, + ACTIONS(1258), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(369), 6, anon_sym_STAR, anon_sym_PLUS, anon_sym_GT, anon_sym_DASH, anon_sym_LT, anon_sym_SLASH, - ACTIONS(390), 17, + ACTIONS(367), 11, + sym__indent, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [18677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(392), 6, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_SLASH, + ACTIONS(390), 18, sym__indent, anon_sym_EQ, anon_sym_LPAREN, anon_sym_DOT, anon_sym_LBRACK, + anon_sym_uff3b, anon_sym_BANG, anon_sym_PIPE, anon_sym_AMP, @@ -15980,250 +19273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [14663] = 3, + [18710] = 5, + ACTIONS(1301), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(394), 6, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_SLASH, - ACTIONS(392), 17, - sym__indent, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14695] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1115), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14753] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1117), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14811] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1119), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14869] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1121), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14927] = 16, - ACTIONS(1017), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_PERCENT, - ACTIONS(1035), 1, - anon_sym_EQ, - ACTIONS(1037), 1, - anon_sym_BANG, - ACTIONS(1039), 1, - anon_sym_PIPE, - ACTIONS(1041), 1, - anon_sym_AMP, - ACTIONS(1052), 1, - anon_sym_DOT, - ACTIONS(1123), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1019), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1027), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1031), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1043), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [14985] = 3, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - ACTIONS(1125), 7, + ACTIONS(1297), 8, anon_sym_new, anon_sym_DASH, sym_identifier, @@ -16231,1570 +19289,2461 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_null, - ACTIONS(1127), 8, + anon_sym_ascii, + ACTIONS(1299), 12, anon_sym_LPAREN, sym_color_code, anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_RBRACK, + anon_sym_uff3d, anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_float, anon_sym_DQUOTE, - [15009] = 6, - ACTIONS(433), 1, - anon_sym_AT, - ACTIONS(437), 1, - anon_sym_DQUOTE, - STATE(106), 1, - sym_print_argument, - ACTIONS(431), 2, - sym_print_text, - sym_color_code, - ACTIONS(1129), 2, + anon_sym_uff02, + [18745] = 3, + ACTIONS(3), 2, sym_comment, sym_block_comment, - STATE(70), 3, + ACTIONS(1304), 8, + anon_sym_new, + anon_sym_DASH, + sym_identifier, + sym_number, + anon_sym_true, + anon_sym_false, + sym_null, + anon_sym_ascii, + ACTIONS(1306), 10, + anon_sym_LPAREN, + sym_color_code, + anon_sym_LBRACK, + anon_sym_uff3b, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_float, + anon_sym_DQUOTE, + anon_sym_uff02, + [18772] = 7, + ACTIONS(523), 1, + anon_sym_AT, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_uff02, + STATE(105), 1, + sym_print_argument, + ACTIONS(521), 2, + sym_print_text, + sym_color_code, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + STATE(81), 3, sym_interpolation, sym_string, aux_sym_print_argument_repeat1, - [15032] = 6, - ACTIONS(423), 1, + [18798] = 7, + ACTIONS(500), 1, anon_sym_AT, - ACTIONS(427), 1, + ACTIONS(502), 1, anon_sym_DQUOTE, - STATE(110), 1, + ACTIONS(504), 1, + anon_sym_uff02, + STATE(112), 1, sym_print_argument, - ACTIONS(421), 2, + ACTIONS(498), 2, sym_print_text, sym_color_code, - ACTIONS(1129), 2, + ACTIONS(1308), 2, sym_comment, sym_block_comment, - STATE(67), 3, + STATE(82), 3, sym_interpolation, sym_string, aux_sym_print_argument_repeat1, - [15055] = 4, - ACTIONS(1131), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15070] = 4, - ACTIONS(1135), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15085] = 5, - ACTIONS(1050), 1, + [18824] = 4, + ACTIONS(1310), 1, anon_sym_COMMA, - ACTIONS(1137), 1, - anon_sym_RPAREN, - STATE(205), 1, - sym_comma_sep, - STATE(313), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15102] = 4, - ACTIONS(1139), 1, - anon_sym_DQUOTE, - STATE(308), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1141), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15117] = 4, - ACTIONS(1143), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15132] = 4, - ACTIONS(1145), 1, - anon_sym_DQUOTE, - STATE(300), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1147), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15147] = 4, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15162] = 4, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15177] = 4, - ACTIONS(1153), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15192] = 4, - ACTIONS(1155), 1, - anon_sym_DQUOTE, - STATE(304), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1157), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15207] = 4, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - STATE(303), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1161), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15222] = 4, - ACTIONS(1163), 1, - anon_sym_DQUOTE, - STATE(302), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1165), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15237] = 4, - ACTIONS(1167), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15252] = 4, - ACTIONS(1169), 1, - anon_sym_DQUOTE, - STATE(311), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1171), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15267] = 4, - ACTIONS(1173), 1, - anon_sym_DQUOTE, - STATE(296), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1175), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15282] = 4, - ACTIONS(1177), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1133), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15297] = 4, - ACTIONS(1179), 1, - anon_sym_DQUOTE, - STATE(312), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1181), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15312] = 5, - ACTIONS(1090), 1, - anon_sym_RPAREN, - ACTIONS(1184), 1, - anon_sym_COMMA, - STATE(205), 1, - sym_comma_sep, - STATE(313), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15329] = 4, - ACTIONS(1187), 1, - anon_sym_DQUOTE, - STATE(297), 1, - aux_sym_string_repeat1, - ACTIONS(1129), 2, - sym_comment, - sym_block_comment, - ACTIONS(1189), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [15344] = 4, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1193), 1, - anon_sym_RPAREN, - STATE(351), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15358] = 4, - ACTIONS(1191), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(350), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15372] = 4, - ACTIONS(723), 1, - anon_sym_RBRACK, - ACTIONS(1197), 1, - anon_sym_COMMA, - STATE(320), 1, + STATE(352), 1, aux_sym_array_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15386] = 4, - ACTIONS(1199), 1, - anon_sym_RPAREN, - ACTIONS(1201), 1, - anon_sym_COMMA, - STATE(321), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15400] = 4, - ACTIONS(1203), 1, - anon_sym_RPAREN, - ACTIONS(1205), 1, - anon_sym_COMMA, - STATE(319), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15414] = 4, - ACTIONS(1092), 1, + ACTIONS(732), 3, + sym__newline, anon_sym_RBRACK, - ACTIONS(1208), 1, + anon_sym_uff3d, + [18840] = 4, + ACTIONS(1312), 1, anon_sym_COMMA, - STATE(320), 1, + STATE(352), 1, aux_sym_array_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15428] = 4, - ACTIONS(1201), 1, + ACTIONS(1210), 3, + sym__newline, + anon_sym_RBRACK, + anon_sym_uff3d, + [18856] = 4, + ACTIONS(1317), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [18871] = 4, + ACTIONS(1319), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [18886] = 4, + ACTIONS(1321), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1323), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [18901] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1326), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [18916] = 4, + ACTIONS(1328), 1, + sym__newline, + STATE(360), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1326), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [18931] = 4, + ACTIONS(1333), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1330), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [18946] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1335), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [18961] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1337), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [18976] = 4, + ACTIONS(1339), 1, + anon_sym_DQUOTE, + STATE(365), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1341), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [18991] = 4, + ACTIONS(1339), 1, + anon_sym_uff02, + STATE(366), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1343), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19006] = 5, + ACTIONS(1214), 1, anon_sym_COMMA, - ACTIONS(1211), 1, + ACTIONS(1345), 1, anon_sym_RPAREN, - STATE(319), 1, + STATE(167), 1, + sym_comma_sep, + STATE(385), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19023] = 4, + ACTIONS(1347), 1, + sym__newline, + STATE(367), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(669), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19038] = 4, + ACTIONS(1349), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19053] = 4, + ACTIONS(1349), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19068] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1353), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19083] = 4, + ACTIONS(1355), 1, + sym__newline, + STATE(370), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1353), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19098] = 4, + ACTIONS(1357), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19113] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1359), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19128] = 4, + ACTIONS(1361), 1, + anon_sym_DQUOTE, + STATE(375), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1363), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19143] = 4, + ACTIONS(1361), 1, + anon_sym_uff02, + STATE(376), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1365), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19158] = 4, + ACTIONS(1367), 1, + sym__newline, + STATE(377), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(671), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19173] = 4, + ACTIONS(1357), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19188] = 4, + ACTIONS(1369), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19203] = 4, + ACTIONS(1369), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19218] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1371), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19233] = 4, + ACTIONS(1373), 1, + sym__newline, + STATE(379), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1371), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19248] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1375), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19263] = 4, + ACTIONS(1377), 1, + anon_sym_DQUOTE, + STATE(384), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1379), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19278] = 4, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19293] = 4, + ACTIONS(1381), 1, + sym__newline, + STATE(386), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(679), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19308] = 4, + ACTIONS(1383), 1, + anon_sym_DQUOTE, + STATE(369), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1385), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19323] = 4, + ACTIONS(1317), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19338] = 5, + ACTIONS(1232), 1, + anon_sym_RPAREN, + ACTIONS(1387), 1, + anon_sym_COMMA, + STATE(167), 1, + sym_comma_sep, + STATE(385), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19355] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1390), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19370] = 4, + ACTIONS(1392), 1, + sym__newline, + STATE(388), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1390), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19385] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1394), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19400] = 4, + ACTIONS(1396), 1, + anon_sym_DQUOTE, + STATE(391), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1398), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19415] = 4, + ACTIONS(1396), 1, + anon_sym_uff02, + STATE(392), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1400), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19430] = 4, + ACTIONS(1402), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19445] = 4, + ACTIONS(1402), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19460] = 4, + ACTIONS(1404), 1, + anon_sym_DQUOTE, + STATE(395), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1406), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19475] = 4, + ACTIONS(1404), 1, + anon_sym_uff02, + STATE(396), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1408), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19490] = 4, + ACTIONS(1410), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19505] = 4, + ACTIONS(1410), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19520] = 4, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + STATE(399), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1414), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19535] = 4, + ACTIONS(1412), 1, + anon_sym_uff02, + STATE(400), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1416), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19550] = 4, + ACTIONS(1418), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19565] = 4, + ACTIONS(1418), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19580] = 4, + ACTIONS(1420), 1, + anon_sym_DQUOTE, + STATE(403), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1422), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19595] = 4, + ACTIONS(1420), 1, + anon_sym_uff02, + STATE(404), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1424), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19610] = 4, + ACTIONS(1426), 1, + anon_sym_DQUOTE, + STATE(355), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1351), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19625] = 4, + ACTIONS(1426), 1, + anon_sym_uff02, + STATE(358), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1315), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19640] = 4, + ACTIONS(1428), 1, + sym__newline, + STATE(356), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(655), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19655] = 4, + ACTIONS(1383), 1, + anon_sym_uff02, + STATE(374), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1430), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19670] = 4, + ACTIONS(659), 1, + sym__newline, + STATE(347), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1432), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19685] = 4, + ACTIONS(1434), 1, + anon_sym_DQUOTE, + STATE(381), 1, + aux_sym_string_repeat1, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1436), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [19700] = 4, + ACTIONS(1434), 1, + anon_sym_uff02, + STATE(354), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1438), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19715] = 4, + ACTIONS(1440), 1, + sym__newline, + STATE(359), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1432), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19730] = 4, + ACTIONS(1442), 1, + sym__newline, + STATE(407), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(681), 2, + anon_sym_RBRACK, + anon_sym_uff3d, + [19745] = 4, + ACTIONS(1377), 1, + anon_sym_uff02, + STATE(353), 1, + aux_sym_string_repeat2, + ACTIONS(1308), 2, + sym_comment, + sym_block_comment, + ACTIONS(1444), 2, + aux_sym_string_token2, + aux_sym_string_token3, + [19760] = 4, + ACTIONS(1446), 1, + anon_sym_RPAREN, + ACTIONS(1448), 1, + anon_sym_COMMA, + STATE(414), 1, aux_sym_parameter_list_repeat1, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15442] = 3, - ACTIONS(1086), 1, + [19774] = 4, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(1450), 1, + anon_sym_RPAREN, + STATE(415), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19788] = 4, + ACTIONS(1452), 1, + anon_sym_RPAREN, + ACTIONS(1454), 1, + anon_sym_COMMA, + STATE(415), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19802] = 4, + ACTIONS(1457), 1, + sym_identifier, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(450), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19816] = 4, + ACTIONS(1457), 1, + sym_identifier, + ACTIONS(1461), 1, + anon_sym_RPAREN, + STATE(455), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19830] = 3, + ACTIONS(1262), 1, sym__indent, - STATE(127), 1, + STATE(129), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15453] = 2, + [19841] = 3, + ACTIONS(1262), 1, + sym__indent, + STATE(135), 1, + sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - ACTIONS(1203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [15462] = 3, - ACTIONS(1213), 1, + [19852] = 3, + ACTIONS(1266), 1, + sym__indent, + STATE(139), 1, + sym_block, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19863] = 3, + ACTIONS(1463), 1, anon_sym_EQ, - ACTIONS(1215), 1, + ACTIONS(1465), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15473] = 3, - ACTIONS(1088), 1, - sym__indent, - STATE(117), 1, - sym_block, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15484] = 3, - ACTIONS(1088), 1, - sym__indent, - STATE(126), 1, - sym_block, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15495] = 3, - ACTIONS(1088), 1, - sym__indent, - STATE(133), 1, - sym_block, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15506] = 3, - ACTIONS(1086), 1, + [19874] = 3, + ACTIONS(1262), 1, sym__indent, STATE(131), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15517] = 3, - ACTIONS(1086), 1, + [19885] = 3, + ACTIONS(1266), 1, sym__indent, - STATE(119), 1, + STATE(122), 1, sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15528] = 3, - ACTIONS(1217), 1, + [19896] = 3, + ACTIONS(1467), 1, anon_sym_EQ, - ACTIONS(1219), 1, + ACTIONS(1469), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15539] = 2, - ACTIONS(1221), 1, + [19907] = 2, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + ACTIONS(1452), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [19916] = 3, + ACTIONS(1266), 1, + sym__indent, + STATE(124), 1, + sym_block, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15547] = 2, - ACTIONS(1223), 1, + [19927] = 2, + ACTIONS(1471), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19935] = 2, + ACTIONS(1473), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15555] = 2, - ACTIONS(1225), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15563] = 2, - ACTIONS(1227), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15571] = 2, - ACTIONS(1229), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15579] = 2, - ACTIONS(1231), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15587] = 2, - ACTIONS(1233), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15595] = 2, - ACTIONS(1235), 1, + [19943] = 2, + ACTIONS(1475), 1, sym_number, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15603] = 2, - ACTIONS(1237), 1, - sym_number, + [19951] = 2, + ACTIONS(1477), 1, + anon_sym_asciiend, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15611] = 2, - ACTIONS(1239), 1, - anon_sym_RBRACK, + [19959] = 2, + ACTIONS(1479), 1, + anon_sym_asciiend, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15619] = 2, - ACTIONS(1241), 1, + [19967] = 2, + ACTIONS(1481), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [19975] = 2, + ACTIONS(1483), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15627] = 2, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15635] = 2, - ACTIONS(1245), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15643] = 2, - ACTIONS(1247), 1, - sym_module_path, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15651] = 2, - ACTIONS(1249), 1, - sym_module_path, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15659] = 2, - ACTIONS(1251), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15667] = 2, - ACTIONS(1253), 1, - sym_module_path, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15675] = 2, - ACTIONS(1255), 1, + [19983] = 2, + ACTIONS(1485), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15683] = 2, - ACTIONS(1257), 1, - sym_module_path, + [19991] = 2, + ACTIONS(1487), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15691] = 2, - ACTIONS(1259), 1, + [19999] = 2, + ACTIONS(1489), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15699] = 2, - ACTIONS(1261), 1, + [20007] = 2, + ACTIONS(1491), 1, + sym_module_path, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20015] = 2, + ACTIONS(1493), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20023] = 2, + ACTIONS(1495), 1, + sym_number, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20031] = 2, + ACTIONS(1497), 1, + sym_module_path, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20039] = 2, + ACTIONS(1499), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20047] = 2, + ACTIONS(1501), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20055] = 2, + ACTIONS(1503), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15707] = 2, - ACTIONS(1263), 1, + [20063] = 2, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20071] = 2, + ACTIONS(1507), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20079] = 2, + ACTIONS(1509), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20087] = 2, + ACTIONS(1511), 1, sym_module_path, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15715] = 2, - ACTIONS(1265), 1, - anon_sym_RBRACK, + [20095] = 2, + ACTIONS(1513), 1, + sym_ascii_content, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15723] = 2, - ACTIONS(1267), 1, - anon_sym_RBRACK, + [20103] = 2, + ACTIONS(1515), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15731] = 2, - ACTIONS(1269), 1, - sym_number, + [20111] = 2, + ACTIONS(1517), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15739] = 2, - ACTIONS(1271), 1, - sym_number, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15747] = 2, - ACTIONS(1273), 1, + [20119] = 2, + ACTIONS(1519), 1, sym_module_path, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15755] = 2, - ACTIONS(1275), 1, + [20127] = 2, + ACTIONS(1521), 1, + sym_number, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20135] = 2, + ACTIONS(1523), 1, + sym_module_path, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20143] = 2, + ACTIONS(1525), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20151] = 2, + ACTIONS(1527), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20159] = 2, + ACTIONS(1529), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20167] = 2, + ACTIONS(1531), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20175] = 2, + ACTIONS(1533), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20183] = 2, + ACTIONS(1535), 1, + sym_module_path, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20191] = 2, + ACTIONS(1537), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20199] = 2, + ACTIONS(1539), 1, + sym_module_path, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20207] = 2, + ACTIONS(1541), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20215] = 2, + ACTIONS(1543), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20223] = 2, + ACTIONS(1545), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20231] = 2, + ACTIONS(1547), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20239] = 2, + ACTIONS(1549), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20247] = 2, + ACTIONS(1551), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20255] = 2, + ACTIONS(1553), 1, + anon_sym_asciiend, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20263] = 2, + ACTIONS(1555), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20271] = 2, + ACTIONS(1557), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15763] = 2, - ACTIONS(1277), 1, - anon_sym_LPAREN, + [20279] = 2, + ACTIONS(1559), 1, + sym_ascii_content, ACTIONS(3), 2, sym_comment, sym_block_comment, - [15771] = 2, - ACTIONS(1279), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15779] = 2, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15787] = 2, - ACTIONS(1283), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15795] = 2, - ACTIONS(1285), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_block_comment, - [15803] = 2, - ACTIONS(1287), 1, + [20287] = 2, + ACTIONS(1561), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_block_comment, + [20295] = 2, + ACTIONS(1563), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20303] = 2, + ACTIONS(1565), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20311] = 2, + ACTIONS(1567), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20319] = 2, + ACTIONS(1569), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20327] = 2, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20335] = 2, + ACTIONS(1573), 1, + sym_number, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, + [20343] = 2, + ACTIONS(1575), 1, + sym_ascii_content, + ACTIONS(3), 2, + sym_comment, + sym_block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(9)] = 0, - [SMALL_STATE(10)] = 70, - [SMALL_STATE(11)] = 140, - [SMALL_STATE(12)] = 195, - [SMALL_STATE(13)] = 272, - [SMALL_STATE(14)] = 327, - [SMALL_STATE(15)] = 382, - [SMALL_STATE(16)] = 437, - [SMALL_STATE(17)] = 492, - [SMALL_STATE(18)] = 575, - [SMALL_STATE(19)] = 638, - [SMALL_STATE(20)] = 717, - [SMALL_STATE(21)] = 790, - [SMALL_STATE(22)] = 859, - [SMALL_STATE(23)] = 926, - [SMALL_STATE(24)] = 981, - [SMALL_STATE(25)] = 1046, - [SMALL_STATE(26)] = 1101, - [SMALL_STATE(27)] = 1184, - [SMALL_STATE(28)] = 1257, - [SMALL_STATE(29)] = 1312, - [SMALL_STATE(30)] = 1367, - [SMALL_STATE(31)] = 1422, - [SMALL_STATE(32)] = 1485, - [SMALL_STATE(33)] = 1548, - [SMALL_STATE(34)] = 1603, - [SMALL_STATE(35)] = 1658, - [SMALL_STATE(36)] = 1741, - [SMALL_STATE(37)] = 1796, - [SMALL_STATE(38)] = 1851, - [SMALL_STATE(39)] = 1934, - [SMALL_STATE(40)] = 2013, - [SMALL_STATE(41)] = 2096, - [SMALL_STATE(42)] = 2179, - [SMALL_STATE(43)] = 2234, - [SMALL_STATE(44)] = 2289, - [SMALL_STATE(45)] = 2344, - [SMALL_STATE(46)] = 2427, - [SMALL_STATE(47)] = 2510, - [SMALL_STATE(48)] = 2573, - [SMALL_STATE(49)] = 2636, - [SMALL_STATE(50)] = 2699, - [SMALL_STATE(51)] = 2776, - [SMALL_STATE(52)] = 2849, - [SMALL_STATE(53)] = 2904, - [SMALL_STATE(54)] = 2959, - [SMALL_STATE(55)] = 3028, - [SMALL_STATE(56)] = 3095, - [SMALL_STATE(57)] = 3160, - [SMALL_STATE(58)] = 3215, - [SMALL_STATE(59)] = 3288, - [SMALL_STATE(60)] = 3343, - [SMALL_STATE(61)] = 3398, - [SMALL_STATE(62)] = 3453, - [SMALL_STATE(63)] = 3508, - [SMALL_STATE(64)] = 3583, - [SMALL_STATE(65)] = 3658, - [SMALL_STATE(66)] = 3724, - [SMALL_STATE(67)] = 3790, - [SMALL_STATE(68)] = 3843, - [SMALL_STATE(69)] = 3900, - [SMALL_STATE(70)] = 3957, - [SMALL_STATE(71)] = 4010, - [SMALL_STATE(72)] = 4067, - [SMALL_STATE(73)] = 4122, - [SMALL_STATE(74)] = 4177, - [SMALL_STATE(75)] = 4234, - [SMALL_STATE(76)] = 4285, - [SMALL_STATE(77)] = 4336, - [SMALL_STATE(78)] = 4387, - [SMALL_STATE(79)] = 4438, - [SMALL_STATE(80)] = 4489, - [SMALL_STATE(81)] = 4540, - [SMALL_STATE(82)] = 4584, - [SMALL_STATE(83)] = 4628, - [SMALL_STATE(84)] = 4672, - [SMALL_STATE(85)] = 4716, - [SMALL_STATE(86)] = 4760, - [SMALL_STATE(87)] = 4804, - [SMALL_STATE(88)] = 4847, - [SMALL_STATE(89)] = 4894, - [SMALL_STATE(90)] = 4937, - [SMALL_STATE(91)] = 4984, - [SMALL_STATE(92)] = 5031, - [SMALL_STATE(93)] = 5078, - [SMALL_STATE(94)] = 5125, - [SMALL_STATE(95)] = 5172, - [SMALL_STATE(96)] = 5219, - [SMALL_STATE(97)] = 5266, - [SMALL_STATE(98)] = 5313, - [SMALL_STATE(99)] = 5360, - [SMALL_STATE(100)] = 5407, - [SMALL_STATE(101)] = 5454, - [SMALL_STATE(102)] = 5501, - [SMALL_STATE(103)] = 5548, - [SMALL_STATE(104)] = 5590, - [SMALL_STATE(105)] = 5632, - [SMALL_STATE(106)] = 5674, - [SMALL_STATE(107)] = 5716, - [SMALL_STATE(108)] = 5758, - [SMALL_STATE(109)] = 5800, - [SMALL_STATE(110)] = 5842, - [SMALL_STATE(111)] = 5884, - [SMALL_STATE(112)] = 5926, - [SMALL_STATE(113)] = 5968, - [SMALL_STATE(114)] = 6011, - [SMALL_STATE(115)] = 6054, - [SMALL_STATE(116)] = 6094, - [SMALL_STATE(117)] = 6134, - [SMALL_STATE(118)] = 6174, - [SMALL_STATE(119)] = 6214, - [SMALL_STATE(120)] = 6254, - [SMALL_STATE(121)] = 6296, - [SMALL_STATE(122)] = 6336, - [SMALL_STATE(123)] = 6378, - [SMALL_STATE(124)] = 6418, - [SMALL_STATE(125)] = 6458, - [SMALL_STATE(126)] = 6498, - [SMALL_STATE(127)] = 6538, - [SMALL_STATE(128)] = 6578, - [SMALL_STATE(129)] = 6618, - [SMALL_STATE(130)] = 6660, - [SMALL_STATE(131)] = 6700, - [SMALL_STATE(132)] = 6740, - [SMALL_STATE(133)] = 6782, - [SMALL_STATE(134)] = 6822, - [SMALL_STATE(135)] = 6862, - [SMALL_STATE(136)] = 6902, - [SMALL_STATE(137)] = 6942, - [SMALL_STATE(138)] = 6981, - [SMALL_STATE(139)] = 7020, - [SMALL_STATE(140)] = 7059, - [SMALL_STATE(141)] = 7098, - [SMALL_STATE(142)] = 7159, - [SMALL_STATE(143)] = 7220, - [SMALL_STATE(144)] = 7281, - [SMALL_STATE(145)] = 7342, - [SMALL_STATE(146)] = 7403, - [SMALL_STATE(147)] = 7464, - [SMALL_STATE(148)] = 7525, - [SMALL_STATE(149)] = 7586, - [SMALL_STATE(150)] = 7644, - [SMALL_STATE(151)] = 7702, - [SMALL_STATE(152)] = 7757, - [SMALL_STATE(153)] = 7812, - [SMALL_STATE(154)] = 7867, - [SMALL_STATE(155)] = 7922, - [SMALL_STATE(156)] = 7977, - [SMALL_STATE(157)] = 8032, - [SMALL_STATE(158)] = 8087, - [SMALL_STATE(159)] = 8142, - [SMALL_STATE(160)] = 8197, - [SMALL_STATE(161)] = 8252, - [SMALL_STATE(162)] = 8307, - [SMALL_STATE(163)] = 8362, - [SMALL_STATE(164)] = 8417, - [SMALL_STATE(165)] = 8472, - [SMALL_STATE(166)] = 8527, - [SMALL_STATE(167)] = 8582, - [SMALL_STATE(168)] = 8637, - [SMALL_STATE(169)] = 8692, - [SMALL_STATE(170)] = 8747, - [SMALL_STATE(171)] = 8802, - [SMALL_STATE(172)] = 8857, - [SMALL_STATE(173)] = 8912, - [SMALL_STATE(174)] = 8967, - [SMALL_STATE(175)] = 9022, - [SMALL_STATE(176)] = 9077, - [SMALL_STATE(177)] = 9132, - [SMALL_STATE(178)] = 9187, - [SMALL_STATE(179)] = 9242, - [SMALL_STATE(180)] = 9297, - [SMALL_STATE(181)] = 9352, - [SMALL_STATE(182)] = 9407, - [SMALL_STATE(183)] = 9462, - [SMALL_STATE(184)] = 9517, - [SMALL_STATE(185)] = 9572, - [SMALL_STATE(186)] = 9627, - [SMALL_STATE(187)] = 9682, - [SMALL_STATE(188)] = 9737, - [SMALL_STATE(189)] = 9792, - [SMALL_STATE(190)] = 9847, - [SMALL_STATE(191)] = 9902, - [SMALL_STATE(192)] = 9957, - [SMALL_STATE(193)] = 10012, - [SMALL_STATE(194)] = 10067, - [SMALL_STATE(195)] = 10122, - [SMALL_STATE(196)] = 10177, - [SMALL_STATE(197)] = 10232, - [SMALL_STATE(198)] = 10287, - [SMALL_STATE(199)] = 10342, - [SMALL_STATE(200)] = 10397, - [SMALL_STATE(201)] = 10452, - [SMALL_STATE(202)] = 10507, - [SMALL_STATE(203)] = 10562, - [SMALL_STATE(204)] = 10617, - [SMALL_STATE(205)] = 10672, - [SMALL_STATE(206)] = 10727, - [SMALL_STATE(207)] = 10782, - [SMALL_STATE(208)] = 10837, - [SMALL_STATE(209)] = 10892, - [SMALL_STATE(210)] = 10947, - [SMALL_STATE(211)] = 11002, - [SMALL_STATE(212)] = 11057, - [SMALL_STATE(213)] = 11112, - [SMALL_STATE(214)] = 11167, - [SMALL_STATE(215)] = 11222, - [SMALL_STATE(216)] = 11277, - [SMALL_STATE(217)] = 11332, - [SMALL_STATE(218)] = 11387, - [SMALL_STATE(219)] = 11442, - [SMALL_STATE(220)] = 11497, - [SMALL_STATE(221)] = 11552, - [SMALL_STATE(222)] = 11588, - [SMALL_STATE(223)] = 11636, - [SMALL_STATE(224)] = 11672, - [SMALL_STATE(225)] = 11724, - [SMALL_STATE(226)] = 11768, - [SMALL_STATE(227)] = 11804, - [SMALL_STATE(228)] = 11866, - [SMALL_STATE(229)] = 11902, - [SMALL_STATE(230)] = 11958, - [SMALL_STATE(231)] = 12016, - [SMALL_STATE(232)] = 12068, - [SMALL_STATE(233)] = 12104, - [SMALL_STATE(234)] = 12154, - [SMALL_STATE(235)] = 12190, - [SMALL_STATE(236)] = 12236, - [SMALL_STATE(237)] = 12272, - [SMALL_STATE(238)] = 12308, - [SMALL_STATE(239)] = 12344, - [SMALL_STATE(240)] = 12388, - [SMALL_STATE(241)] = 12432, - [SMALL_STATE(242)] = 12468, - [SMALL_STATE(243)] = 12504, - [SMALL_STATE(244)] = 12540, - [SMALL_STATE(245)] = 12607, - [SMALL_STATE(246)] = 12671, - [SMALL_STATE(247)] = 12732, - [SMALL_STATE(248)] = 12793, - [SMALL_STATE(249)] = 12854, - [SMALL_STATE(250)] = 12915, - [SMALL_STATE(251)] = 12976, - [SMALL_STATE(252)] = 13037, - [SMALL_STATE(253)] = 13098, - [SMALL_STATE(254)] = 13159, - [SMALL_STATE(255)] = 13218, - [SMALL_STATE(256)] = 13277, - [SMALL_STATE(257)] = 13309, - [SMALL_STATE(258)] = 13341, - [SMALL_STATE(259)] = 13389, - [SMALL_STATE(260)] = 13443, - [SMALL_STATE(261)] = 13495, - [SMALL_STATE(262)] = 13535, - [SMALL_STATE(263)] = 13593, - [SMALL_STATE(264)] = 13651, - [SMALL_STATE(265)] = 13709, - [SMALL_STATE(266)] = 13767, - [SMALL_STATE(267)] = 13813, - [SMALL_STATE(268)] = 13845, - [SMALL_STATE(269)] = 13877, - [SMALL_STATE(270)] = 13925, - [SMALL_STATE(271)] = 13983, - [SMALL_STATE(272)] = 14041, - [SMALL_STATE(273)] = 14085, - [SMALL_STATE(274)] = 14127, - [SMALL_STATE(275)] = 14185, - [SMALL_STATE(276)] = 14243, - [SMALL_STATE(277)] = 14301, - [SMALL_STATE(278)] = 14333, - [SMALL_STATE(279)] = 14365, - [SMALL_STATE(280)] = 14397, - [SMALL_STATE(281)] = 14429, - [SMALL_STATE(282)] = 14461, - [SMALL_STATE(283)] = 14501, - [SMALL_STATE(284)] = 14541, - [SMALL_STATE(285)] = 14573, - [SMALL_STATE(286)] = 14631, - [SMALL_STATE(287)] = 14663, - [SMALL_STATE(288)] = 14695, - [SMALL_STATE(289)] = 14753, - [SMALL_STATE(290)] = 14811, - [SMALL_STATE(291)] = 14869, - [SMALL_STATE(292)] = 14927, - [SMALL_STATE(293)] = 14985, - [SMALL_STATE(294)] = 15009, - [SMALL_STATE(295)] = 15032, - [SMALL_STATE(296)] = 15055, - [SMALL_STATE(297)] = 15070, - [SMALL_STATE(298)] = 15085, - [SMALL_STATE(299)] = 15102, - [SMALL_STATE(300)] = 15117, - [SMALL_STATE(301)] = 15132, - [SMALL_STATE(302)] = 15147, - [SMALL_STATE(303)] = 15162, - [SMALL_STATE(304)] = 15177, - [SMALL_STATE(305)] = 15192, - [SMALL_STATE(306)] = 15207, - [SMALL_STATE(307)] = 15222, - [SMALL_STATE(308)] = 15237, - [SMALL_STATE(309)] = 15252, - [SMALL_STATE(310)] = 15267, - [SMALL_STATE(311)] = 15282, - [SMALL_STATE(312)] = 15297, - [SMALL_STATE(313)] = 15312, - [SMALL_STATE(314)] = 15329, - [SMALL_STATE(315)] = 15344, - [SMALL_STATE(316)] = 15358, - [SMALL_STATE(317)] = 15372, - [SMALL_STATE(318)] = 15386, - [SMALL_STATE(319)] = 15400, - [SMALL_STATE(320)] = 15414, - [SMALL_STATE(321)] = 15428, - [SMALL_STATE(322)] = 15442, - [SMALL_STATE(323)] = 15453, - [SMALL_STATE(324)] = 15462, - [SMALL_STATE(325)] = 15473, - [SMALL_STATE(326)] = 15484, - [SMALL_STATE(327)] = 15495, - [SMALL_STATE(328)] = 15506, - [SMALL_STATE(329)] = 15517, - [SMALL_STATE(330)] = 15528, - [SMALL_STATE(331)] = 15539, - [SMALL_STATE(332)] = 15547, - [SMALL_STATE(333)] = 15555, - [SMALL_STATE(334)] = 15563, - [SMALL_STATE(335)] = 15571, - [SMALL_STATE(336)] = 15579, - [SMALL_STATE(337)] = 15587, - [SMALL_STATE(338)] = 15595, - [SMALL_STATE(339)] = 15603, - [SMALL_STATE(340)] = 15611, - [SMALL_STATE(341)] = 15619, - [SMALL_STATE(342)] = 15627, - [SMALL_STATE(343)] = 15635, - [SMALL_STATE(344)] = 15643, - [SMALL_STATE(345)] = 15651, - [SMALL_STATE(346)] = 15659, - [SMALL_STATE(347)] = 15667, - [SMALL_STATE(348)] = 15675, - [SMALL_STATE(349)] = 15683, - [SMALL_STATE(350)] = 15691, - [SMALL_STATE(351)] = 15699, - [SMALL_STATE(352)] = 15707, - [SMALL_STATE(353)] = 15715, - [SMALL_STATE(354)] = 15723, - [SMALL_STATE(355)] = 15731, - [SMALL_STATE(356)] = 15739, - [SMALL_STATE(357)] = 15747, - [SMALL_STATE(358)] = 15755, - [SMALL_STATE(359)] = 15763, - [SMALL_STATE(360)] = 15771, - [SMALL_STATE(361)] = 15779, - [SMALL_STATE(362)] = 15787, - [SMALL_STATE(363)] = 15795, - [SMALL_STATE(364)] = 15803, + [SMALL_STATE(11)] = 0, + [SMALL_STATE(12)] = 58, + [SMALL_STATE(13)] = 124, + [SMALL_STATE(14)] = 190, + [SMALL_STATE(15)] = 248, + [SMALL_STATE(16)] = 306, + [SMALL_STATE(17)] = 364, + [SMALL_STATE(18)] = 422, + [SMALL_STATE(19)] = 508, + [SMALL_STATE(20)] = 566, + [SMALL_STATE(21)] = 624, + [SMALL_STATE(22)] = 682, + [SMALL_STATE(23)] = 758, + [SMALL_STATE(24)] = 816, + [SMALL_STATE(25)] = 884, + [SMALL_STATE(26)] = 954, + [SMALL_STATE(27)] = 1026, + [SMALL_STATE(28)] = 1084, + [SMALL_STATE(29)] = 1160, + [SMALL_STATE(30)] = 1242, + [SMALL_STATE(31)] = 1322, + [SMALL_STATE(32)] = 1388, + [SMALL_STATE(33)] = 1474, + [SMALL_STATE(34)] = 1560, + [SMALL_STATE(35)] = 1618, + [SMALL_STATE(36)] = 1676, + [SMALL_STATE(37)] = 1734, + [SMALL_STATE(38)] = 1792, + [SMALL_STATE(39)] = 1850, + [SMALL_STATE(40)] = 1936, + [SMALL_STATE(41)] = 2022, + [SMALL_STATE(42)] = 2108, + [SMALL_STATE(43)] = 2166, + [SMALL_STATE(44)] = 2224, + [SMALL_STATE(45)] = 2282, + [SMALL_STATE(46)] = 2340, + [SMALL_STATE(47)] = 2406, + [SMALL_STATE(48)] = 2472, + [SMALL_STATE(49)] = 2530, + [SMALL_STATE(50)] = 2588, + [SMALL_STATE(51)] = 2646, + [SMALL_STATE(52)] = 2722, + [SMALL_STATE(53)] = 2780, + [SMALL_STATE(54)] = 2848, + [SMALL_STATE(55)] = 2918, + [SMALL_STATE(56)] = 2990, + [SMALL_STATE(57)] = 3048, + [SMALL_STATE(58)] = 3124, + [SMALL_STATE(59)] = 3206, + [SMALL_STATE(60)] = 3286, + [SMALL_STATE(61)] = 3352, + [SMALL_STATE(62)] = 3438, + [SMALL_STATE(63)] = 3496, + [SMALL_STATE(64)] = 3554, + [SMALL_STATE(65)] = 3612, + [SMALL_STATE(66)] = 3670, + [SMALL_STATE(67)] = 3728, + [SMALL_STATE(68)] = 3786, + [SMALL_STATE(69)] = 3844, + [SMALL_STATE(70)] = 3930, + [SMALL_STATE(71)] = 3988, + [SMALL_STATE(72)] = 4071, + [SMALL_STATE(73)] = 4154, + [SMALL_STATE(74)] = 4216, + [SMALL_STATE(75)] = 4278, + [SMALL_STATE(76)] = 4342, + [SMALL_STATE(77)] = 4404, + [SMALL_STATE(78)] = 4468, + [SMALL_STATE(79)] = 4530, + [SMALL_STATE(80)] = 4589, + [SMALL_STATE(81)] = 4648, + [SMALL_STATE(82)] = 4703, + [SMALL_STATE(83)] = 4758, + [SMALL_STATE(84)] = 4804, + [SMALL_STATE(85)] = 4850, + [SMALL_STATE(86)] = 4896, + [SMALL_STATE(87)] = 4942, + [SMALL_STATE(88)] = 4988, + [SMALL_STATE(89)] = 5034, + [SMALL_STATE(90)] = 5083, + [SMALL_STATE(91)] = 5132, + [SMALL_STATE(92)] = 5177, + [SMALL_STATE(93)] = 5226, + [SMALL_STATE(94)] = 5275, + [SMALL_STATE(95)] = 5320, + [SMALL_STATE(96)] = 5369, + [SMALL_STATE(97)] = 5414, + [SMALL_STATE(98)] = 5459, + [SMALL_STATE(99)] = 5504, + [SMALL_STATE(100)] = 5549, + [SMALL_STATE(101)] = 5594, + [SMALL_STATE(102)] = 5639, + [SMALL_STATE(103)] = 5688, + [SMALL_STATE(104)] = 5764, + [SMALL_STATE(105)] = 5840, + [SMALL_STATE(106)] = 5884, + [SMALL_STATE(107)] = 5930, + [SMALL_STATE(108)] = 6006, + [SMALL_STATE(109)] = 6082, + [SMALL_STATE(110)] = 6128, + [SMALL_STATE(111)] = 6204, + [SMALL_STATE(112)] = 6280, + [SMALL_STATE(113)] = 6324, + [SMALL_STATE(114)] = 6400, + [SMALL_STATE(115)] = 6476, + [SMALL_STATE(116)] = 6552, + [SMALL_STATE(117)] = 6628, + [SMALL_STATE(118)] = 6673, + [SMALL_STATE(119)] = 6716, + [SMALL_STATE(120)] = 6759, + [SMALL_STATE(121)] = 6802, + [SMALL_STATE(122)] = 6845, + [SMALL_STATE(123)] = 6888, + [SMALL_STATE(124)] = 6931, + [SMALL_STATE(125)] = 6974, + [SMALL_STATE(126)] = 7017, + [SMALL_STATE(127)] = 7060, + [SMALL_STATE(128)] = 7133, + [SMALL_STATE(129)] = 7176, + [SMALL_STATE(130)] = 7219, + [SMALL_STATE(131)] = 7262, + [SMALL_STATE(132)] = 7305, + [SMALL_STATE(133)] = 7348, + [SMALL_STATE(134)] = 7393, + [SMALL_STATE(135)] = 7466, + [SMALL_STATE(136)] = 7509, + [SMALL_STATE(137)] = 7554, + [SMALL_STATE(138)] = 7597, + [SMALL_STATE(139)] = 7642, + [SMALL_STATE(140)] = 7685, + [SMALL_STATE(141)] = 7728, + [SMALL_STATE(142)] = 7771, + [SMALL_STATE(143)] = 7814, + [SMALL_STATE(144)] = 7856, + [SMALL_STATE(145)] = 7898, + [SMALL_STATE(146)] = 7940, + [SMALL_STATE(147)] = 7982, + [SMALL_STATE(148)] = 8051, + [SMALL_STATE(149)] = 8120, + [SMALL_STATE(150)] = 8189, + [SMALL_STATE(151)] = 8258, + [SMALL_STATE(152)] = 8327, + [SMALL_STATE(153)] = 8396, + [SMALL_STATE(154)] = 8465, + [SMALL_STATE(155)] = 8528, + [SMALL_STATE(156)] = 8591, + [SMALL_STATE(157)] = 8654, + [SMALL_STATE(158)] = 8717, + [SMALL_STATE(159)] = 8780, + [SMALL_STATE(160)] = 8843, + [SMALL_STATE(161)] = 8906, + [SMALL_STATE(162)] = 8969, + [SMALL_STATE(163)] = 9032, + [SMALL_STATE(164)] = 9095, + [SMALL_STATE(165)] = 9158, + [SMALL_STATE(166)] = 9221, + [SMALL_STATE(167)] = 9284, + [SMALL_STATE(168)] = 9347, + [SMALL_STATE(169)] = 9410, + [SMALL_STATE(170)] = 9473, + [SMALL_STATE(171)] = 9536, + [SMALL_STATE(172)] = 9599, + [SMALL_STATE(173)] = 9662, + [SMALL_STATE(174)] = 9725, + [SMALL_STATE(175)] = 9788, + [SMALL_STATE(176)] = 9851, + [SMALL_STATE(177)] = 9914, + [SMALL_STATE(178)] = 9977, + [SMALL_STATE(179)] = 10040, + [SMALL_STATE(180)] = 10103, + [SMALL_STATE(181)] = 10166, + [SMALL_STATE(182)] = 10229, + [SMALL_STATE(183)] = 10292, + [SMALL_STATE(184)] = 10355, + [SMALL_STATE(185)] = 10418, + [SMALL_STATE(186)] = 10481, + [SMALL_STATE(187)] = 10544, + [SMALL_STATE(188)] = 10607, + [SMALL_STATE(189)] = 10670, + [SMALL_STATE(190)] = 10733, + [SMALL_STATE(191)] = 10796, + [SMALL_STATE(192)] = 10859, + [SMALL_STATE(193)] = 10922, + [SMALL_STATE(194)] = 10985, + [SMALL_STATE(195)] = 11048, + [SMALL_STATE(196)] = 11111, + [SMALL_STATE(197)] = 11174, + [SMALL_STATE(198)] = 11237, + [SMALL_STATE(199)] = 11300, + [SMALL_STATE(200)] = 11363, + [SMALL_STATE(201)] = 11426, + [SMALL_STATE(202)] = 11489, + [SMALL_STATE(203)] = 11552, + [SMALL_STATE(204)] = 11615, + [SMALL_STATE(205)] = 11678, + [SMALL_STATE(206)] = 11741, + [SMALL_STATE(207)] = 11804, + [SMALL_STATE(208)] = 11867, + [SMALL_STATE(209)] = 11930, + [SMALL_STATE(210)] = 11993, + [SMALL_STATE(211)] = 12056, + [SMALL_STATE(212)] = 12119, + [SMALL_STATE(213)] = 12182, + [SMALL_STATE(214)] = 12245, + [SMALL_STATE(215)] = 12308, + [SMALL_STATE(216)] = 12371, + [SMALL_STATE(217)] = 12434, + [SMALL_STATE(218)] = 12497, + [SMALL_STATE(219)] = 12560, + [SMALL_STATE(220)] = 12623, + [SMALL_STATE(221)] = 12686, + [SMALL_STATE(222)] = 12749, + [SMALL_STATE(223)] = 12812, + [SMALL_STATE(224)] = 12875, + [SMALL_STATE(225)] = 12938, + [SMALL_STATE(226)] = 13001, + [SMALL_STATE(227)] = 13064, + [SMALL_STATE(228)] = 13127, + [SMALL_STATE(229)] = 13190, + [SMALL_STATE(230)] = 13253, + [SMALL_STATE(231)] = 13316, + [SMALL_STATE(232)] = 13379, + [SMALL_STATE(233)] = 13442, + [SMALL_STATE(234)] = 13505, + [SMALL_STATE(235)] = 13543, + [SMALL_STATE(236)] = 13597, + [SMALL_STATE(237)] = 13635, + [SMALL_STATE(238)] = 13683, + [SMALL_STATE(239)] = 13733, + [SMALL_STATE(240)] = 13785, + [SMALL_STATE(241)] = 13823, + [SMALL_STATE(242)] = 13877, + [SMALL_STATE(243)] = 13937, + [SMALL_STATE(244)] = 13995, + [SMALL_STATE(245)] = 14041, + [SMALL_STATE(246)] = 14105, + [SMALL_STATE(247)] = 14143, + [SMALL_STATE(248)] = 14189, + [SMALL_STATE(249)] = 14235, + [SMALL_STATE(250)] = 14273, + [SMALL_STATE(251)] = 14311, + [SMALL_STATE(252)] = 14349, + [SMALL_STATE(253)] = 14387, + [SMALL_STATE(254)] = 14425, + [SMALL_STATE(255)] = 14463, + [SMALL_STATE(256)] = 14501, + [SMALL_STATE(257)] = 14539, + [SMALL_STATE(258)] = 14577, + [SMALL_STATE(259)] = 14615, + [SMALL_STATE(260)] = 14653, + [SMALL_STATE(261)] = 14691, + [SMALL_STATE(262)] = 14758, + [SMALL_STATE(263)] = 14802, + [SMALL_STATE(264)] = 14848, + [SMALL_STATE(265)] = 14896, + [SMALL_STATE(266)] = 14932, + [SMALL_STATE(267)] = 14982, + [SMALL_STATE(268)] = 15018, + [SMALL_STATE(269)] = 15070, + [SMALL_STATE(270)] = 15108, + [SMALL_STATE(271)] = 15166, + [SMALL_STATE(272)] = 15222, + [SMALL_STATE(273)] = 15266, + [SMALL_STATE(274)] = 15328, + [SMALL_STATE(275)] = 15390, + [SMALL_STATE(276)] = 15426, + [SMALL_STATE(277)] = 15462, + [SMALL_STATE(278)] = 15498, + [SMALL_STATE(279)] = 15534, + [SMALL_STATE(280)] = 15570, + [SMALL_STATE(281)] = 15606, + [SMALL_STATE(282)] = 15674, + [SMALL_STATE(283)] = 15710, + [SMALL_STATE(284)] = 15748, + [SMALL_STATE(285)] = 15786, + [SMALL_STATE(286)] = 15824, + [SMALL_STATE(287)] = 15860, + [SMALL_STATE(288)] = 15898, + [SMALL_STATE(289)] = 15934, + [SMALL_STATE(290)] = 15970, + [SMALL_STATE(291)] = 16006, + [SMALL_STATE(292)] = 16050, + [SMALL_STATE(293)] = 16086, + [SMALL_STATE(294)] = 16122, + [SMALL_STATE(295)] = 16174, + [SMALL_STATE(296)] = 16236, + [SMALL_STATE(297)] = 16272, + [SMALL_STATE(298)] = 16332, + [SMALL_STATE(299)] = 16394, + [SMALL_STATE(300)] = 16454, + [SMALL_STATE(301)] = 16516, + [SMALL_STATE(302)] = 16578, + [SMALL_STATE(303)] = 16638, + [SMALL_STATE(304)] = 16700, + [SMALL_STATE(305)] = 16762, + [SMALL_STATE(306)] = 16824, + [SMALL_STATE(307)] = 16884, + [SMALL_STATE(308)] = 16946, + [SMALL_STATE(309)] = 17006, + [SMALL_STATE(310)] = 17068, + [SMALL_STATE(311)] = 17128, + [SMALL_STATE(312)] = 17161, + [SMALL_STATE(313)] = 17220, + [SMALL_STATE(314)] = 17253, + [SMALL_STATE(315)] = 17312, + [SMALL_STATE(316)] = 17359, + [SMALL_STATE(317)] = 17418, + [SMALL_STATE(318)] = 17451, + [SMALL_STATE(319)] = 17500, + [SMALL_STATE(320)] = 17533, + [SMALL_STATE(321)] = 17588, + [SMALL_STATE(322)] = 17647, + [SMALL_STATE(323)] = 17700, + [SMALL_STATE(324)] = 17741, + [SMALL_STATE(325)] = 17800, + [SMALL_STATE(326)] = 17859, + [SMALL_STATE(327)] = 17918, + [SMALL_STATE(328)] = 17963, + [SMALL_STATE(329)] = 17996, + [SMALL_STATE(330)] = 18029, + [SMALL_STATE(331)] = 18062, + [SMALL_STATE(332)] = 18095, + [SMALL_STATE(333)] = 18128, + [SMALL_STATE(334)] = 18161, + [SMALL_STATE(335)] = 18220, + [SMALL_STATE(336)] = 18253, + [SMALL_STATE(337)] = 18286, + [SMALL_STATE(338)] = 18319, + [SMALL_STATE(339)] = 18352, + [SMALL_STATE(340)] = 18401, + [SMALL_STATE(341)] = 18460, + [SMALL_STATE(342)] = 18501, + [SMALL_STATE(343)] = 18542, + [SMALL_STATE(344)] = 18575, + [SMALL_STATE(345)] = 18634, + [SMALL_STATE(346)] = 18677, + [SMALL_STATE(347)] = 18710, + [SMALL_STATE(348)] = 18745, + [SMALL_STATE(349)] = 18772, + [SMALL_STATE(350)] = 18798, + [SMALL_STATE(351)] = 18824, + [SMALL_STATE(352)] = 18840, + [SMALL_STATE(353)] = 18856, + [SMALL_STATE(354)] = 18871, + [SMALL_STATE(355)] = 18886, + [SMALL_STATE(356)] = 18901, + [SMALL_STATE(357)] = 18916, + [SMALL_STATE(358)] = 18931, + [SMALL_STATE(359)] = 18946, + [SMALL_STATE(360)] = 18961, + [SMALL_STATE(361)] = 18976, + [SMALL_STATE(362)] = 18991, + [SMALL_STATE(363)] = 19006, + [SMALL_STATE(364)] = 19023, + [SMALL_STATE(365)] = 19038, + [SMALL_STATE(366)] = 19053, + [SMALL_STATE(367)] = 19068, + [SMALL_STATE(368)] = 19083, + [SMALL_STATE(369)] = 19098, + [SMALL_STATE(370)] = 19113, + [SMALL_STATE(371)] = 19128, + [SMALL_STATE(372)] = 19143, + [SMALL_STATE(373)] = 19158, + [SMALL_STATE(374)] = 19173, + [SMALL_STATE(375)] = 19188, + [SMALL_STATE(376)] = 19203, + [SMALL_STATE(377)] = 19218, + [SMALL_STATE(378)] = 19233, + [SMALL_STATE(379)] = 19248, + [SMALL_STATE(380)] = 19263, + [SMALL_STATE(381)] = 19278, + [SMALL_STATE(382)] = 19293, + [SMALL_STATE(383)] = 19308, + [SMALL_STATE(384)] = 19323, + [SMALL_STATE(385)] = 19338, + [SMALL_STATE(386)] = 19355, + [SMALL_STATE(387)] = 19370, + [SMALL_STATE(388)] = 19385, + [SMALL_STATE(389)] = 19400, + [SMALL_STATE(390)] = 19415, + [SMALL_STATE(391)] = 19430, + [SMALL_STATE(392)] = 19445, + [SMALL_STATE(393)] = 19460, + [SMALL_STATE(394)] = 19475, + [SMALL_STATE(395)] = 19490, + [SMALL_STATE(396)] = 19505, + [SMALL_STATE(397)] = 19520, + [SMALL_STATE(398)] = 19535, + [SMALL_STATE(399)] = 19550, + [SMALL_STATE(400)] = 19565, + [SMALL_STATE(401)] = 19580, + [SMALL_STATE(402)] = 19595, + [SMALL_STATE(403)] = 19610, + [SMALL_STATE(404)] = 19625, + [SMALL_STATE(405)] = 19640, + [SMALL_STATE(406)] = 19655, + [SMALL_STATE(407)] = 19670, + [SMALL_STATE(408)] = 19685, + [SMALL_STATE(409)] = 19700, + [SMALL_STATE(410)] = 19715, + [SMALL_STATE(411)] = 19730, + [SMALL_STATE(412)] = 19745, + [SMALL_STATE(413)] = 19760, + [SMALL_STATE(414)] = 19774, + [SMALL_STATE(415)] = 19788, + [SMALL_STATE(416)] = 19802, + [SMALL_STATE(417)] = 19816, + [SMALL_STATE(418)] = 19830, + [SMALL_STATE(419)] = 19841, + [SMALL_STATE(420)] = 19852, + [SMALL_STATE(421)] = 19863, + [SMALL_STATE(422)] = 19874, + [SMALL_STATE(423)] = 19885, + [SMALL_STATE(424)] = 19896, + [SMALL_STATE(425)] = 19907, + [SMALL_STATE(426)] = 19916, + [SMALL_STATE(427)] = 19927, + [SMALL_STATE(428)] = 19935, + [SMALL_STATE(429)] = 19943, + [SMALL_STATE(430)] = 19951, + [SMALL_STATE(431)] = 19959, + [SMALL_STATE(432)] = 19967, + [SMALL_STATE(433)] = 19975, + [SMALL_STATE(434)] = 19983, + [SMALL_STATE(435)] = 19991, + [SMALL_STATE(436)] = 19999, + [SMALL_STATE(437)] = 20007, + [SMALL_STATE(438)] = 20015, + [SMALL_STATE(439)] = 20023, + [SMALL_STATE(440)] = 20031, + [SMALL_STATE(441)] = 20039, + [SMALL_STATE(442)] = 20047, + [SMALL_STATE(443)] = 20055, + [SMALL_STATE(444)] = 20063, + [SMALL_STATE(445)] = 20071, + [SMALL_STATE(446)] = 20079, + [SMALL_STATE(447)] = 20087, + [SMALL_STATE(448)] = 20095, + [SMALL_STATE(449)] = 20103, + [SMALL_STATE(450)] = 20111, + [SMALL_STATE(451)] = 20119, + [SMALL_STATE(452)] = 20127, + [SMALL_STATE(453)] = 20135, + [SMALL_STATE(454)] = 20143, + [SMALL_STATE(455)] = 20151, + [SMALL_STATE(456)] = 20159, + [SMALL_STATE(457)] = 20167, + [SMALL_STATE(458)] = 20175, + [SMALL_STATE(459)] = 20183, + [SMALL_STATE(460)] = 20191, + [SMALL_STATE(461)] = 20199, + [SMALL_STATE(462)] = 20207, + [SMALL_STATE(463)] = 20215, + [SMALL_STATE(464)] = 20223, + [SMALL_STATE(465)] = 20231, + [SMALL_STATE(466)] = 20239, + [SMALL_STATE(467)] = 20247, + [SMALL_STATE(468)] = 20255, + [SMALL_STATE(469)] = 20263, + [SMALL_STATE(470)] = 20271, + [SMALL_STATE(471)] = 20279, + [SMALL_STATE(472)] = 20287, + [SMALL_STATE(473)] = 20295, + [SMALL_STATE(474)] = 20303, + [SMALL_STATE(475)] = 20311, + [SMALL_STATE(476)] = 20319, + [SMALL_STATE(477)] = 20327, + [SMALL_STATE(478)] = 20335, + [SMALL_STATE(479)] = 20343, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(132), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(332), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(362), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(216), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(363), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(328), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(345), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(347), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(132), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(190), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(195), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(147), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(185), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(185), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(184), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(301), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), - [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(346), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(336), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(213), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(334), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(326), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(349), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(352), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(63), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(219), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(196), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(144), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(194), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(194), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(191), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(310), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(69), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(339), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(338), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(306), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(74), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(355), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(356), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(305), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 3), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 3), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3), SHIFT(177), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 2), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 2), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 2), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 2), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_statement, 2), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_statement, 2), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 4), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 4), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3), SHIFT(152), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_command, 1), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_command, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_argument, 1), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_argument, 1), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(68), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(355), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(356), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(305), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 1), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 1), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(71), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(339), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(338), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(306), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(72), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(210), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(299), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_argument_repeat1, 2), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(73), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(200), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2), SHIFT_REPEAT(309), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_continuation_repeat1, 2), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_continuation_repeat1, 2), SHIFT_REPEAT(217), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_continuation_repeat1, 2), SHIFT_REPEAT(75), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_continuation_repeat1, 2), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_continuation, 2), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_continuation, 2), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_continuation_repeat1, 2), SHIFT_REPEAT(187), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_continuation_repeat1, 2), SHIFT_REPEAT(77), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_continuation, 1), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_continuation, 1), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_command, 3), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_command, 3), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_args, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_args, 2), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_command, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_command, 2), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_command_repeat1, 2), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_command_repeat1, 2), SHIFT_REPEAT(79), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_command_repeat1, 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_args, 1), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_args, 1), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_command_repeat1, 2), SHIFT_REPEAT(78), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_args_repeat1, 2), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_args_repeat1, 2), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_args_repeat1, 2), SHIFT_REPEAT(294), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_args_repeat1, 2), SHIFT_REPEAT(295), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enchantment_level, 2), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enchantment_level, 2), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star_level, 2), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star_level, 2), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, .production_id = 1), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 1), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 7), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 7), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 1), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 1), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 5), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 5), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 1), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 1), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, .dynamic_precedence = 1), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, .dynamic_precedence = 1), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 3), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 3), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, .dynamic_precedence = 1), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, .dynamic_precedence = 1), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 3), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 2), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3), SHIFT(169), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 1), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_elements_repeat1, 2), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3), SHIFT(220), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comma_sep, 1), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_sep, 1), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(312), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(293), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(343), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_elements_repeat1, 2), SHIFT_REPEAT(156), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1275] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(43), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(16), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(74), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(452), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(439), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(401), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(402), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(78), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(429), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(478), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(389), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(390), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 0), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 0), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ascii_string, 3, 0, 0), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 2), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 2), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 3), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 3), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), SHIFT(202), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 0), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 0), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 4), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 4), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 2), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 2), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ascii_string, 5, 0, 0), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ascii_string, 5, 0, 0), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_statement, 2, 0, 0), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_statement, 2, 0, 0), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), SHIFT(168), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 1, 0), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 1, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_command, 1, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_command, 1, 0, 0), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_print_argument_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_argument, 1, 0, 0), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_argument, 1, 0, 0), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_args_repeat1, 2, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_args_repeat1, 2, 0, 0), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_args_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_args_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enchantment_level, 2, 0, 0), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enchantment_level, 2, 0, 0), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_args, 1, 0, 0), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_args, 1, 0, 0), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_args, 2, 0, 0), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_args, 2, 0, 0), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star_level, 2, 0, 0), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star_level, 2, 0, 0), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 1), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 1), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 3, 0, 0), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 3, 0, 0), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_command, 2, 0, 0), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_command, 2, 0, 0), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 1), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 1), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 5, 0, 0), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 5, 0, 0), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 1), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 1), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 7, 0, 0), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 7, 0, 0), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 3, 0, 0), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_elements, 3, 0, 0), SHIFT(147), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 2, 0, 0), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_elements, 2, 0, 0), SHIFT(147), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 1, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 1, 0), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 0), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, 0, 0), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 1, 0), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 1, 0), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), SHIFT(205), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_elements, 1, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), SHIFT(37), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), SHIFT(204), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_elements_repeat1, 2, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), SHIFT(252), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), SHIFT(332), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), SHIFT(280), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ascii_string, 3, 0, 0), SHIFT(65), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_elements_repeat1, 3, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), SHIFT(187), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comma_sep, 1, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_sep, 1, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(358), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1557] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + ts_external_token_ascii_content = 3, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token_ascii_content] = sym_ascii_content, +}; + +static const bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token_ascii_content] = true, + }, + [2] = { + [ts_external_token__dedent] = true, + }, + [3] = { + [ts_external_token__newline] = true, + [ts_external_token__dedent] = true, + }, + [4] = { + [ts_external_token__newline] = true, + }, + [5] = { + [ts_external_token__indent] = true, + }, + [6] = { + [ts_external_token_ascii_content] = true, + }, }; #ifdef __cplusplus @@ -17806,13 +21755,17 @@ bool tree_sitter_stonescript_external_scanner_scan(void *, TSLexer *, const bool unsigned tree_sitter_stonescript_external_scanner_serialize(void *, char *); void tree_sitter_stonescript_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_stonescript(void) { +TS_PUBLIC const TSLanguage *tree_sitter_stonescript(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -17834,7 +21787,7 @@ extern const TSLanguage *tree_sitter_stonescript(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, diff --git a/src/scanner.c b/src/scanner.c index fb04abb..dc1c423 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -6,7 +6,7 @@ enum TokenType { NEWLINE, INDENT, DEDENT, -// ASCII_CONTENT, + ASCII_CONTENT, }; // ... (skipping to logic) @@ -101,64 +101,64 @@ void tree_sitter_stonescript_external_scanner_deserialize(void *payload, const c bool tree_sitter_stonescript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { Scanner *scanner = (Scanner *)payload; -// if (valid_symbols[ASCII_CONTENT]) { -// bool has_content = false; -// -// for (;;) { -// if (lexer->eof(lexer)) { -// break; -// } -// -// // Check if we're at the start of a line with 'asciiend' -// if (lexer->lookahead == '\n' || lexer->lookahead == '\r') { -// lexer->advance(lexer, false); -// if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { -// lexer->advance(lexer, false); -// } -// lexer->mark_end(lexer); -// has_content = true; -// -// // Skip whitespace at the start of the line -// while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { -// lexer->advance(lexer, false); -// } -// -// // Check if this line starts with 'asciiend' -// if (lexer->lookahead == 'a') { -// const char *keyword = "asciiend"; -// bool match = true; -// -// for (int k = 0; k < 8; k++) { -// if (lexer->lookahead == keyword[k]) { -// lexer->advance(lexer, false); -// } else { -// match = false; -// break; -// } -// } -// -// // Check that asciiend is followed by whitespace or EOL -// if (match && (lexer->lookahead == '\n' || lexer->lookahead == '\r' || -// lexer->lookahead == ' ' || lexer->lookahead == '\t' || -// lexer->lookahead == ',' || -// lexer->eof(lexer))) { -// lexer->result_symbol = ASCII_CONTENT; -// return has_content; -// } -// -// // Failed to match asciiend, mark the current position -// lexer->mark_end(lexer); -// } -// } else { -// lexer->advance(lexer, false); -// lexer->mark_end(lexer); -// has_content = true; -// } -// } -// -// lexer->result_symbol = ASCII_CONTENT; -// return has_content; -// } + if (valid_symbols[ASCII_CONTENT]) { + bool has_content = false; + + for (;;) { + if (lexer->eof(lexer)) { + break; + } + + // Check if we're at the start of a line with 'asciiend' + if (lexer->lookahead == '\n' || lexer->lookahead == '\r') { + lexer->advance(lexer, false); + if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { + lexer->advance(lexer, false); + } + lexer->mark_end(lexer); + has_content = true; + + // Skip whitespace at the start of the line + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + lexer->advance(lexer, false); + } + + // Check if this line starts with 'asciiend' + if (lexer->lookahead == 'a') { + const char *keyword = "asciiend"; + bool match = true; + + for (int k = 0; k < 8; k++) { + if (lexer->lookahead == keyword[k]) { + lexer->advance(lexer, false); + } else { + match = false; + break; + } + } + + // Check that asciiend is followed by whitespace or EOL + if (match && (lexer->lookahead == '\n' || lexer->lookahead == '\r' || + lexer->lookahead == ' ' || lexer->lookahead == '\t' || + lexer->lookahead == ',' || + lexer->eof(lexer))) { + lexer->result_symbol = ASCII_CONTENT; + return has_content; + } + + // Failed to match asciiend, mark the current position + lexer->mark_end(lexer); + } + } else { + lexer->advance(lexer, false); + lexer->mark_end(lexer); + has_content = true; + } + } + + lexer->result_symbol = ASCII_CONTENT; + return has_content; + } if (scanner->queued_tokens_size > 0) { enum TokenType token = scanner->queued_tokens[0];