From e62088ee875ae36005de310c46bb2798d6ca7826 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 15 Nov 2024 21:01:47 +0100 Subject: [PATCH] improve highlighting --- grammar.js | 19 +- queries/highlights.scm | 5 +- src/grammar.json | 159 +- src/node-types.json | 6 +- src/parser.c | 5566 ++++++++++++++++++++-------------------- 5 files changed, 2971 insertions(+), 2784 deletions(-) diff --git a/grammar.js b/grammar.js index dc3d341..1013867 100644 --- a/grammar.js +++ b/grammar.js @@ -6,6 +6,7 @@ module.exports = grammar({ _unspaced_statement: $ => seq( choice( $.string, + $.number, $.function_definition, $.type_definition, $.with_expr, @@ -16,7 +17,6 @@ module.exports = grammar({ $.use, $.include, $.def, - $.number, $.call_expr, seq( repeat('&'), @@ -41,7 +41,7 @@ module.exports = grammar({ repeat($._statement), '}', ), - identifier: $ => /[^ \n\r\t<>:;&{}"'\[\]]+/, + identifier: $ => /[^ \n\r\t<>:;&{}"'\[\],]+/, call: $ => choice( seq( optional($.call), @@ -52,20 +52,20 @@ module.exports = grammar({ $.operation, $.identifier, ), - number: $ => /\d+(\.\d+)?/, - string: $ => seq('"', repeat(choice(/\\./, /./)), '"'), + number: $ => token(prec(10, /\d+(\.\d+)?/)), + string: $ => choice( + token(prec(10, seq('^', /[^ \n\r\t<>:;&{}"'\[\],]+/))), + seq('"', repeat(choice(/\\./, /./)), '"'), + ), call_expr: $ => seq('<', optional($._spacing), repeat($._statement), $._unspaced_statement, '>'), with_expr: $ => seq( 'with', $._spacing, - repeat($.identifier), + repeat(seq($.identifier, $._spacing)), ';', ), array: $ => seq('[', $._spacing, optional(repeat($._statement)), ']'), operation: $ => choice(/[+\-*\/%&]/, "=>!", "=>?", "=>?!", "=>"), - variable: $ => choice( - seq('def', $._spacing, $.identifier), - seq('=', $.identifier), - ), + set_variable: $ => seq('=', $.identifier), type_definition: $ => seq( 'construct', $._spacing, $.call, $._spacing, @@ -115,6 +115,7 @@ module.exports = grammar({ def: $ => seq( 'def', $._spacing, $.identifier, + optional(repeat(seq(',', $._spacing, $.identifier))) ), }, }); diff --git a/queries/highlights.scm b/queries/highlights.scm index 2d83273..69f489c 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -12,4 +12,7 @@ (number) @number (string) @string -(call (call) @function (identifier) @property) \ No newline at end of file +(call (identifier) @function) +(call (call) @function (identifier) @property) +(def (identifier) @local.definition) +(with_expr (identifier) @local.definition) diff --git a/src/grammar.json b/src/grammar.json index 0a18832..6a5b197 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -24,6 +24,10 @@ "type": "SYMBOL", "name": "string" }, + { + "type": "SYMBOL", + "name": "number" + }, { "type": "SYMBOL", "name": "function_definition" @@ -64,10 +68,6 @@ "type": "SYMBOL", "name": "def" }, - { - "type": "SYMBOL", - "name": "number" - }, { "type": "SYMBOL", "name": "call_expr" @@ -272,7 +272,7 @@ }, "identifier": { "type": "PATTERN", - "value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\]]+" + "value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\],]+" }, "call": { "type": "CHOICE", @@ -328,35 +328,67 @@ ] }, "number": { - "type": "PATTERN", - "value": "\\d+(\\.\\d+)?" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 10, + "content": { + "type": "PATTERN", + "value": "\\d+(\\.\\d+)?" + } + } }, "string": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", + "type": "TOKEN", "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\\\." - }, - { - "type": "PATTERN", - "value": "." - } - ] + "type": "PREC", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "PATTERN", + "value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\],]+" + } + ] + } } }, { - "type": "STRING", - "value": "\"" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\\\." + }, + { + "type": "PATTERN", + "value": "." + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] } ] }, @@ -410,8 +442,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_spacing" + } + ] } }, { @@ -477,38 +518,16 @@ } ] }, - "variable": { - "type": "CHOICE", + "set_variable": { + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "def" - }, - { - "type": "SYMBOL", - "name": "_spacing" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "STRING", + "value": "=" }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } ] }, @@ -845,6 +864,34 @@ { "type": "SYMBOL", "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_spacing" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/node-types.json b/src/node-types.json index a65033f..faf5f11 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -314,7 +314,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -658,6 +658,10 @@ "type": "&", "named": false }, + { + "type": ",", + "named": false + }, { "type": ":", "named": false diff --git a/src/parser.c b/src/parser.c index ceebc8a..54c4ff4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 186 +#define STATE_COUNT 191 #define LARGE_STATE_COUNT 33 -#define SYMBOL_COUNT 64 +#define SYMBOL_COUNT 66 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 36 +#define TOKEN_COUNT 38 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -29,56 +29,58 @@ enum ts_symbol_identifiers { sym_identifier = 11, anon_sym_COLON = 12, sym_number = 13, - anon_sym_DQUOTE = 14, - aux_sym_string_token1 = 15, - anon_sym_LT = 16, - anon_sym_GT = 17, - anon_sym_with = 18, - anon_sym_LBRACK = 19, - anon_sym_RBRACK = 20, - aux_sym_operation_token1 = 21, - anon_sym_EQ_GT_BANG = 22, - anon_sym_EQ_GT_QMARK = 23, - anon_sym_EQ_GT_QMARK_BANG = 24, - anon_sym_EQ_GT = 25, - anon_sym_construct = 26, - anon_sym_namespace = 27, - sym__spacing = 28, - anon_sym_if = 29, - anon_sym_while = 30, - anon_sym_catch = 31, - anon_sym_include = 32, - anon_sym_in = 33, - anon_sym_use = 34, - anon_sym_def = 35, - sym_source_file = 36, - sym__unspaced_statement = 37, - sym__statement = 38, - sym_function_definition = 39, - sym_func = 40, - sym_blocky = 41, - sym_block = 42, - sym_call = 43, - sym_string = 44, - sym_call_expr = 45, - sym_with_expr = 46, - sym_array = 47, - sym_operation = 48, - sym_type_definition = 49, - sym_if = 50, - sym_while = 51, - sym_catch = 52, - sym_include = 53, - sym_use = 54, - sym_def = 55, - aux_sym_source_file_repeat1 = 56, - aux_sym__unspaced_statement_repeat1 = 57, - aux_sym_blocky_repeat1 = 58, - aux_sym_block_repeat1 = 59, - aux_sym_string_repeat1 = 60, - aux_sym_with_expr_repeat1 = 61, - aux_sym_type_definition_repeat1 = 62, - aux_sym_type_definition_repeat2 = 63, + aux_sym_string_token1 = 14, + anon_sym_DQUOTE = 15, + aux_sym_string_token2 = 16, + anon_sym_LT = 17, + anon_sym_GT = 18, + anon_sym_with = 19, + anon_sym_LBRACK = 20, + anon_sym_RBRACK = 21, + aux_sym_operation_token1 = 22, + anon_sym_EQ_GT_BANG = 23, + anon_sym_EQ_GT_QMARK = 24, + anon_sym_EQ_GT_QMARK_BANG = 25, + anon_sym_EQ_GT = 26, + anon_sym_construct = 27, + anon_sym_namespace = 28, + sym__spacing = 29, + anon_sym_if = 30, + anon_sym_while = 31, + anon_sym_catch = 32, + anon_sym_include = 33, + anon_sym_in = 34, + anon_sym_use = 35, + anon_sym_def = 36, + anon_sym_COMMA = 37, + sym_source_file = 38, + sym__unspaced_statement = 39, + sym__statement = 40, + sym_function_definition = 41, + sym_func = 42, + sym_blocky = 43, + sym_block = 44, + sym_call = 45, + sym_string = 46, + sym_call_expr = 47, + sym_with_expr = 48, + sym_array = 49, + sym_operation = 50, + sym_type_definition = 51, + sym_if = 52, + sym_while = 53, + sym_catch = 54, + sym_include = 55, + sym_use = 56, + sym_def = 57, + aux_sym_source_file_repeat1 = 58, + aux_sym__unspaced_statement_repeat1 = 59, + aux_sym_blocky_repeat1 = 60, + aux_sym_block_repeat1 = 61, + aux_sym_string_repeat1 = 62, + aux_sym_with_expr_repeat1 = 63, + aux_sym_type_definition_repeat1 = 64, + aux_sym_def_repeat1 = 65, }; static const char * const ts_symbol_names[] = { @@ -96,8 +98,9 @@ static const char * const ts_symbol_names[] = { [sym_identifier] = "identifier", [anon_sym_COLON] = ":", [sym_number] = "number", - [anon_sym_DQUOTE] = "\"", [aux_sym_string_token1] = "string_token1", + [anon_sym_DQUOTE] = "\"", + [aux_sym_string_token2] = "string_token2", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_with] = "with", @@ -118,6 +121,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_in] = "in", [anon_sym_use] = "use", [anon_sym_def] = "def", + [anon_sym_COMMA] = ",", [sym_source_file] = "source_file", [sym__unspaced_statement] = "_unspaced_statement", [sym__statement] = "_statement", @@ -145,7 +149,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_with_expr_repeat1] = "with_expr_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", - [aux_sym_type_definition_repeat2] = "type_definition_repeat2", + [aux_sym_def_repeat1] = "def_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -163,8 +167,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier] = sym_identifier, [anon_sym_COLON] = anon_sym_COLON, [sym_number] = sym_number, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_string_token2] = aux_sym_string_token2, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [anon_sym_with] = anon_sym_with, @@ -185,6 +190,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_in] = anon_sym_in, [anon_sym_use] = anon_sym_use, [anon_sym_def] = anon_sym_def, + [anon_sym_COMMA] = anon_sym_COMMA, [sym_source_file] = sym_source_file, [sym__unspaced_statement] = sym__unspaced_statement, [sym__statement] = sym__statement, @@ -212,7 +218,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_with_expr_repeat1] = aux_sym_with_expr_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, - [aux_sym_type_definition_repeat2] = aux_sym_type_definition_repeat2, + [aux_sym_def_repeat1] = aux_sym_def_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -272,11 +278,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym_string_token1] = { + .visible = false, + .named = false, + }, [anon_sym_DQUOTE] = { .visible = true, .named = false, }, - [aux_sym_string_token1] = { + [aux_sym_string_token2] = { .visible = false, .named = false, }, @@ -360,6 +370,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, [sym_source_file] = { .visible = true, .named = true, @@ -468,7 +482,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_type_definition_repeat2] = { + [aux_sym_def_repeat1] = { .visible = false, .named = false, }, @@ -489,8 +503,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 2, - [7] = 7, + [6] = 6, + [7] = 2, [8] = 8, [9] = 9, [10] = 10, @@ -535,12 +549,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 51, - [52] = 46, - [53] = 43, + [52] = 52, + [53] = 53, [54] = 54, [55] = 55, - [56] = 56, - [57] = 57, + [56] = 50, + [57] = 52, [58] = 58, [59] = 59, [60] = 60, @@ -585,7 +599,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [99] = 99, [100] = 100, [101] = 101, - [102] = 102, + [102] = 36, [103] = 103, [104] = 104, [105] = 105, @@ -602,12 +616,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [116] = 116, [117] = 117, [118] = 118, - [119] = 36, - [120] = 88, - [121] = 54, + [119] = 119, + [120] = 120, + [121] = 121, [122] = 122, - [123] = 123, - [124] = 124, + [123] = 89, + [124] = 93, [125] = 125, [126] = 126, [127] = 127, @@ -667,13 +681,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [181] = 181, [182] = 182, [183] = 183, - [184] = 182, + [184] = 184, [185] = 185, + [186] = 186, + [187] = 165, + [188] = 188, + [189] = 189, + [190] = 190, }; static TSCharacterRange sym_identifier_character_set_1[] = { - {0, 0x08}, {0x0b, '\f'}, {0x0e, 0x1f}, {'!', '!'}, {'#', '%'}, {'(', '9'}, {'=', '='}, {'?', 'Z'}, - {'\\', '\\'}, {'^', 'z'}, {'|', '|'}, {'~', 0x10ffff}, + {0, 0x08}, {0x0b, '\f'}, {0x0e, 0x1f}, {'!', '!'}, {'#', '%'}, {'(', '+'}, {'-', '9'}, {'=', '='}, + {'?', 'Z'}, {'\\', '\\'}, {'^', 'z'}, {'|', '|'}, {'~', 0x10ffff}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -681,20 +700,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(46); + if (eof) ADVANCE(47); ADVANCE_MAP( - '!', 52, - '"', 104, - '&', 47, - ':', 101, - ';', 48, - '<', 106, + '!', 53, + '"', 107, + '&', 48, + ',', 138, + ':', 102, + ';', 49, + '<', 109, '=', 8, - '>', 107, - '@', 51, - '[', 110, - '\\', 44, - ']', 111, + '>', 110, + '@', 52, + '[', 113, + '\\', 45, + ']', 114, + '^', 44, 'c', 9, 'd', 16, 'f', 40, @@ -702,74 +723,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'n', 10, 'u', 34, 'w', 23, - '{', 53, - '|', 61, - '}', 58, - '%', 112, - '*', 112, - '+', 112, - '-', 112, - '/', 112, + '{', 54, + '|', 62, + '}', 59, + '%', 115, + '*', 115, + '+', 115, + '-', 115, + '/', 115, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); END_STATE(); case 1: if (lookahead == '\n') SKIP(1); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '}') ADVANCE(58); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '}') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(56); - if (lookahead != 0) ADVANCE(54); + lookahead == ' ') ADVANCE(57); + if (lookahead != 0) ADVANCE(55); END_STATE(); case 2: if (lookahead == '\n') SKIP(2); - if (lookahead == '"') ADVANCE(104); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '"') ADVANCE(107); + if (lookahead == '\\') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(55); - if (lookahead != 0) ADVANCE(54); + lookahead == ' ') ADVANCE(56); + if (lookahead != 0) ADVANCE(55); END_STATE(); case 3: ADVANCE_MAP( - '"', 104, - '&', 47, - ':', 101, - '<', 106, + '"', 107, + '&', 48, + ':', 102, + '<', 109, '=', 66, - '[', 110, + '[', 113, + '^', 100, 'c', 67, 'd', 73, 'f', 95, 'i', 77, 'u', 88, 'w', 79, - '{', 53, + '{', 54, 0x0b, 64, '\f', 64, '(', 98, ')', 98, - '\t', 120, - '\n', 120, - '\r', 120, - ' ', 120, - '%', 100, - '*', 100, - '+', 100, - '-', 100, - '/', 100, + '\t', 123, + '\n', 123, + '\r', 123, + ' ', 123, + '%', 101, + '*', 101, + '+', 101, + '-', 101, + '/', 101, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); if (lookahead != 0 && - (lookahead < '%' || '+' < lookahead) && + (lookahead < '%' || '-' < lookahead) && (lookahead < '/' || '>' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(100); + lookahead != '^' && + lookahead != '}') ADVANCE(101); END_STATE(); case 4: - if (lookahead == '&') ADVANCE(47); - if (lookahead == ':') ADVANCE(101); + if (lookahead == '&') ADVANCE(48); + if (lookahead == ':') ADVANCE(102); if (lookahead == '=') ADVANCE(66); if (lookahead == 0x0b || lookahead == '\f') ADVANCE(65); @@ -779,30 +802,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || lookahead == '-' || - lookahead == '/') ADVANCE(100); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + lookahead == '/') ADVANCE(101); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 5: - if (lookahead == '&') ADVANCE(47); - if (lookahead == ';') ADVANCE(48); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '}') ADVANCE(58); + if (lookahead == '&') ADVANCE(48); + if (lookahead == ';') ADVANCE(49); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '}') ADVANCE(59); if (lookahead == 0x0b || lookahead == '\f') ADVANCE(97); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '&' && - lookahead != '\'' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']') ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 6: - if (lookahead == '&') ADVANCE(112); - if (lookahead == ':') ADVANCE(101); + if (lookahead == '&') ADVANCE(115); + if (lookahead == ':') ADVANCE(102); if (lookahead == '=') ADVANCE(66); if (lookahead == 0x0b || lookahead == '\f') ADVANCE(65); @@ -812,23 +828,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || lookahead == '-' || - lookahead == '/') ADVANCE(100); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + lookahead == '/') ADVANCE(101); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 7: - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(48); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '>') ADVANCE(107); + if (lookahead == ',') ADVANCE(138); + if (lookahead == ':') ADVANCE(102); + if (lookahead == ';') ADVANCE(49); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '>') ADVANCE(110); if (lookahead == 0x0b || lookahead == '\f') SKIP(7); if (lookahead == '(' || - lookahead == ')') ADVANCE(122); + lookahead == ')') ADVANCE(125); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(121); + lookahead == ' ') ADVANCE(124); END_STATE(); case 8: - if (lookahead == '>') ADVANCE(116); + if (lookahead == '>') ADVANCE(119); END_STATE(); case 9: if (lookahead == 'a') ADVANCE(36); @@ -841,7 +858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(15); END_STATE(); case 12: - if (lookahead == 'c') ADVANCE(49); + if (lookahead == 'c') ADVANCE(50); END_STATE(); case 13: if (lookahead == 'c') ADVANCE(25); @@ -856,33 +873,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(22); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'e') ADVANCE(122); END_STATE(); case 20: if (lookahead == 'e') ADVANCE(33); END_STATE(); case 21: - if (lookahead == 'f') ADVANCE(123); - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'f') ADVANCE(126); + if (lookahead == 'n') ADVANCE(133); END_STATE(); case 22: - if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'f') ADVANCE(136); END_STATE(); case 23: if (lookahead == 'h') ADVANCE(26); if (lookahead == 'i') ADVANCE(37); END_STATE(); case 24: - if (lookahead == 'h') ADVANCE(108); + if (lookahead == 'h') ADVANCE(111); END_STATE(); case 25: - if (lookahead == 'h') ADVANCE(127); + if (lookahead == 'h') ADVANCE(130); END_STATE(); case 26: if (lookahead == 'i') ADVANCE(27); @@ -924,7 +941,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(32); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(117); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 40: if (lookahead == 'u') ADVANCE(30); @@ -933,140 +950,140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(14); END_STATE(); case 42: - if (lookahead == '|') ADVANCE(61); + if (lookahead == '|') ADVANCE(62); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(59); + lookahead == '\f') ADVANCE(60); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42); - if (lookahead != 0) ADVANCE(60); + if (lookahead != 0) ADVANCE(61); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 44: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(106); END_STATE(); case 45: - if (eof) ADVANCE(46); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(108); + END_STATE(); + case 46: + if (eof) ADVANCE(47); ADVANCE_MAP( - '"', 104, - '&', 47, - ':', 101, - '<', 106, + '"', 107, + '&', 48, + ':', 102, + '<', 109, '=', 66, - '[', 110, - ']', 111, + '[', 113, + ']', 114, + '^', 100, 'c', 67, 'd', 73, 'f', 95, 'i', 77, 'u', 88, 'w', 79, - '{', 53, - '}', 58, + '{', 54, + '}', 59, 0x0b, 63, '\f', 63, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(46); if (lookahead == '%' || lookahead == '*' || lookahead == '+' || lookahead == '-' || - lookahead == '/') ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); + lookahead == '/') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); if (lookahead != 0 && (lookahead < '%' || '\'' < lookahead) && - (lookahead < '/' || '>' < lookahead)) ADVANCE(100); - END_STATE(); - case 46: - ACCEPT_TOKEN(ts_builtin_sym_end); + (lookahead < '*' || '-' < lookahead) && + (lookahead < '/' || '>' < lookahead)) ADVANCE(101); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_func); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 50: ACCEPT_TOKEN(anon_sym_func); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_func); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 54: - ACCEPT_TOKEN(aux_sym_blocky_token1); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 55: ACCEPT_TOKEN(aux_sym_blocky_token1); - if (lookahead == '"') ADVANCE(104); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(55); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(54); END_STATE(); case 56: ACCEPT_TOKEN(aux_sym_blocky_token1); - if (lookahead == '{') ADVANCE(53); - if (lookahead == '}') ADVANCE(58); + if (lookahead == '"') ADVANCE(107); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(56); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(54); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(55); END_STATE(); case 57: ACCEPT_TOKEN(aux_sym_blocky_token1); + if (lookahead == '{') ADVANCE(54); + if (lookahead == '}') ADVANCE(59); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(57); if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(55); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(aux_sym_blocky_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(108); END_STATE(); case 59: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 60: ACCEPT_TOKEN(aux_sym_block_token1); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(59); + lookahead == '\f') ADVANCE(60); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '|') ADVANCE(60); + lookahead != '|') ADVANCE(61); END_STATE(); - case 60: + case 61: ACCEPT_TOKEN(aux_sym_block_token1); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '|') ADVANCE(60); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_PIPE); + lookahead != '|') ADVANCE(61); END_STATE(); case 62: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 63: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( '=', 66, + '^', 100, 'c', 67, 'd', 73, 'f', 95, @@ -1075,19 +1092,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 79, 0x0b, 63, '\f', 63, - '%', 100, - '*', 100, - '+', 100, - '-', 100, - '/', 100, + '%', 101, + '*', 101, + '+', 101, + '-', 101, + '/', 101, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 64: ACCEPT_TOKEN(sym_identifier); ADVANCE_MAP( '=', 66, + '^', 100, 'c', 67, 'd', 73, 'f', 95, @@ -1098,18 +1116,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\f', 64, '(', 98, ')', 98, - '\t', 120, - '\n', 120, - '\r', 120, - ' ', 120, - '%', 100, - '*', 100, - '+', 100, - '-', 100, - '/', 100, + '\t', 123, + '\n', 123, + '\r', 123, + ' ', 123, + '%', 101, + '*', 101, + '+', 101, + '-', 101, + '/', 101, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 65: ACCEPT_TOKEN(sym_identifier); @@ -1120,172 +1138,172 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || lookahead == '-' || - lookahead == '/') ADVANCE(100); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + lookahead == '/') ADVANCE(101); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 66: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(116); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == '>') ADVANCE(119); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 67: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(93); if (lookahead == 'o') ADVANCE(85); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 68: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(83); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 69: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(50); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'c') ADVANCE(51); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 70: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(81); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 71: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(92); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 72: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'd') ADVANCE(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 73: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(78); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 74: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(132); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'e') ADVANCE(135); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 75: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(126); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'e') ADVANCE(129); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 76: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(129); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'e') ADVANCE(132); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 77: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(124); + if (lookahead == 'f') ADVANCE(127); if (lookahead == 'n') ADVANCE(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 78: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(134); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'f') ADVANCE(137); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 79: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'h') ADVANCE(82); if (lookahead == 'i') ADVANCE(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 80: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(109); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'h') ADVANCE(112); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 81: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(128); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 'h') ADVANCE(131); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 82: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'i') ADVANCE(84); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 83: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(94); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 84: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(75); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 85: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') ADVANCE(89); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 86: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'n') ADVANCE(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 87: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(96); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 88: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(91); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 90: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(80); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 91: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(87); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 92: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(118); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (lookahead == 't') ADVANCE(121); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 93: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 94: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 95: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(86); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 96: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(71); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 97: ACCEPT_TOKEN(sym_identifier); if (lookahead == 0x0b || lookahead == '\f') ADVANCE(97); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 98: ACCEPT_TOKEN(sym_identifier); @@ -1294,151 +1312,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(122); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + lookahead == ' ') ADVANCE(125); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 99: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 100: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(106); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 102: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(102); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 103: ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); END_STATE(); case 105: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(aux_sym_string_token1); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(106); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_with); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 112: - ACCEPT_TOKEN(aux_sym_operation_token1); + ACCEPT_TOKEN(anon_sym_with); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_EQ_GT_BANG); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_EQ_GT_QMARK); - if (lookahead == '!') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_EQ_GT_QMARK_BANG); + ACCEPT_TOKEN(aux_sym_operation_token1); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_EQ_GT); - if (lookahead == '!') ADVANCE(113); - if (lookahead == '?') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_EQ_GT_BANG); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_construct); + ACCEPT_TOKEN(anon_sym_EQ_GT_QMARK); + if (lookahead == '!') ADVANCE(118); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_construct); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_EQ_GT_QMARK_BANG); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if (lookahead == '!') ADVANCE(116); + if (lookahead == '?') ADVANCE(117); END_STATE(); case 120: + ACCEPT_TOKEN(anon_sym_construct); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_construct); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 123: ACCEPT_TOKEN(sym__spacing); + if (lookahead == '^') ADVANCE(100); if (lookahead == 0x0b || lookahead == '\f') ADVANCE(64); if (lookahead == '(' || lookahead == ')') ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(120); + lookahead == ' ') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(sym__spacing); if (lookahead == '(' || - lookahead == ')') ADVANCE(122); + lookahead == ')') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(121); + lookahead == ' ') ADVANCE(124); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(sym__spacing); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ' || lookahead == '(' || - lookahead == ')') ADVANCE(122); - END_STATE(); - case 123: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_while); + lookahead == ')') ADVANCE(125); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_include); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + ACCEPT_TOKEN(anon_sym_include); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 134: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); + END_STATE(); + case 136: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(sym_identifier_character_set_1, 12, lookahead))) ADVANCE(100); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(101); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); default: return false; @@ -1447,71 +1483,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 45}, - [2] = {.lex_state = 45}, - [3] = {.lex_state = 45}, - [4] = {.lex_state = 45}, - [5] = {.lex_state = 45}, - [6] = {.lex_state = 45}, - [7] = {.lex_state = 45}, - [8] = {.lex_state = 45}, - [9] = {.lex_state = 45}, - [10] = {.lex_state = 45}, - [11] = {.lex_state = 45}, - [12] = {.lex_state = 45}, - [13] = {.lex_state = 45}, - [14] = {.lex_state = 45}, - [15] = {.lex_state = 45}, - [16] = {.lex_state = 45}, - [17] = {.lex_state = 45}, - [18] = {.lex_state = 45}, - [19] = {.lex_state = 45}, - [20] = {.lex_state = 45}, - [21] = {.lex_state = 45}, - [22] = {.lex_state = 45}, - [23] = {.lex_state = 45}, - [24] = {.lex_state = 45}, - [25] = {.lex_state = 45}, - [26] = {.lex_state = 45}, - [27] = {.lex_state = 3}, - [28] = {.lex_state = 45}, - [29] = {.lex_state = 45}, - [30] = {.lex_state = 45}, - [31] = {.lex_state = 45}, - [32] = {.lex_state = 45}, - [33] = {.lex_state = 45}, - [34] = {.lex_state = 45}, + [1] = {.lex_state = 46}, + [2] = {.lex_state = 46}, + [3] = {.lex_state = 46}, + [4] = {.lex_state = 46}, + [5] = {.lex_state = 46}, + [6] = {.lex_state = 46}, + [7] = {.lex_state = 46}, + [8] = {.lex_state = 46}, + [9] = {.lex_state = 46}, + [10] = {.lex_state = 46}, + [11] = {.lex_state = 46}, + [12] = {.lex_state = 46}, + [13] = {.lex_state = 46}, + [14] = {.lex_state = 46}, + [15] = {.lex_state = 46}, + [16] = {.lex_state = 46}, + [17] = {.lex_state = 46}, + [18] = {.lex_state = 46}, + [19] = {.lex_state = 46}, + [20] = {.lex_state = 46}, + [21] = {.lex_state = 46}, + [22] = {.lex_state = 46}, + [23] = {.lex_state = 46}, + [24] = {.lex_state = 46}, + [25] = {.lex_state = 46}, + [26] = {.lex_state = 3}, + [27] = {.lex_state = 46}, + [28] = {.lex_state = 46}, + [29] = {.lex_state = 46}, + [30] = {.lex_state = 46}, + [31] = {.lex_state = 46}, + [32] = {.lex_state = 46}, + [33] = {.lex_state = 46}, + [34] = {.lex_state = 46}, [35] = {.lex_state = 4}, [36] = {.lex_state = 4}, [37] = {.lex_state = 6}, [38] = {.lex_state = 6}, [39] = {.lex_state = 7}, [40] = {.lex_state = 7}, - [41] = {.lex_state = 5}, + [41] = {.lex_state = 7}, [42] = {.lex_state = 7}, - [43] = {.lex_state = 1}, + [43] = {.lex_state = 7}, [44] = {.lex_state = 7}, [45] = {.lex_state = 7}, - [46] = {.lex_state = 1}, + [46] = {.lex_state = 7}, [47] = {.lex_state = 7}, - [48] = {.lex_state = 1}, + [48] = {.lex_state = 7}, [49] = {.lex_state = 7}, - [50] = {.lex_state = 7}, + [50] = {.lex_state = 1}, [51] = {.lex_state = 7}, [52] = {.lex_state = 1}, - [53] = {.lex_state = 1}, - [54] = {.lex_state = 7}, - [55] = {.lex_state = 2}, - [56] = {.lex_state = 7}, - [57] = {.lex_state = 7}, + [53] = {.lex_state = 5}, + [54] = {.lex_state = 1}, + [55] = {.lex_state = 7}, + [56] = {.lex_state = 1}, + [57] = {.lex_state = 1}, [58] = {.lex_state = 7}, [59] = {.lex_state = 7}, - [60] = {.lex_state = 2}, + [60] = {.lex_state = 7}, [61] = {.lex_state = 7}, [62] = {.lex_state = 7}, [63] = {.lex_state = 7}, [64] = {.lex_state = 7}, - [65] = {.lex_state = 7}, + [65] = {.lex_state = 2}, [66] = {.lex_state = 7}, [67] = {.lex_state = 5}, [68] = {.lex_state = 7}, @@ -1526,13 +1562,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 7}, [78] = {.lex_state = 7}, [79] = {.lex_state = 7}, - [80] = {.lex_state = 5}, - [81] = {.lex_state = 7}, - [82] = {.lex_state = 5}, - [83] = {.lex_state = 7}, + [80] = {.lex_state = 7}, + [81] = {.lex_state = 5}, + [82] = {.lex_state = 7}, + [83] = {.lex_state = 5}, [84] = {.lex_state = 7}, - [85] = {.lex_state = 5}, - [86] = {.lex_state = 7}, + [85] = {.lex_state = 7}, + [86] = {.lex_state = 5}, [87] = {.lex_state = 7}, [88] = {.lex_state = 7}, [89] = {.lex_state = 7}, @@ -1543,95 +1579,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [94] = {.lex_state = 7}, [95] = {.lex_state = 7}, [96] = {.lex_state = 7}, - [97] = {.lex_state = 5}, - [98] = {.lex_state = 5}, - [99] = {.lex_state = 5}, - [100] = {.lex_state = 5}, + [97] = {.lex_state = 7}, + [98] = {.lex_state = 7}, + [99] = {.lex_state = 2}, + [100] = {.lex_state = 7}, [101] = {.lex_state = 5}, - [102] = {.lex_state = 42}, + [102] = {.lex_state = 5}, [103] = {.lex_state = 5}, - [104] = {.lex_state = 5}, + [104] = {.lex_state = 42}, [105] = {.lex_state = 5}, - [106] = {.lex_state = 5}, + [106] = {.lex_state = 0}, [107] = {.lex_state = 5}, [108] = {.lex_state = 5}, [109] = {.lex_state = 5}, [110] = {.lex_state = 5}, - [111] = {.lex_state = 0}, - [112] = {.lex_state = 5}, - [113] = {.lex_state = 42}, + [111] = {.lex_state = 5}, + [112] = {.lex_state = 42}, + [113] = {.lex_state = 5}, [114] = {.lex_state = 5}, [115] = {.lex_state = 5}, [116] = {.lex_state = 5}, [117] = {.lex_state = 5}, [118] = {.lex_state = 5}, - [119] = {.lex_state = 5}, - [120] = {.lex_state = 1}, - [121] = {.lex_state = 1}, - [122] = {.lex_state = 42}, - [123] = {.lex_state = 7}, - [124] = {.lex_state = 42}, - [125] = {.lex_state = 0}, - [126] = {.lex_state = 0}, + [119] = {.lex_state = 42}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 5}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 1}, + [124] = {.lex_state = 1}, + [125] = {.lex_state = 5}, + [126] = {.lex_state = 7}, [127] = {.lex_state = 7}, - [128] = {.lex_state = 7}, - [129] = {.lex_state = 7}, + [128] = {.lex_state = 0}, + [129] = {.lex_state = 0}, [130] = {.lex_state = 7}, - [131] = {.lex_state = 5}, + [131] = {.lex_state = 7}, [132] = {.lex_state = 7}, [133] = {.lex_state = 7}, - [134] = {.lex_state = 0}, - [135] = {.lex_state = 0}, - [136] = {.lex_state = 5}, - [137] = {.lex_state = 7}, + [134] = {.lex_state = 7}, + [135] = {.lex_state = 5}, + [136] = {.lex_state = 42}, + [137] = {.lex_state = 0}, [138] = {.lex_state = 7}, [139] = {.lex_state = 7}, - [140] = {.lex_state = 7}, - [141] = {.lex_state = 0}, - [142] = {.lex_state = 0}, + [140] = {.lex_state = 5}, + [141] = {.lex_state = 7}, + [142] = {.lex_state = 5}, [143] = {.lex_state = 7}, [144] = {.lex_state = 7}, - [145] = {.lex_state = 5}, + [145] = {.lex_state = 7}, [146] = {.lex_state = 0}, - [147] = {.lex_state = 0}, + [147] = {.lex_state = 7}, [148] = {.lex_state = 7}, [149] = {.lex_state = 7}, - [150] = {.lex_state = 7}, + [150] = {.lex_state = 0}, [151] = {.lex_state = 7}, [152] = {.lex_state = 7}, [153] = {.lex_state = 7}, [154] = {.lex_state = 7}, [155] = {.lex_state = 7}, - [156] = {.lex_state = 7}, + [156] = {.lex_state = 5}, [157] = {.lex_state = 7}, - [158] = {.lex_state = 5}, + [158] = {.lex_state = 0}, [159] = {.lex_state = 7}, [160] = {.lex_state = 7}, - [161] = {.lex_state = 5}, - [162] = {.lex_state = 7}, - [163] = {.lex_state = 7}, + [161] = {.lex_state = 7}, + [162] = {.lex_state = 0}, + [163] = {.lex_state = 5}, [164] = {.lex_state = 7}, [165] = {.lex_state = 7}, - [166] = {.lex_state = 0}, - [167] = {.lex_state = 5}, + [166] = {.lex_state = 7}, + [167] = {.lex_state = 7}, [168] = {.lex_state = 7}, [169] = {.lex_state = 7}, - [170] = {.lex_state = 7}, - [171] = {.lex_state = 0}, + [170] = {.lex_state = 5}, + [171] = {.lex_state = 7}, [172] = {.lex_state = 7}, - [173] = {.lex_state = 0}, + [173] = {.lex_state = 7}, [174] = {.lex_state = 7}, [175] = {.lex_state = 7}, - [176] = {.lex_state = 0}, + [176] = {.lex_state = 7}, [177] = {.lex_state = 7}, [178] = {.lex_state = 0}, [179] = {.lex_state = 7}, - [180] = {.lex_state = 7}, - [181] = {.lex_state = 0}, - [182] = {.lex_state = 7}, - [183] = {.lex_state = 7}, - [184] = {.lex_state = 7}, + [180] = {.lex_state = 0}, + [181] = {.lex_state = 7}, + [182] = {.lex_state = 0}, + [183] = {.lex_state = 5}, + [184] = {.lex_state = 0}, [185] = {.lex_state = 7}, + [186] = {.lex_state = 0}, + [187] = {.lex_state = 7}, + [188] = {.lex_state = 0}, + [189] = {.lex_state = 0}, + [190] = {.lex_state = 7}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -1647,8 +1688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [sym_number] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_string_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [aux_sym_string_token2] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), @@ -1667,28 +1709,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1), [anon_sym_use] = ACTIONS(1), [anon_sym_def] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(178), - [sym__unspaced_statement] = STATE(184), - [sym__statement] = STATE(4), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(4), + [sym_source_file] = STATE(182), + [sym__unspaced_statement] = STATE(165), + [sym__statement] = STATE(5), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(5), [aux_sym__unspaced_statement_repeat1] = STATE(35), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_AMP] = ACTIONS(5), @@ -1697,1168 +1740,1377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [2] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_func] = ACTIONS(44), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(50), - [sym_identifier] = ACTIONS(52), - [anon_sym_COLON] = ACTIONS(55), - [sym_number] = ACTIONS(58), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(64), - [anon_sym_with] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(70), - [anon_sym_RBRACK] = ACTIONS(50), - [aux_sym_operation_token1] = ACTIONS(73), - [anon_sym_EQ_GT_BANG] = ACTIONS(73), - [anon_sym_EQ_GT_QMARK] = ACTIONS(73), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(73), - [anon_sym_construct] = ACTIONS(76), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(82), - [anon_sym_catch] = ACTIONS(85), - [anon_sym_include] = ACTIONS(88), - [anon_sym_use] = ACTIONS(91), - [anon_sym_def] = ACTIONS(94), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_func] = ACTIONS(46), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(52), + [sym_identifier] = ACTIONS(54), + [anon_sym_COLON] = ACTIONS(57), + [sym_number] = ACTIONS(60), + [aux_sym_string_token1] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(66), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_with] = ACTIONS(72), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(52), + [aux_sym_operation_token1] = ACTIONS(78), + [anon_sym_EQ_GT_BANG] = ACTIONS(78), + [anon_sym_EQ_GT_QMARK] = ACTIONS(78), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(78), + [anon_sym_EQ_GT] = ACTIONS(78), + [anon_sym_construct] = ACTIONS(81), + [anon_sym_if] = ACTIONS(84), + [anon_sym_while] = ACTIONS(87), + [anon_sym_catch] = ACTIONS(90), + [anon_sym_include] = ACTIONS(93), + [anon_sym_use] = ACTIONS(96), + [anon_sym_def] = ACTIONS(99), }, [3] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(25), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(25), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(102), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [4] = { - [sym__unspaced_statement] = STATE(184), - [sym__statement] = STATE(6), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(6), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(99), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(104), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [5] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(8), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(8), + [sym__unspaced_statement] = STATE(165), + [sym__statement] = STATE(7), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(7), [aux_sym__unspaced_statement_repeat1] = STATE(35), + [ts_builtin_sym_end] = ACTIONS(106), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(101), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [6] = { - [sym__unspaced_statement] = STATE(184), - [sym__statement] = STATE(6), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_func] = ACTIONS(44), - [anon_sym_LBRACE] = ACTIONS(47), - [sym_identifier] = ACTIONS(52), - [anon_sym_COLON] = ACTIONS(55), - [sym_number] = ACTIONS(58), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(64), - [anon_sym_with] = ACTIONS(67), - [anon_sym_LBRACK] = ACTIONS(70), - [aux_sym_operation_token1] = ACTIONS(73), - [anon_sym_EQ_GT_BANG] = ACTIONS(73), - [anon_sym_EQ_GT_QMARK] = ACTIONS(73), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(73), - [anon_sym_construct] = ACTIONS(76), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(82), - [anon_sym_catch] = ACTIONS(85), - [anon_sym_include] = ACTIONS(88), - [anon_sym_use] = ACTIONS(91), - [anon_sym_def] = ACTIONS(94), - }, - [7] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(9), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(9), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(105), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(108), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [7] = { + [sym__unspaced_statement] = STATE(165), + [sym__statement] = STATE(7), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [ts_builtin_sym_end] = ACTIONS(110), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_func] = ACTIONS(46), + [anon_sym_LBRACE] = ACTIONS(49), + [sym_identifier] = ACTIONS(54), + [anon_sym_COLON] = ACTIONS(57), + [sym_number] = ACTIONS(60), + [aux_sym_string_token1] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(66), + [anon_sym_LT] = ACTIONS(69), + [anon_sym_with] = ACTIONS(72), + [anon_sym_LBRACK] = ACTIONS(75), + [aux_sym_operation_token1] = ACTIONS(78), + [anon_sym_EQ_GT_BANG] = ACTIONS(78), + [anon_sym_EQ_GT_QMARK] = ACTIONS(78), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(78), + [anon_sym_EQ_GT] = ACTIONS(78), + [anon_sym_construct] = ACTIONS(81), + [anon_sym_if] = ACTIONS(84), + [anon_sym_while] = ACTIONS(87), + [anon_sym_catch] = ACTIONS(90), + [anon_sym_include] = ACTIONS(93), + [anon_sym_use] = ACTIONS(96), + [anon_sym_def] = ACTIONS(99), }, [8] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(10), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(10), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(112), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(107), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [9] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(109), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(114), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [10] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(116), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [11] = { + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(14), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(14), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(116), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, - [11] = { - [sym__unspaced_statement] = STATE(182), + [12] = { + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(15), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(15), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(118), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [12] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(16), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(115), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [13] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(17), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(17), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(120), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [14] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(122), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [15] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(124), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [16] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(126), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [17] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(18), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(18), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(128), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [18] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(19), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(19), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(128), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [19] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(21), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(127), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [20] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(23), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [21] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(130), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, - [22] = { - [sym__unspaced_statement] = STATE(182), + [20] = { + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(22), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(132), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [21] = { + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(24), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(24), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(134), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [22] = { + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(136), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [23] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(3), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(3), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(136), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [24] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(138), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [25] = { - [sym__unspaced_statement] = STATE(182), + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(27), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(138), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [26] = { + [sym__unspaced_statement] = STATE(134), + [sym__statement] = STATE(30), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [sym__spacing] = ACTIONS(140), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [27] = { + [sym__unspaced_statement] = STATE(187), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(142), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, - [26] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(28), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(28), + [28] = { + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(4), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(4), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), [anon_sym_func] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(142), [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, - [27] = { - [sym__unspaced_statement] = STATE(132), + [29] = { + [sym__unspaced_statement] = STATE(187), + [sym__statement] = STATE(16), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(144), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [30] = { + [sym__unspaced_statement] = STATE(126), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym__unspaced_statement_repeat1] = STATE(35), + [anon_sym_AMP] = ACTIONS(5), + [anon_sym_func] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), + }, + [31] = { + [sym__unspaced_statement] = STATE(126), [sym__statement] = STATE(32), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(32), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -2867,221 +3119,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [sym__spacing] = ACTIONS(137), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [28] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [29] = { - [sym__unspaced_statement] = STATE(182), - [sym__statement] = STATE(13), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(109), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [30] = { - [sym__unspaced_statement] = STATE(129), - [sym__statement] = STATE(31), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), - }, - [31] = { - [sym__unspaced_statement] = STATE(130), - [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym__unspaced_statement_repeat1] = STATE(35), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_func] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym_identifier] = ACTIONS(11), - [anon_sym_COLON] = ACTIONS(13), - [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, [32] = { - [sym__unspaced_statement] = STATE(129), + [sym__unspaced_statement] = STATE(133), [sym__statement] = STATE(2), - [sym_function_definition] = STATE(42), - [sym_func] = STATE(56), - [sym_block] = STATE(56), - [sym_call] = STATE(39), - [sym_string] = STATE(42), - [sym_call_expr] = STATE(42), - [sym_with_expr] = STATE(42), - [sym_array] = STATE(42), - [sym_operation] = STATE(47), - [sym_type_definition] = STATE(42), - [sym_if] = STATE(42), - [sym_while] = STATE(42), - [sym_catch] = STATE(42), - [sym_include] = STATE(42), - [sym_use] = STATE(42), - [sym_def] = STATE(42), + [sym_function_definition] = STATE(45), + [sym_func] = STATE(61), + [sym_block] = STATE(61), + [sym_call] = STATE(40), + [sym_string] = STATE(45), + [sym_call_expr] = STATE(45), + [sym_with_expr] = STATE(45), + [sym_array] = STATE(45), + [sym_operation] = STATE(51), + [sym_type_definition] = STATE(45), + [sym_if] = STATE(45), + [sym_while] = STATE(45), + [sym_catch] = STATE(45), + [sym_include] = STATE(45), + [sym_use] = STATE(45), + [sym_def] = STATE(45), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -3090,28 +3164,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(11), [anon_sym_COLON] = ACTIONS(13), [sym_number] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(19), - [anon_sym_with] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [aux_sym_operation_token1] = ACTIONS(25), - [anon_sym_EQ_GT_BANG] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK] = ACTIONS(25), - [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(25), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_construct] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_catch] = ACTIONS(33), - [anon_sym_include] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_def] = ACTIONS(39), + [aux_sym_string_token1] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(21), + [anon_sym_with] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [aux_sym_operation_token1] = ACTIONS(27), + [anon_sym_EQ_GT_BANG] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK] = ACTIONS(27), + [anon_sym_EQ_GT_QMARK_BANG] = ACTIONS(27), + [anon_sym_EQ_GT] = ACTIONS(27), + [anon_sym_construct] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_catch] = ACTIONS(35), + [anon_sym_include] = ACTIONS(37), + [anon_sym_use] = ACTIONS(39), + [anon_sym_def] = ACTIONS(41), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 1, - ACTIONS(141), 24, + ACTIONS(146), 25, anon_sym_AMP, anon_sym_func, anon_sym_LBRACE, @@ -3119,6 +3194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_COLON, sym_number, + aux_sym_string_token1, anon_sym_DQUOTE, anon_sym_LT, anon_sym_with, @@ -3136,16 +3212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_use, anon_sym_def, - [27] = 2, - ACTIONS(143), 1, + [28] = 2, + ACTIONS(148), 1, ts_builtin_sym_end, - ACTIONS(141), 22, + ACTIONS(146), 23, anon_sym_AMP, anon_sym_func, anon_sym_LBRACE, sym_identifier, anon_sym_COLON, sym_number, + aux_sym_string_token1, anon_sym_DQUOTE, anon_sym_LT, anon_sym_with, @@ -3162,31 +3239,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_include, anon_sym_use, anon_sym_def, - [55] = 7, + [57] = 7, ACTIONS(11), 1, sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - ACTIONS(145), 1, + ACTIONS(150), 1, anon_sym_AMP, STATE(36), 1, aux_sym__unspaced_statement_repeat1, - STATE(40), 1, + STATE(39), 1, sym_call, - STATE(47), 1, + STATE(51), 1, sym_operation, - ACTIONS(25), 5, + ACTIONS(27), 5, aux_sym_operation_token1, anon_sym_EQ_GT_BANG, anon_sym_EQ_GT_QMARK, anon_sym_EQ_GT_QMARK_BANG, anon_sym_EQ_GT, - [81] = 3, - ACTIONS(147), 1, + [83] = 3, + ACTIONS(152), 1, anon_sym_AMP, STATE(36), 1, aux_sym__unspaced_statement_repeat1, - ACTIONS(150), 7, + ACTIONS(155), 7, sym_identifier, anon_sym_COLON, aux_sym_operation_token1, @@ -3194,1044 +3271,1089 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT_QMARK, anon_sym_EQ_GT_QMARK_BANG, anon_sym_EQ_GT, - [97] = 5, + [99] = 5, ACTIONS(11), 1, sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - STATE(47), 1, - sym_operation, - STATE(50), 1, + STATE(49), 1, sym_call, - ACTIONS(25), 5, + STATE(51), 1, + sym_operation, + ACTIONS(27), 5, aux_sym_operation_token1, anon_sym_EQ_GT_BANG, anon_sym_EQ_GT_QMARK, anon_sym_EQ_GT_QMARK_BANG, anon_sym_EQ_GT, - [117] = 5, + [119] = 5, ACTIONS(11), 1, sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - STATE(47), 1, + STATE(51), 1, sym_operation, - STATE(133), 1, + STATE(132), 1, sym_call, - ACTIONS(25), 5, + ACTIONS(27), 5, aux_sym_operation_token1, anon_sym_EQ_GT_BANG, anon_sym_EQ_GT_QMARK, anon_sym_EQ_GT_QMARK_BANG, anon_sym_EQ_GT, - [137] = 6, - ACTIONS(19), 1, + [139] = 6, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(152), 1, + ACTIONS(157), 1, anon_sym_SEMI, - ACTIONS(154), 1, + ACTIONS(159), 1, anon_sym_COLON, - ACTIONS(156), 1, + ACTIONS(161), 1, anon_sym_GT, - ACTIONS(158), 1, + ACTIONS(163), 1, sym__spacing, STATE(127), 1, sym_call_expr, - [156] = 6, - ACTIONS(19), 1, + [158] = 6, + ACTIONS(21), 1, anon_sym_LT, - ACTIONS(154), 1, + ACTIONS(159), 1, anon_sym_COLON, - ACTIONS(160), 1, + ACTIONS(165), 1, anon_sym_SEMI, - ACTIONS(162), 1, + ACTIONS(167), 1, anon_sym_GT, - ACTIONS(164), 1, + ACTIONS(169), 1, sym__spacing, - STATE(123), 1, + STATE(130), 1, sym_call_expr, - [175] = 3, - ACTIONS(168), 1, - sym_identifier, - STATE(41), 1, - aux_sym_type_definition_repeat1, - ACTIONS(166), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187] = 5, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(152), 1, - anon_sym_SEMI, - ACTIONS(156), 1, - anon_sym_GT, - ACTIONS(158), 1, - sym__spacing, - STATE(127), 1, - sym_call_expr, - [203] = 4, - ACTIONS(171), 1, - anon_sym_LBRACE, + [177] = 4, ACTIONS(173), 1, - aux_sym_blocky_token1, + sym__spacing, ACTIONS(175), 1, - anon_sym_RBRACE, - STATE(48), 2, - sym_blocky, - aux_sym_blocky_repeat1, - [217] = 2, - ACTIONS(179), 1, + anon_sym_COMMA, + STATE(41), 1, + aux_sym_def_repeat1, + ACTIONS(171), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [192] = 4, + ACTIONS(180), 1, sym__spacing, - ACTIONS(177), 4, + ACTIONS(182), 1, + anon_sym_COMMA, + STATE(43), 1, + aux_sym_def_repeat1, + ACTIONS(178), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [207] = 4, + ACTIONS(182), 1, + anon_sym_COMMA, + ACTIONS(186), 1, + sym__spacing, + STATE(41), 1, + aux_sym_def_repeat1, + ACTIONS(184), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [222] = 2, + ACTIONS(190), 1, + sym__spacing, + ACTIONS(188), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [227] = 2, - ACTIONS(183), 1, + [232] = 5, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(165), 1, + anon_sym_SEMI, + ACTIONS(167), 1, + anon_sym_GT, + ACTIONS(169), 1, sym__spacing, - ACTIONS(181), 4, + STATE(130), 1, + sym_call_expr, + [248] = 2, + ACTIONS(194), 1, + sym__spacing, + ACTIONS(192), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [237] = 4, - ACTIONS(171), 1, + [258] = 2, + ACTIONS(198), 1, + sym__spacing, + ACTIONS(196), 4, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_COMMA, + [268] = 2, + ACTIONS(202), 1, + sym__spacing, + ACTIONS(200), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + [278] = 3, + ACTIONS(159), 1, + anon_sym_COLON, + ACTIONS(206), 1, + sym__spacing, + ACTIONS(204), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [290] = 4, + ACTIONS(208), 1, anon_sym_LBRACE, - ACTIONS(185), 1, + ACTIONS(210), 1, aux_sym_blocky_token1, - ACTIONS(187), 1, + ACTIONS(212), 1, anon_sym_RBRACE, - STATE(43), 2, + STATE(52), 2, sym_blocky, aux_sym_blocky_repeat1, - [251] = 2, - ACTIONS(191), 1, + [304] = 2, + ACTIONS(216), 1, sym__spacing, - ACTIONS(189), 4, + ACTIONS(214), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [261] = 4, - ACTIONS(193), 1, + [314] = 4, + ACTIONS(208), 1, anon_sym_LBRACE, - ACTIONS(196), 1, + ACTIONS(218), 1, aux_sym_blocky_token1, - ACTIONS(199), 1, + ACTIONS(220), 1, anon_sym_RBRACE, - STATE(48), 2, + STATE(54), 2, sym_blocky, aux_sym_blocky_repeat1, - [275] = 2, - ACTIONS(203), 1, - sym__spacing, - ACTIONS(201), 4, + [328] = 3, + ACTIONS(224), 1, + sym_identifier, + STATE(53), 1, + aux_sym_with_expr_repeat1, + ACTIONS(222), 3, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - [285] = 3, - ACTIONS(154), 1, - anon_sym_COLON, - ACTIONS(207), 1, - sym__spacing, - ACTIONS(205), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [297] = 2, - ACTIONS(211), 1, - sym__spacing, - ACTIONS(209), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - [307] = 4, - ACTIONS(171), 1, anon_sym_LBRACE, - ACTIONS(213), 1, - aux_sym_blocky_token1, - ACTIONS(215), 1, anon_sym_RBRACE, - STATE(53), 2, - sym_blocky, - aux_sym_blocky_repeat1, - [321] = 4, - ACTIONS(171), 1, + [340] = 4, + ACTIONS(227), 1, anon_sym_LBRACE, - ACTIONS(173), 1, - aux_sym_blocky_token1, - ACTIONS(217), 1, - anon_sym_RBRACE, - STATE(48), 2, - sym_blocky, - aux_sym_blocky_repeat1, - [335] = 2, - ACTIONS(221), 1, - sym__spacing, - ACTIONS(219), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [344] = 3, - ACTIONS(226), 1, - anon_sym_DQUOTE, - STATE(55), 1, - aux_sym_string_repeat1, - ACTIONS(223), 2, - aux_sym_blocky_token1, - aux_sym_string_token1, - [355] = 2, ACTIONS(230), 1, + aux_sym_blocky_token1, + ACTIONS(233), 1, + anon_sym_RBRACE, + STATE(54), 2, + sym_blocky, + aux_sym_blocky_repeat1, + [354] = 2, + ACTIONS(237), 1, sym__spacing, - ACTIONS(228), 3, + ACTIONS(235), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + [364] = 4, + ACTIONS(208), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + aux_sym_blocky_token1, + ACTIONS(241), 1, + anon_sym_RBRACE, + STATE(57), 2, + sym_blocky, + aux_sym_blocky_repeat1, + [378] = 4, + ACTIONS(208), 1, + anon_sym_LBRACE, + ACTIONS(218), 1, + aux_sym_blocky_token1, + ACTIONS(243), 1, + anon_sym_RBRACE, + STATE(54), 2, + sym_blocky, + aux_sym_blocky_repeat1, + [392] = 2, + ACTIONS(247), 1, + sym__spacing, + ACTIONS(245), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [364] = 2, - ACTIONS(234), 1, + [401] = 2, + ACTIONS(251), 1, sym__spacing, - ACTIONS(232), 3, + ACTIONS(249), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [373] = 2, - ACTIONS(238), 1, + [410] = 2, + ACTIONS(255), 1, sym__spacing, - ACTIONS(236), 3, + ACTIONS(253), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [382] = 2, - ACTIONS(242), 1, + [419] = 2, + ACTIONS(259), 1, sym__spacing, - ACTIONS(240), 3, + ACTIONS(257), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [391] = 3, - ACTIONS(246), 1, + [428] = 2, + ACTIONS(263), 1, + sym__spacing, + ACTIONS(261), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [437] = 4, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(265), 1, + anon_sym_GT, + ACTIONS(267), 1, + sym__spacing, + STATE(131), 1, + sym_call_expr, + [450] = 2, + ACTIONS(271), 1, + sym__spacing, + ACTIONS(269), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [459] = 3, + ACTIONS(275), 1, anon_sym_DQUOTE, STATE(74), 1, aux_sym_string_repeat1, - ACTIONS(244), 2, + ACTIONS(273), 2, aux_sym_blocky_token1, - aux_sym_string_token1, - [402] = 2, - ACTIONS(250), 1, + aux_sym_string_token2, + [470] = 2, + ACTIONS(279), 1, sym__spacing, - ACTIONS(248), 3, + ACTIONS(277), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [411] = 4, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(252), 1, - anon_sym_GT, - ACTIONS(254), 1, - sym__spacing, - STATE(128), 1, - sym_call_expr, - [424] = 2, - ACTIONS(258), 1, - sym__spacing, - ACTIONS(256), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [433] = 2, - ACTIONS(262), 1, - sym__spacing, - ACTIONS(260), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [442] = 2, - ACTIONS(266), 1, - sym__spacing, - ACTIONS(264), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [451] = 2, - ACTIONS(270), 1, - sym__spacing, - ACTIONS(268), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [460] = 2, - ACTIONS(272), 1, + [479] = 2, + ACTIONS(281), 1, sym_identifier, - ACTIONS(166), 3, + ACTIONS(222), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - [469] = 4, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(162), 1, - anon_sym_GT, - ACTIONS(164), 1, + [488] = 2, + ACTIONS(285), 1, sym__spacing, - STATE(123), 1, + ACTIONS(283), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [497] = 2, + ACTIONS(289), 1, + sym__spacing, + ACTIONS(287), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [506] = 4, + ACTIONS(21), 1, + anon_sym_LT, + ACTIONS(161), 1, + anon_sym_GT, + ACTIONS(163), 1, + sym__spacing, + STATE(127), 1, sym_call_expr, - [482] = 2, - ACTIONS(276), 1, + [519] = 2, + ACTIONS(293), 1, sym__spacing, - ACTIONS(274), 3, + ACTIONS(291), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [491] = 2, - ACTIONS(280), 1, + [528] = 2, + ACTIONS(297), 1, sym__spacing, - ACTIONS(278), 3, + ACTIONS(295), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [500] = 2, - ACTIONS(284), 1, + [537] = 2, + ACTIONS(301), 1, sym__spacing, - ACTIONS(282), 3, + ACTIONS(299), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [509] = 2, - ACTIONS(288), 1, - sym__spacing, - ACTIONS(286), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [518] = 2, - ACTIONS(292), 1, - sym__spacing, - ACTIONS(290), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [527] = 3, - ACTIONS(296), 1, + [546] = 3, + ACTIONS(305), 1, anon_sym_DQUOTE, - STATE(55), 1, + STATE(99), 1, aux_sym_string_repeat1, - ACTIONS(294), 2, + ACTIONS(303), 2, aux_sym_blocky_token1, - aux_sym_string_token1, - [538] = 2, - ACTIONS(300), 1, + aux_sym_string_token2, + [557] = 2, + ACTIONS(309), 1, sym__spacing, - ACTIONS(298), 3, + ACTIONS(307), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [547] = 2, - ACTIONS(304), 1, + [566] = 2, + ACTIONS(313), 1, sym__spacing, - ACTIONS(302), 3, + ACTIONS(311), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [556] = 2, - ACTIONS(308), 1, + [575] = 2, + ACTIONS(317), 1, sym__spacing, - ACTIONS(306), 3, + ACTIONS(315), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [565] = 2, - ACTIONS(312), 1, + [584] = 2, + ACTIONS(321), 1, sym__spacing, - ACTIONS(310), 3, + ACTIONS(319), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [574] = 2, - ACTIONS(316), 1, + [593] = 2, + ACTIONS(325), 1, sym__spacing, - ACTIONS(314), 3, + ACTIONS(323), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [583] = 4, - ACTIONS(318), 1, + [602] = 2, + ACTIONS(329), 1, + sym__spacing, + ACTIONS(327), 3, anon_sym_SEMI, - ACTIONS(320), 1, + anon_sym_LT, + anon_sym_GT, + [611] = 4, + ACTIONS(331), 1, + anon_sym_SEMI, + ACTIONS(333), 1, anon_sym_RBRACE, - ACTIONS(322), 1, + ACTIONS(335), 1, sym_identifier, - STATE(41), 1, - aux_sym_type_definition_repeat1, - [596] = 2, - ACTIONS(326), 1, + STATE(53), 1, + aux_sym_with_expr_repeat1, + [624] = 2, + ACTIONS(339), 1, sym__spacing, - ACTIONS(324), 3, + ACTIONS(337), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [605] = 4, - ACTIONS(322), 1, + [633] = 4, + ACTIONS(335), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(341), 1, anon_sym_SEMI, - ACTIONS(330), 1, + ACTIONS(343), 1, anon_sym_RBRACE, - STATE(85), 1, - aux_sym_type_definition_repeat1, - [618] = 2, - ACTIONS(334), 1, + STATE(86), 1, + aux_sym_with_expr_repeat1, + [646] = 2, + ACTIONS(347), 1, sym__spacing, - ACTIONS(332), 3, + ACTIONS(345), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [627] = 2, - ACTIONS(338), 1, + [655] = 2, + ACTIONS(351), 1, sym__spacing, - ACTIONS(336), 3, + ACTIONS(349), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [636] = 4, - ACTIONS(322), 1, + [664] = 4, + ACTIONS(335), 1, sym_identifier, - ACTIONS(340), 1, + ACTIONS(353), 1, anon_sym_SEMI, - ACTIONS(342), 1, + ACTIONS(355), 1, anon_sym_RBRACE, - STATE(41), 1, - aux_sym_type_definition_repeat1, - [649] = 2, - ACTIONS(346), 1, + STATE(53), 1, + aux_sym_with_expr_repeat1, + [677] = 2, + ACTIONS(359), 1, sym__spacing, - ACTIONS(344), 3, + ACTIONS(357), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [658] = 2, - ACTIONS(350), 1, + [686] = 2, + ACTIONS(363), 1, sym__spacing, - ACTIONS(348), 3, + ACTIONS(361), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [667] = 2, - ACTIONS(354), 1, + [695] = 2, + ACTIONS(367), 1, sym__spacing, - ACTIONS(352), 3, + ACTIONS(365), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [676] = 2, - ACTIONS(358), 1, + [704] = 2, + ACTIONS(371), 1, sym__spacing, - ACTIONS(356), 3, + ACTIONS(369), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [685] = 2, - ACTIONS(362), 1, + [713] = 2, + ACTIONS(375), 1, sym__spacing, - ACTIONS(360), 3, + ACTIONS(373), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [694] = 2, - ACTIONS(366), 1, + [722] = 2, + ACTIONS(379), 1, sym__spacing, - ACTIONS(364), 3, + ACTIONS(377), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [703] = 2, - ACTIONS(370), 1, + [731] = 2, + ACTIONS(383), 1, sym__spacing, - ACTIONS(368), 3, + ACTIONS(381), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [712] = 2, - ACTIONS(374), 1, + [740] = 2, + ACTIONS(387), 1, sym__spacing, - ACTIONS(372), 3, + ACTIONS(385), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [721] = 2, - ACTIONS(378), 1, + [749] = 2, + ACTIONS(391), 1, sym__spacing, - ACTIONS(376), 3, + ACTIONS(389), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [730] = 2, - ACTIONS(382), 1, + [758] = 2, + ACTIONS(395), 1, sym__spacing, - ACTIONS(380), 3, + ACTIONS(393), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [739] = 2, - ACTIONS(386), 1, - sym__spacing, - ACTIONS(384), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [748] = 4, - ACTIONS(322), 1, - sym_identifier, - ACTIONS(388), 1, - anon_sym_SEMI, - ACTIONS(390), 1, - anon_sym_RBRACE, - STATE(80), 1, - aux_sym_type_definition_repeat1, - [761] = 3, - ACTIONS(322), 1, - sym_identifier, - ACTIONS(392), 1, - anon_sym_LBRACE, - STATE(41), 1, - aux_sym_type_definition_repeat1, - [771] = 3, - ACTIONS(394), 1, - anon_sym_RBRACE, - ACTIONS(396), 1, - sym_identifier, - STATE(99), 1, - aux_sym_type_definition_repeat2, - [781] = 3, - ACTIONS(342), 1, - anon_sym_RBRACE, + [767] = 2, ACTIONS(399), 1, - sym_identifier, - STATE(99), 1, - aux_sym_type_definition_repeat2, - [791] = 3, - ACTIONS(342), 1, - anon_sym_RBRACE, - ACTIONS(399), 1, - sym_identifier, - STATE(108), 1, - aux_sym_type_definition_repeat2, - [801] = 3, - ACTIONS(401), 1, - aux_sym_block_token1, - ACTIONS(404), 1, - anon_sym_PIPE, - STATE(102), 1, - aux_sym_block_repeat1, - [811] = 3, - ACTIONS(406), 1, - anon_sym_AMP, + sym__spacing, + ACTIONS(397), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [776] = 2, + ACTIONS(403), 1, + sym__spacing, + ACTIONS(401), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [785] = 3, ACTIONS(408), 1, - sym_identifier, - STATE(119), 1, - aux_sym__unspaced_statement_repeat1, - [821] = 3, - ACTIONS(322), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_LBRACE, - STATE(98), 1, - aux_sym_type_definition_repeat1, - [831] = 3, + anon_sym_DQUOTE, + STATE(99), 1, + aux_sym_string_repeat1, + ACTIONS(405), 2, + aux_sym_blocky_token1, + aux_sym_string_token2, + [796] = 2, ACTIONS(412), 1, + sym__spacing, + ACTIONS(410), 3, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [805] = 4, + ACTIONS(335), 1, + sym_identifier, ACTIONS(414), 1, + anon_sym_SEMI, + ACTIONS(416), 1, + anon_sym_RBRACE, + STATE(81), 1, + aux_sym_with_expr_repeat1, + [818] = 3, + ACTIONS(418), 1, + anon_sym_AMP, + ACTIONS(421), 1, + sym_identifier, + STATE(102), 1, + aux_sym__unspaced_statement_repeat1, + [828] = 3, + ACTIONS(355), 1, + anon_sym_RBRACE, + ACTIONS(423), 1, sym_identifier, STATE(110), 1, - aux_sym_with_expr_repeat1, - [841] = 3, - ACTIONS(416), 1, - anon_sym_SEMI, - ACTIONS(418), 1, + aux_sym_type_definition_repeat1, + [838] = 3, + ACTIONS(425), 1, + aux_sym_block_token1, + ACTIONS(428), 1, + anon_sym_PIPE, + STATE(104), 1, + aux_sym_block_repeat1, + [848] = 3, + ACTIONS(335), 1, sym_identifier, + ACTIONS(430), 1, + anon_sym_LBRACE, + STATE(53), 1, + aux_sym_with_expr_repeat1, + [858] = 3, + ACTIONS(432), 1, + anon_sym_AT, + ACTIONS(434), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_block, + [868] = 3, + ACTIONS(436), 1, + anon_sym_AMP, + ACTIONS(438), 1, + sym_identifier, + STATE(113), 1, + aux_sym__unspaced_statement_repeat1, + [878] = 3, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(423), 1, + sym_identifier, + STATE(114), 1, + aux_sym_type_definition_repeat1, + [888] = 3, + ACTIONS(335), 1, + sym_identifier, + ACTIONS(440), 1, + anon_sym_SEMI, + STATE(53), 1, + aux_sym_with_expr_repeat1, + [898] = 3, + ACTIONS(423), 1, + sym_identifier, + ACTIONS(442), 1, + anon_sym_RBRACE, + STATE(122), 1, + aux_sym_type_definition_repeat1, + [908] = 3, + ACTIONS(423), 1, + sym_identifier, + ACTIONS(442), 1, + anon_sym_RBRACE, + STATE(116), 1, + aux_sym_type_definition_repeat1, + [918] = 3, + ACTIONS(444), 1, + aux_sym_block_token1, + ACTIONS(446), 1, + anon_sym_PIPE, + STATE(119), 1, + aux_sym_block_repeat1, + [928] = 3, + ACTIONS(448), 1, + anon_sym_AMP, + ACTIONS(450), 1, + sym_identifier, + STATE(102), 1, + aux_sym__unspaced_statement_repeat1, + [938] = 3, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(423), 1, + sym_identifier, + STATE(122), 1, + aux_sym_type_definition_repeat1, + [948] = 3, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(423), 1, + sym_identifier, + STATE(125), 1, + aux_sym_type_definition_repeat1, + [958] = 3, + ACTIONS(423), 1, + sym_identifier, + ACTIONS(452), 1, + anon_sym_RBRACE, + STATE(122), 1, + aux_sym_type_definition_repeat1, + [968] = 3, + ACTIONS(335), 1, + sym_identifier, + ACTIONS(454), 1, + anon_sym_SEMI, + STATE(109), 1, + aux_sym_with_expr_repeat1, + [978] = 3, + ACTIONS(335), 1, + sym_identifier, + ACTIONS(456), 1, + anon_sym_LBRACE, STATE(105), 1, aux_sym_with_expr_repeat1, - [851] = 3, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(399), 1, - sym_identifier, - STATE(115), 1, - aux_sym_type_definition_repeat2, - [861] = 3, - ACTIONS(399), 1, - sym_identifier, - ACTIONS(420), 1, - anon_sym_RBRACE, - STATE(99), 1, - aux_sym_type_definition_repeat2, - [871] = 3, - ACTIONS(399), 1, - sym_identifier, - ACTIONS(420), 1, - anon_sym_RBRACE, - STATE(114), 1, - aux_sym_type_definition_repeat2, - [881] = 3, - ACTIONS(422), 1, - anon_sym_SEMI, - ACTIONS(424), 1, - sym_identifier, - STATE(110), 1, - aux_sym_with_expr_repeat1, - [891] = 3, - ACTIONS(427), 1, - anon_sym_AT, - ACTIONS(429), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_block, - [901] = 3, - ACTIONS(431), 1, - anon_sym_AMP, - ACTIONS(433), 1, - sym_identifier, - STATE(103), 1, - aux_sym__unspaced_statement_repeat1, - [911] = 3, - ACTIONS(435), 1, + [988] = 3, + ACTIONS(444), 1, aux_sym_block_token1, - ACTIONS(437), 1, - anon_sym_PIPE, - STATE(122), 1, - aux_sym_block_repeat1, - [921] = 3, - ACTIONS(399), 1, - sym_identifier, - ACTIONS(439), 1, - anon_sym_RBRACE, - STATE(99), 1, - aux_sym_type_definition_repeat2, - [931] = 3, - ACTIONS(330), 1, - anon_sym_RBRACE, - ACTIONS(399), 1, - sym_identifier, - STATE(99), 1, - aux_sym_type_definition_repeat2, - [941] = 3, - ACTIONS(330), 1, - anon_sym_RBRACE, - ACTIONS(399), 1, - sym_identifier, - STATE(100), 1, - aux_sym_type_definition_repeat2, - [951] = 3, - ACTIONS(406), 1, - anon_sym_AMP, - ACTIONS(433), 1, - sym_identifier, - STATE(119), 1, - aux_sym__unspaced_statement_repeat1, - [961] = 3, - ACTIONS(441), 1, - anon_sym_AMP, - ACTIONS(443), 1, - sym_identifier, - STATE(117), 1, - aux_sym__unspaced_statement_repeat1, - [971] = 3, - ACTIONS(445), 1, - anon_sym_AMP, - ACTIONS(448), 1, - sym_identifier, - STATE(119), 1, - aux_sym__unspaced_statement_repeat1, - [981] = 1, - ACTIONS(352), 3, - anon_sym_LBRACE, - aux_sym_blocky_token1, - anon_sym_RBRACE, - [987] = 1, - ACTIONS(219), 3, - anon_sym_LBRACE, - aux_sym_blocky_token1, - anon_sym_RBRACE, - [993] = 3, - ACTIONS(435), 1, - aux_sym_block_token1, - ACTIONS(450), 1, - anon_sym_PIPE, - STATE(102), 1, - aux_sym_block_repeat1, - [1003] = 2, - ACTIONS(252), 1, - anon_sym_GT, - ACTIONS(254), 1, - sym__spacing, - [1010] = 2, - ACTIONS(404), 1, - anon_sym_PIPE, - ACTIONS(452), 1, - aux_sym_block_token1, - [1017] = 2, - ACTIONS(454), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_blocky, - [1024] = 2, - ACTIONS(429), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_block, - [1031] = 2, - ACTIONS(162), 1, - anon_sym_GT, - ACTIONS(164), 1, - sym__spacing, - [1038] = 2, - ACTIONS(456), 1, - anon_sym_GT, ACTIONS(458), 1, - sym__spacing, - [1045] = 2, + anon_sym_PIPE, + STATE(104), 1, + aux_sym_block_repeat1, + [998] = 3, ACTIONS(460), 1, - anon_sym_GT, + anon_sym_AMP, ACTIONS(462), 1, - sym__spacing, - [1052] = 2, - ACTIONS(462), 1, - sym__spacing, + sym_identifier, + STATE(121), 1, + aux_sym__unspaced_statement_repeat1, + [1008] = 3, + ACTIONS(438), 1, + sym_identifier, + ACTIONS(448), 1, + anon_sym_AMP, + STATE(102), 1, + aux_sym__unspaced_statement_repeat1, + [1018] = 3, ACTIONS(464), 1, - anon_sym_GT, - [1059] = 2, - ACTIONS(466), 1, anon_sym_RBRACE, - ACTIONS(468), 1, + ACTIONS(466), 1, sym_identifier, - [1066] = 2, - ACTIONS(462), 1, - sym__spacing, - ACTIONS(470), 1, + STATE(122), 1, + aux_sym_type_definition_repeat1, + [1028] = 1, + ACTIONS(365), 3, + anon_sym_LBRACE, + aux_sym_blocky_token1, + anon_sym_RBRACE, + [1034] = 1, + ACTIONS(381), 3, + anon_sym_LBRACE, + aux_sym_blocky_token1, + anon_sym_RBRACE, + [1040] = 3, + ACTIONS(355), 1, + anon_sym_RBRACE, + ACTIONS(423), 1, + sym_identifier, + STATE(122), 1, + aux_sym_type_definition_repeat1, + [1050] = 2, + ACTIONS(469), 1, anon_sym_GT, - [1073] = 2, - ACTIONS(154), 1, + ACTIONS(471), 1, + sym__spacing, + [1057] = 2, + ACTIONS(265), 1, + anon_sym_GT, + ACTIONS(267), 1, + sym__spacing, + [1064] = 2, + ACTIONS(473), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_blocky, + [1071] = 2, + ACTIONS(434), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_block, + [1078] = 2, + ACTIONS(161), 1, + anon_sym_GT, + ACTIONS(163), 1, + sym__spacing, + [1085] = 2, + ACTIONS(475), 1, + anon_sym_GT, + ACTIONS(477), 1, + sym__spacing, + [1092] = 2, + ACTIONS(159), 1, anon_sym_COLON, - ACTIONS(472), 1, + ACTIONS(479), 1, sym__spacing, - [1080] = 2, - ACTIONS(474), 1, + [1099] = 2, + ACTIONS(471), 1, + sym__spacing, + ACTIONS(481), 1, + anon_sym_GT, + [1106] = 2, + ACTIONS(471), 1, + sym__spacing, + ACTIONS(483), 1, + anon_sym_GT, + [1113] = 2, + ACTIONS(485), 1, + anon_sym_RBRACE, + ACTIONS(487), 1, + sym_identifier, + [1120] = 2, + ACTIONS(428), 1, + anon_sym_PIPE, + ACTIONS(489), 1, + aux_sym_block_token1, + [1127] = 2, + ACTIONS(491), 1, anon_sym_LBRACE, - ACTIONS(476), 1, + ACTIONS(493), 1, anon_sym_namespace, - [1087] = 1, - ACTIONS(478), 1, - anon_sym_LBRACE, - [1091] = 1, - ACTIONS(480), 1, + [1134] = 1, + ACTIONS(495), 1, + sym__spacing, + [1138] = 1, + ACTIONS(497), 1, + sym__spacing, + [1142] = 1, + ACTIONS(499), 1, sym_identifier, - [1095] = 1, - ACTIONS(482), 1, + [1146] = 1, + ACTIONS(501), 1, sym__spacing, - [1099] = 1, - ACTIONS(484), 1, - sym__spacing, - [1103] = 1, - ACTIONS(486), 1, - sym__spacing, - [1107] = 1, - ACTIONS(488), 1, - sym__spacing, - [1111] = 1, - ACTIONS(490), 1, - anon_sym_LBRACE, - [1115] = 1, - ACTIONS(492), 1, - anon_sym_LBRACE, - [1119] = 1, - ACTIONS(494), 1, - sym__spacing, - [1123] = 1, - ACTIONS(496), 1, - sym__spacing, - [1127] = 1, - ACTIONS(498), 1, + [1150] = 1, + ACTIONS(503), 1, sym_identifier, - [1131] = 1, - ACTIONS(500), 1, + [1154] = 1, + ACTIONS(505), 1, + sym__spacing, + [1158] = 1, + ACTIONS(507), 1, + sym__spacing, + [1162] = 1, + ACTIONS(509), 1, + sym__spacing, + [1166] = 1, + ACTIONS(511), 1, anon_sym_LBRACE, - [1135] = 1, - ACTIONS(502), 1, + [1170] = 1, + ACTIONS(513), 1, + sym__spacing, + [1174] = 1, + ACTIONS(515), 1, + sym__spacing, + [1178] = 1, + ACTIONS(517), 1, + sym__spacing, + [1182] = 1, + ACTIONS(519), 1, + anon_sym_LBRACE, + [1186] = 1, + ACTIONS(521), 1, + sym__spacing, + [1190] = 1, + ACTIONS(523), 1, + sym__spacing, + [1194] = 1, + ACTIONS(525), 1, + sym__spacing, + [1198] = 1, + ACTIONS(527), 1, + sym__spacing, + [1202] = 1, + ACTIONS(529), 1, + sym__spacing, + [1206] = 1, + ACTIONS(531), 1, + sym_identifier, + [1210] = 1, + ACTIONS(533), 1, + sym__spacing, + [1214] = 1, + ACTIONS(535), 1, + anon_sym_LBRACE, + [1218] = 1, + ACTIONS(537), 1, + sym__spacing, + [1222] = 1, + ACTIONS(539), 1, + sym__spacing, + [1226] = 1, + ACTIONS(541), 1, + sym__spacing, + [1230] = 1, + ACTIONS(543), 1, anon_sym_in, - [1139] = 1, - ACTIONS(504), 1, - sym__spacing, - [1143] = 1, - ACTIONS(506), 1, - sym__spacing, - [1147] = 1, - ACTIONS(508), 1, - sym__spacing, - [1151] = 1, - ACTIONS(510), 1, - sym__spacing, - [1155] = 1, - ACTIONS(512), 1, - sym__spacing, - [1159] = 1, - ACTIONS(514), 1, - sym__spacing, - [1163] = 1, - ACTIONS(516), 1, - sym__spacing, - [1167] = 1, - ACTIONS(518), 1, - sym__spacing, - [1171] = 1, - ACTIONS(520), 1, - sym__spacing, - [1175] = 1, - ACTIONS(522), 1, - sym__spacing, - [1179] = 1, - ACTIONS(524), 1, + [1234] = 1, + ACTIONS(545), 1, sym_identifier, - [1183] = 1, - ACTIONS(526), 1, + [1238] = 1, + ACTIONS(547), 1, sym__spacing, - [1187] = 1, - ACTIONS(528), 1, + [1242] = 1, + ACTIONS(549), 1, sym__spacing, - [1191] = 1, - ACTIONS(530), 1, + [1246] = 1, + ACTIONS(551), 1, + sym__spacing, + [1250] = 1, + ACTIONS(553), 1, + sym__spacing, + [1254] = 1, + ACTIONS(555), 1, + sym__spacing, + [1258] = 1, + ACTIONS(557), 1, + sym__spacing, + [1262] = 1, + ACTIONS(559), 1, sym_identifier, - [1195] = 1, - ACTIONS(532), 1, + [1266] = 1, + ACTIONS(561), 1, sym__spacing, - [1199] = 1, - ACTIONS(534), 1, + [1270] = 1, + ACTIONS(563), 1, sym__spacing, - [1203] = 1, - ACTIONS(536), 1, + [1274] = 1, + ACTIONS(565), 1, sym__spacing, - [1207] = 1, - ACTIONS(538), 1, + [1278] = 1, + ACTIONS(567), 1, sym__spacing, - [1211] = 1, - ACTIONS(540), 1, + [1282] = 1, + ACTIONS(569), 1, + sym__spacing, + [1286] = 1, + ACTIONS(571), 1, + sym__spacing, + [1290] = 1, + ACTIONS(573), 1, + sym__spacing, + [1294] = 1, + ACTIONS(575), 1, anon_sym_LBRACE, - [1215] = 1, - ACTIONS(542), 1, - sym_identifier, - [1219] = 1, - ACTIONS(544), 1, + [1298] = 1, + ACTIONS(577), 1, sym__spacing, - [1223] = 1, - ACTIONS(546), 1, - sym__spacing, - [1227] = 1, - ACTIONS(548), 1, - sym__spacing, - [1231] = 1, - ACTIONS(550), 1, + [1302] = 1, + ACTIONS(579), 1, anon_sym_LBRACE, - [1235] = 1, - ACTIONS(552), 1, + [1306] = 1, + ACTIONS(581), 1, sym__spacing, - [1239] = 1, - ACTIONS(554), 1, - anon_sym_LBRACE, - [1243] = 1, - ACTIONS(556), 1, - sym__spacing, - [1247] = 1, - ACTIONS(558), 1, - sym__spacing, - [1251] = 1, - ACTIONS(560), 1, - anon_sym_LBRACE, - [1255] = 1, - ACTIONS(562), 1, - sym__spacing, - [1259] = 1, - ACTIONS(564), 1, + [1310] = 1, + ACTIONS(583), 1, ts_builtin_sym_end, - [1263] = 1, - ACTIONS(566), 1, + [1314] = 1, + ACTIONS(585), 1, + sym_identifier, + [1318] = 1, + ACTIONS(587), 1, + anon_sym_LBRACE, + [1322] = 1, + ACTIONS(589), 1, sym__spacing, - [1267] = 1, - ACTIONS(568), 1, + [1326] = 1, + ACTIONS(591), 1, + anon_sym_LBRACE, + [1330] = 1, + ACTIONS(471), 1, sym__spacing, - [1271] = 1, - ACTIONS(570), 1, + [1334] = 1, + ACTIONS(593), 1, + anon_sym_LBRACE, + [1338] = 1, + ACTIONS(595), 1, anon_sym_BANG, - [1275] = 1, - ACTIONS(462), 1, - sym__spacing, - [1279] = 1, - ACTIONS(572), 1, - sym__spacing, - [1283] = 1, - ACTIONS(574), 1, - sym__spacing, - [1287] = 1, - ACTIONS(576), 1, + [1342] = 1, + ACTIONS(597), 1, sym__spacing, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(33)] = 0, - [SMALL_STATE(34)] = 27, - [SMALL_STATE(35)] = 55, - [SMALL_STATE(36)] = 81, - [SMALL_STATE(37)] = 97, - [SMALL_STATE(38)] = 117, - [SMALL_STATE(39)] = 137, - [SMALL_STATE(40)] = 156, - [SMALL_STATE(41)] = 175, - [SMALL_STATE(42)] = 187, - [SMALL_STATE(43)] = 203, - [SMALL_STATE(44)] = 217, - [SMALL_STATE(45)] = 227, - [SMALL_STATE(46)] = 237, - [SMALL_STATE(47)] = 251, - [SMALL_STATE(48)] = 261, - [SMALL_STATE(49)] = 275, - [SMALL_STATE(50)] = 285, - [SMALL_STATE(51)] = 297, - [SMALL_STATE(52)] = 307, - [SMALL_STATE(53)] = 321, - [SMALL_STATE(54)] = 335, - [SMALL_STATE(55)] = 344, - [SMALL_STATE(56)] = 355, - [SMALL_STATE(57)] = 364, - [SMALL_STATE(58)] = 373, - [SMALL_STATE(59)] = 382, - [SMALL_STATE(60)] = 391, - [SMALL_STATE(61)] = 402, - [SMALL_STATE(62)] = 411, - [SMALL_STATE(63)] = 424, - [SMALL_STATE(64)] = 433, - [SMALL_STATE(65)] = 442, - [SMALL_STATE(66)] = 451, - [SMALL_STATE(67)] = 460, - [SMALL_STATE(68)] = 469, - [SMALL_STATE(69)] = 482, - [SMALL_STATE(70)] = 491, - [SMALL_STATE(71)] = 500, - [SMALL_STATE(72)] = 509, - [SMALL_STATE(73)] = 518, - [SMALL_STATE(74)] = 527, - [SMALL_STATE(75)] = 538, - [SMALL_STATE(76)] = 547, - [SMALL_STATE(77)] = 556, - [SMALL_STATE(78)] = 565, - [SMALL_STATE(79)] = 574, - [SMALL_STATE(80)] = 583, - [SMALL_STATE(81)] = 596, - [SMALL_STATE(82)] = 605, - [SMALL_STATE(83)] = 618, - [SMALL_STATE(84)] = 627, - [SMALL_STATE(85)] = 636, - [SMALL_STATE(86)] = 649, - [SMALL_STATE(87)] = 658, - [SMALL_STATE(88)] = 667, - [SMALL_STATE(89)] = 676, - [SMALL_STATE(90)] = 685, - [SMALL_STATE(91)] = 694, - [SMALL_STATE(92)] = 703, - [SMALL_STATE(93)] = 712, - [SMALL_STATE(94)] = 721, - [SMALL_STATE(95)] = 730, - [SMALL_STATE(96)] = 739, - [SMALL_STATE(97)] = 748, - [SMALL_STATE(98)] = 761, - [SMALL_STATE(99)] = 771, - [SMALL_STATE(100)] = 781, - [SMALL_STATE(101)] = 791, - [SMALL_STATE(102)] = 801, - [SMALL_STATE(103)] = 811, - [SMALL_STATE(104)] = 821, - [SMALL_STATE(105)] = 831, - [SMALL_STATE(106)] = 841, - [SMALL_STATE(107)] = 851, - [SMALL_STATE(108)] = 861, - [SMALL_STATE(109)] = 871, - [SMALL_STATE(110)] = 881, - [SMALL_STATE(111)] = 891, - [SMALL_STATE(112)] = 901, - [SMALL_STATE(113)] = 911, - [SMALL_STATE(114)] = 921, - [SMALL_STATE(115)] = 931, - [SMALL_STATE(116)] = 941, - [SMALL_STATE(117)] = 951, - [SMALL_STATE(118)] = 961, - [SMALL_STATE(119)] = 971, - [SMALL_STATE(120)] = 981, - [SMALL_STATE(121)] = 987, - [SMALL_STATE(122)] = 993, - [SMALL_STATE(123)] = 1003, - [SMALL_STATE(124)] = 1010, - [SMALL_STATE(125)] = 1017, - [SMALL_STATE(126)] = 1024, - [SMALL_STATE(127)] = 1031, - [SMALL_STATE(128)] = 1038, - [SMALL_STATE(129)] = 1045, - [SMALL_STATE(130)] = 1052, - [SMALL_STATE(131)] = 1059, - [SMALL_STATE(132)] = 1066, - [SMALL_STATE(133)] = 1073, - [SMALL_STATE(134)] = 1080, - [SMALL_STATE(135)] = 1087, - [SMALL_STATE(136)] = 1091, - [SMALL_STATE(137)] = 1095, - [SMALL_STATE(138)] = 1099, - [SMALL_STATE(139)] = 1103, - [SMALL_STATE(140)] = 1107, - [SMALL_STATE(141)] = 1111, - [SMALL_STATE(142)] = 1115, - [SMALL_STATE(143)] = 1119, - [SMALL_STATE(144)] = 1123, - [SMALL_STATE(145)] = 1127, - [SMALL_STATE(146)] = 1131, - [SMALL_STATE(147)] = 1135, - [SMALL_STATE(148)] = 1139, - [SMALL_STATE(149)] = 1143, - [SMALL_STATE(150)] = 1147, - [SMALL_STATE(151)] = 1151, - [SMALL_STATE(152)] = 1155, - [SMALL_STATE(153)] = 1159, - [SMALL_STATE(154)] = 1163, - [SMALL_STATE(155)] = 1167, - [SMALL_STATE(156)] = 1171, - [SMALL_STATE(157)] = 1175, - [SMALL_STATE(158)] = 1179, - [SMALL_STATE(159)] = 1183, - [SMALL_STATE(160)] = 1187, - [SMALL_STATE(161)] = 1191, - [SMALL_STATE(162)] = 1195, - [SMALL_STATE(163)] = 1199, - [SMALL_STATE(164)] = 1203, - [SMALL_STATE(165)] = 1207, - [SMALL_STATE(166)] = 1211, - [SMALL_STATE(167)] = 1215, - [SMALL_STATE(168)] = 1219, - [SMALL_STATE(169)] = 1223, - [SMALL_STATE(170)] = 1227, - [SMALL_STATE(171)] = 1231, - [SMALL_STATE(172)] = 1235, - [SMALL_STATE(173)] = 1239, - [SMALL_STATE(174)] = 1243, - [SMALL_STATE(175)] = 1247, - [SMALL_STATE(176)] = 1251, - [SMALL_STATE(177)] = 1255, - [SMALL_STATE(178)] = 1259, - [SMALL_STATE(179)] = 1263, - [SMALL_STATE(180)] = 1267, - [SMALL_STATE(181)] = 1271, - [SMALL_STATE(182)] = 1275, - [SMALL_STATE(183)] = 1279, - [SMALL_STATE(184)] = 1283, - [SMALL_STATE(185)] = 1287, + [SMALL_STATE(34)] = 28, + [SMALL_STATE(35)] = 57, + [SMALL_STATE(36)] = 83, + [SMALL_STATE(37)] = 99, + [SMALL_STATE(38)] = 119, + [SMALL_STATE(39)] = 139, + [SMALL_STATE(40)] = 158, + [SMALL_STATE(41)] = 177, + [SMALL_STATE(42)] = 192, + [SMALL_STATE(43)] = 207, + [SMALL_STATE(44)] = 222, + [SMALL_STATE(45)] = 232, + [SMALL_STATE(46)] = 248, + [SMALL_STATE(47)] = 258, + [SMALL_STATE(48)] = 268, + [SMALL_STATE(49)] = 278, + [SMALL_STATE(50)] = 290, + [SMALL_STATE(51)] = 304, + [SMALL_STATE(52)] = 314, + [SMALL_STATE(53)] = 328, + [SMALL_STATE(54)] = 340, + [SMALL_STATE(55)] = 354, + [SMALL_STATE(56)] = 364, + [SMALL_STATE(57)] = 378, + [SMALL_STATE(58)] = 392, + [SMALL_STATE(59)] = 401, + [SMALL_STATE(60)] = 410, + [SMALL_STATE(61)] = 419, + [SMALL_STATE(62)] = 428, + [SMALL_STATE(63)] = 437, + [SMALL_STATE(64)] = 450, + [SMALL_STATE(65)] = 459, + [SMALL_STATE(66)] = 470, + [SMALL_STATE(67)] = 479, + [SMALL_STATE(68)] = 488, + [SMALL_STATE(69)] = 497, + [SMALL_STATE(70)] = 506, + [SMALL_STATE(71)] = 519, + [SMALL_STATE(72)] = 528, + [SMALL_STATE(73)] = 537, + [SMALL_STATE(74)] = 546, + [SMALL_STATE(75)] = 557, + [SMALL_STATE(76)] = 566, + [SMALL_STATE(77)] = 575, + [SMALL_STATE(78)] = 584, + [SMALL_STATE(79)] = 593, + [SMALL_STATE(80)] = 602, + [SMALL_STATE(81)] = 611, + [SMALL_STATE(82)] = 624, + [SMALL_STATE(83)] = 633, + [SMALL_STATE(84)] = 646, + [SMALL_STATE(85)] = 655, + [SMALL_STATE(86)] = 664, + [SMALL_STATE(87)] = 677, + [SMALL_STATE(88)] = 686, + [SMALL_STATE(89)] = 695, + [SMALL_STATE(90)] = 704, + [SMALL_STATE(91)] = 713, + [SMALL_STATE(92)] = 722, + [SMALL_STATE(93)] = 731, + [SMALL_STATE(94)] = 740, + [SMALL_STATE(95)] = 749, + [SMALL_STATE(96)] = 758, + [SMALL_STATE(97)] = 767, + [SMALL_STATE(98)] = 776, + [SMALL_STATE(99)] = 785, + [SMALL_STATE(100)] = 796, + [SMALL_STATE(101)] = 805, + [SMALL_STATE(102)] = 818, + [SMALL_STATE(103)] = 828, + [SMALL_STATE(104)] = 838, + [SMALL_STATE(105)] = 848, + [SMALL_STATE(106)] = 858, + [SMALL_STATE(107)] = 868, + [SMALL_STATE(108)] = 878, + [SMALL_STATE(109)] = 888, + [SMALL_STATE(110)] = 898, + [SMALL_STATE(111)] = 908, + [SMALL_STATE(112)] = 918, + [SMALL_STATE(113)] = 928, + [SMALL_STATE(114)] = 938, + [SMALL_STATE(115)] = 948, + [SMALL_STATE(116)] = 958, + [SMALL_STATE(117)] = 968, + [SMALL_STATE(118)] = 978, + [SMALL_STATE(119)] = 988, + [SMALL_STATE(120)] = 998, + [SMALL_STATE(121)] = 1008, + [SMALL_STATE(122)] = 1018, + [SMALL_STATE(123)] = 1028, + [SMALL_STATE(124)] = 1034, + [SMALL_STATE(125)] = 1040, + [SMALL_STATE(126)] = 1050, + [SMALL_STATE(127)] = 1057, + [SMALL_STATE(128)] = 1064, + [SMALL_STATE(129)] = 1071, + [SMALL_STATE(130)] = 1078, + [SMALL_STATE(131)] = 1085, + [SMALL_STATE(132)] = 1092, + [SMALL_STATE(133)] = 1099, + [SMALL_STATE(134)] = 1106, + [SMALL_STATE(135)] = 1113, + [SMALL_STATE(136)] = 1120, + [SMALL_STATE(137)] = 1127, + [SMALL_STATE(138)] = 1134, + [SMALL_STATE(139)] = 1138, + [SMALL_STATE(140)] = 1142, + [SMALL_STATE(141)] = 1146, + [SMALL_STATE(142)] = 1150, + [SMALL_STATE(143)] = 1154, + [SMALL_STATE(144)] = 1158, + [SMALL_STATE(145)] = 1162, + [SMALL_STATE(146)] = 1166, + [SMALL_STATE(147)] = 1170, + [SMALL_STATE(148)] = 1174, + [SMALL_STATE(149)] = 1178, + [SMALL_STATE(150)] = 1182, + [SMALL_STATE(151)] = 1186, + [SMALL_STATE(152)] = 1190, + [SMALL_STATE(153)] = 1194, + [SMALL_STATE(154)] = 1198, + [SMALL_STATE(155)] = 1202, + [SMALL_STATE(156)] = 1206, + [SMALL_STATE(157)] = 1210, + [SMALL_STATE(158)] = 1214, + [SMALL_STATE(159)] = 1218, + [SMALL_STATE(160)] = 1222, + [SMALL_STATE(161)] = 1226, + [SMALL_STATE(162)] = 1230, + [SMALL_STATE(163)] = 1234, + [SMALL_STATE(164)] = 1238, + [SMALL_STATE(165)] = 1242, + [SMALL_STATE(166)] = 1246, + [SMALL_STATE(167)] = 1250, + [SMALL_STATE(168)] = 1254, + [SMALL_STATE(169)] = 1258, + [SMALL_STATE(170)] = 1262, + [SMALL_STATE(171)] = 1266, + [SMALL_STATE(172)] = 1270, + [SMALL_STATE(173)] = 1274, + [SMALL_STATE(174)] = 1278, + [SMALL_STATE(175)] = 1282, + [SMALL_STATE(176)] = 1286, + [SMALL_STATE(177)] = 1290, + [SMALL_STATE(178)] = 1294, + [SMALL_STATE(179)] = 1298, + [SMALL_STATE(180)] = 1302, + [SMALL_STATE(181)] = 1306, + [SMALL_STATE(182)] = 1310, + [SMALL_STATE(183)] = 1314, + [SMALL_STATE(184)] = 1318, + [SMALL_STATE(185)] = 1322, + [SMALL_STATE(186)] = 1326, + [SMALL_STATE(187)] = 1330, + [SMALL_STATE(188)] = 1334, + [SMALL_STATE(189)] = 1338, + [SMALL_STATE(190)] = 1342, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -4239,278 +4361,288 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(35), - [44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [50] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 1, 0, 0), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 1, 0, 0), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 2, 0, 0), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 2, 0, 0), - [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 0), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 0), - [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 0), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 0), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 0), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 0), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(52), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 4, 0, 0), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 4, 0, 0), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, 0, 0), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, 0, 0), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1, 0, 0), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1, 0, 0), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 3, 0, 0), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 3, 0, 0), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 1, 0, 0), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 1, 0, 0), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 0), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 0), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 3, 0, 0), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 3, 0, 0), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def, 3, 0, 0), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def, 3, 0, 0), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 3, 0, 0), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 3, 0, 0), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 4, 0, 0), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 4, 0, 0), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 4, 0, 0), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 4, 0, 0), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 5, 0, 0), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 5, 0, 0), - [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 5, 0, 0), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 5, 0, 0), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 0), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 0), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5, 0, 0), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5, 0, 0), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 0), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 0), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, 0, 0), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 0), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, 0, 0), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, 0, 0), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 9, 0, 0), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 9, 0, 0), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, 0, 0), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 9, 0, 0), - [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 9, 0, 0), - [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 9, 0, 0), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 9, 0, 0), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 2, 0, 0), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 2, 0, 0), - [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, 0, 0), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, 0, 0), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 10, 0, 0), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 10, 0, 0), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 10, 0, 0), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 10, 0, 0), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, 0, 0), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, 0, 0), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 11, 0, 0), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 11, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 11, 0, 0), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 11, 0, 0), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 12, 0, 0), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 12, 0, 0), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 12, 0, 0), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 12, 0, 0), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat2, 2, 0, 0), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(126), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 4, 0, 0), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 4, 0, 0), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat2, 3, 0, 0), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 3, 0, 0), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [564] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [46] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [52] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 2, 0, 0), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 2, 0, 0), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 1, 0, 0), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 1, 0, 0), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_def_repeat1, 2, 0, 0), + [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_def_repeat1, 2, 0, 0), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_def_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def, 3, 0, 0), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def, 3, 0, 0), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def, 4, 0, 0), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def, 4, 0, 0), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 4, 0, 0), + [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 4, 0, 0), + [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 0), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 0), + [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_def_repeat1, 3, 0, 0), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_def_repeat1, 3, 0, 0), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 0), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 0), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, 0, 0), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, 0, 0), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 0), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 0), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1, 0, 0), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1, 0, 0), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 0), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 0), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 3, 0, 0), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 3, 0, 0), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 1, 0, 0), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 1, 0, 0), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 3, 0, 0), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 3, 0, 0), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 4, 0, 0), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 4, 0, 0), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 4, 0, 0), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 4, 0, 0), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 5, 0, 0), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 5, 0, 0), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 5, 0, 0), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 5, 0, 0), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5, 0, 0), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5, 0, 0), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 0), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 0), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 0), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, 0, 0), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 0), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, 0, 0), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, 0, 0), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 9, 0, 0), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 9, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, 0, 0), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, 0, 0), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 9, 0, 0), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 9, 0, 0), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 9, 0, 0), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 9, 0, 0), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 2, 0, 0), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 2, 0, 0), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, 0, 0), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, 0, 0), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 10, 0, 0), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 10, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 10, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 10, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 3, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 3, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, 0, 0), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 11, 0, 0), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 11, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 11, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 11, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 12, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 12, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 12, 0, 0), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 12, 0, 0), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 4, 0, 0), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 4, 0, 0), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [583] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), }; #ifdef __cplusplus