From 1a197b26abf949c0bbd55ce20d863ba35dc4c69f Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 15 Nov 2024 21:44:36 +0100 Subject: [PATCH] separate ^-strings from normal ones --- grammar.js | 7 +- queries/highlights.scm | 1 + src/grammar.json | 85 +- src/node-types.json | 32 + src/parser.c | 4598 ++++++++++++++++++++-------------------- 5 files changed, 2370 insertions(+), 2353 deletions(-) diff --git a/grammar.js b/grammar.js index 1013867..6a1ba60 100644 --- a/grammar.js +++ b/grammar.js @@ -5,6 +5,7 @@ module.exports = grammar({ source_file: $ => seq(repeat($._statement)), _unspaced_statement: $ => seq( choice( + $.ministring, $.string, $.number, $.function_definition, @@ -53,10 +54,8 @@ module.exports = grammar({ $.identifier, ), number: $ => token(prec(10, /\d+(\.\d+)?/)), - string: $ => choice( - token(prec(10, seq('^', /[^ \n\r\t<>:;&{}"'\[\],]+/))), - seq('"', repeat(choice(/\\./, /./)), '"'), - ), + ministring: $ => token(prec(10, seq('^', /[^ \n\r\t<>:;&{}"'\[\],]+/))), + string: $ => seq('"', repeat(choice(/\\./, /./)), '"'), call_expr: $ => seq('<', optional($._spacing), repeat($._statement), $._unspaced_statement, '>'), with_expr: $ => seq( 'with', $._spacing, diff --git a/queries/highlights.scm b/queries/highlights.scm index 69f489c..d89a19a 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -16,3 +16,4 @@ (call (call) @function (identifier) @property) (def (identifier) @local.definition) (with_expr (identifier) @local.definition) +(ministring) @string.special.symbol diff --git a/src/grammar.json b/src/grammar.json index 6a5b197..285888b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -20,6 +20,10 @@ { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "ministring" + }, { "type": "SYMBOL", "name": "string" @@ -338,58 +342,53 @@ } } }, - "string": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "^" - }, - { - "type": "PATTERN", - "value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\],]+" - } - ] - } - } - }, - { + "ministring": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 10, + "content": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "\"" + "value": "^" }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\\\." - }, - { - "type": "PATTERN", - "value": "." - } - ] - } - }, - { - "type": "STRING", - "value": "\"" + "type": "PATTERN", + "value": "[^ \\n\\r\\t<>:;&{}\"'\\[\\],]+" } ] } + } + }, + "string": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\\\." + }, + { + "type": "PATTERN", + "value": "." + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } ] }, "call_expr": { diff --git a/src/node-types.json b/src/node-types.json index faf5f11..b691e39 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -39,6 +39,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -106,6 +110,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -211,6 +219,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -282,6 +294,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -406,6 +422,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -494,6 +514,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -604,6 +628,10 @@ "type": "include", "named": true }, + { + "type": "ministring", + "named": true + }, { "type": "number", "named": true @@ -738,6 +766,10 @@ "type": "include", "named": false }, + { + "type": "ministring", + "named": true + }, { "type": "namespace", "named": false diff --git a/src/parser.c b/src/parser.c index 54c4ff4..5d634d3 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,7 +5,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 191 +#define STATE_COUNT 190 #define LARGE_STATE_COUNT 33 #define SYMBOL_COUNT 66 #define ALIAS_COUNT 0 @@ -29,9 +29,9 @@ enum ts_symbol_identifiers { sym_identifier = 11, anon_sym_COLON = 12, sym_number = 13, - aux_sym_string_token1 = 14, + sym_ministring = 14, anon_sym_DQUOTE = 15, - aux_sym_string_token2 = 16, + aux_sym_string_token1 = 16, anon_sym_LT = 17, anon_sym_GT = 18, anon_sym_with = 19, @@ -98,9 +98,9 @@ static const char * const ts_symbol_names[] = { [sym_identifier] = "identifier", [anon_sym_COLON] = ":", [sym_number] = "number", - [aux_sym_string_token1] = "string_token1", + [sym_ministring] = "ministring", [anon_sym_DQUOTE] = "\"", - [aux_sym_string_token2] = "string_token2", + [aux_sym_string_token1] = "string_token1", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_with] = "with", @@ -167,9 +167,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier] = sym_identifier, [anon_sym_COLON] = anon_sym_COLON, [sym_number] = sym_number, - [aux_sym_string_token1] = aux_sym_string_token1, + [sym_ministring] = sym_ministring, [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [aux_sym_string_token2] = aux_sym_string_token2, + [aux_sym_string_token1] = aux_sym_string_token1, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [anon_sym_with] = anon_sym_with, @@ -278,15 +278,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [aux_sym_string_token1] = { - .visible = false, - .named = false, + [sym_ministring] = { + .visible = true, + .named = true, }, [anon_sym_DQUOTE] = { .visible = true, .named = false, }, - [aux_sym_string_token2] = { + [aux_sym_string_token1] = { .visible = false, .named = false, }, @@ -553,8 +553,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 53, [54] = 54, [55] = 55, - [56] = 50, - [57] = 52, + [56] = 49, + [57] = 50, [58] = 58, [59] = 59, [60] = 60, @@ -598,8 +598,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [98] = 98, [99] = 99, [100] = 100, - [101] = 101, - [102] = 36, + [101] = 93, + [102] = 102, [103] = 103, [104] = 104, [105] = 105, @@ -620,8 +620,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 120, [121] = 121, [122] = 122, - [123] = 89, - [124] = 93, + [123] = 36, + [124] = 89, [125] = 125, [126] = 126, [127] = 127, @@ -683,11 +683,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [183] = 183, [184] = 184, [185] = 185, - [186] = 186, - [187] = 165, + [186] = 178, + [187] = 187, [188] = 188, [189] = 189, - [190] = 190, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -1346,14 +1345,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 106: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(sym_ministring); if ((!eof && set_contains(sym_identifier_character_set_1, 13, lookahead))) ADVANCE(106); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 108: - ACCEPT_TOKEN(aux_sym_string_token2); + ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); case 109: ACCEPT_TOKEN(anon_sym_LT); @@ -1508,9 +1507,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 46}, [24] = {.lex_state = 46}, [25] = {.lex_state = 46}, - [26] = {.lex_state = 3}, + [26] = {.lex_state = 46}, [27] = {.lex_state = 46}, - [28] = {.lex_state = 46}, + [28] = {.lex_state = 3}, [29] = {.lex_state = 46}, [30] = {.lex_state = 46}, [31] = {.lex_state = 46}, @@ -1531,39 +1530,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [46] = {.lex_state = 7}, [47] = {.lex_state = 7}, [48] = {.lex_state = 7}, - [49] = {.lex_state = 7}, + [49] = {.lex_state = 1}, [50] = {.lex_state = 1}, [51] = {.lex_state = 7}, [52] = {.lex_state = 1}, [53] = {.lex_state = 5}, - [54] = {.lex_state = 1}, + [54] = {.lex_state = 7}, [55] = {.lex_state = 7}, [56] = {.lex_state = 1}, [57] = {.lex_state = 1}, [58] = {.lex_state = 7}, [59] = {.lex_state = 7}, [60] = {.lex_state = 7}, - [61] = {.lex_state = 7}, + [61] = {.lex_state = 2}, [62] = {.lex_state = 7}, [63] = {.lex_state = 7}, [64] = {.lex_state = 7}, - [65] = {.lex_state = 2}, + [65] = {.lex_state = 5}, [66] = {.lex_state = 7}, - [67] = {.lex_state = 5}, + [67] = {.lex_state = 7}, [68] = {.lex_state = 7}, [69] = {.lex_state = 7}, - [70] = {.lex_state = 7}, + [70] = {.lex_state = 2}, [71] = {.lex_state = 7}, [72] = {.lex_state = 7}, [73] = {.lex_state = 7}, - [74] = {.lex_state = 2}, + [74] = {.lex_state = 7}, [75] = {.lex_state = 7}, [76] = {.lex_state = 7}, - [77] = {.lex_state = 7}, + [77] = {.lex_state = 5}, [78] = {.lex_state = 7}, [79] = {.lex_state = 7}, - [80] = {.lex_state = 7}, - [81] = {.lex_state = 5}, + [80] = {.lex_state = 5}, + [81] = {.lex_state = 7}, [82] = {.lex_state = 7}, [83] = {.lex_state = 5}, [84] = {.lex_state = 7}, @@ -1583,96 +1582,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [98] = {.lex_state = 7}, [99] = {.lex_state = 2}, [100] = {.lex_state = 7}, - [101] = {.lex_state = 5}, + [101] = {.lex_state = 1}, [102] = {.lex_state = 5}, [103] = {.lex_state = 5}, - [104] = {.lex_state = 42}, - [105] = {.lex_state = 5}, - [106] = {.lex_state = 0}, + [104] = {.lex_state = 5}, + [105] = {.lex_state = 42}, + [106] = {.lex_state = 5}, [107] = {.lex_state = 5}, [108] = {.lex_state = 5}, [109] = {.lex_state = 5}, [110] = {.lex_state = 5}, [111] = {.lex_state = 5}, - [112] = {.lex_state = 42}, + [112] = {.lex_state = 5}, [113] = {.lex_state = 5}, [114] = {.lex_state = 5}, [115] = {.lex_state = 5}, - [116] = {.lex_state = 5}, - [117] = {.lex_state = 5}, + [116] = {.lex_state = 0}, + [117] = {.lex_state = 42}, [118] = {.lex_state = 5}, - [119] = {.lex_state = 42}, + [119] = {.lex_state = 5}, [120] = {.lex_state = 5}, - [121] = {.lex_state = 5}, + [121] = {.lex_state = 42}, [122] = {.lex_state = 5}, - [123] = {.lex_state = 1}, + [123] = {.lex_state = 5}, [124] = {.lex_state = 1}, - [125] = {.lex_state = 5}, - [126] = {.lex_state = 7}, + [125] = {.lex_state = 7}, + [126] = {.lex_state = 0}, [127] = {.lex_state = 7}, - [128] = {.lex_state = 0}, - [129] = {.lex_state = 0}, + [128] = {.lex_state = 42}, + [129] = {.lex_state = 5}, [130] = {.lex_state = 7}, - [131] = {.lex_state = 7}, + [131] = {.lex_state = 0}, [132] = {.lex_state = 7}, [133] = {.lex_state = 7}, [134] = {.lex_state = 7}, - [135] = {.lex_state = 5}, - [136] = {.lex_state = 42}, - [137] = {.lex_state = 0}, + [135] = {.lex_state = 0}, + [136] = {.lex_state = 7}, + [137] = {.lex_state = 7}, [138] = {.lex_state = 7}, [139] = {.lex_state = 7}, - [140] = {.lex_state = 5}, + [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, - [142] = {.lex_state = 5}, + [142] = {.lex_state = 7}, [143] = {.lex_state = 7}, [144] = {.lex_state = 7}, - [145] = {.lex_state = 7}, - [146] = {.lex_state = 0}, + [145] = {.lex_state = 0}, + [146] = {.lex_state = 7}, [147] = {.lex_state = 7}, [148] = {.lex_state = 7}, [149] = {.lex_state = 7}, - [150] = {.lex_state = 0}, + [150] = {.lex_state = 7}, [151] = {.lex_state = 7}, - [152] = {.lex_state = 7}, - [153] = {.lex_state = 7}, + [152] = {.lex_state = 5}, + [153] = {.lex_state = 5}, [154] = {.lex_state = 7}, - [155] = {.lex_state = 7}, - [156] = {.lex_state = 5}, + [155] = {.lex_state = 5}, + [156] = {.lex_state = 7}, [157] = {.lex_state = 7}, - [158] = {.lex_state = 0}, - [159] = {.lex_state = 7}, + [158] = {.lex_state = 7}, + [159] = {.lex_state = 5}, [160] = {.lex_state = 7}, [161] = {.lex_state = 7}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 5}, + [162] = {.lex_state = 7}, + [163] = {.lex_state = 0}, [164] = {.lex_state = 7}, - [165] = {.lex_state = 7}, + [165] = {.lex_state = 0}, [166] = {.lex_state = 7}, - [167] = {.lex_state = 7}, + [167] = {.lex_state = 0}, [168] = {.lex_state = 7}, [169] = {.lex_state = 7}, - [170] = {.lex_state = 5}, + [170] = {.lex_state = 7}, [171] = {.lex_state = 7}, - [172] = {.lex_state = 7}, - [173] = {.lex_state = 7}, - [174] = {.lex_state = 7}, - [175] = {.lex_state = 7}, + [172] = {.lex_state = 0}, + [173] = {.lex_state = 0}, + [174] = {.lex_state = 0}, + [175] = {.lex_state = 0}, [176] = {.lex_state = 7}, - [177] = {.lex_state = 7}, - [178] = {.lex_state = 0}, + [177] = {.lex_state = 5}, + [178] = {.lex_state = 7}, [179] = {.lex_state = 7}, - [180] = {.lex_state = 0}, - [181] = {.lex_state = 7}, + [180] = {.lex_state = 7}, + [181] = {.lex_state = 0}, [182] = {.lex_state = 0}, - [183] = {.lex_state = 5}, + [183] = {.lex_state = 7}, [184] = {.lex_state = 0}, [185] = {.lex_state = 7}, - [186] = {.lex_state = 0}, + [186] = {.lex_state = 7}, [187] = {.lex_state = 7}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 0}, - [190] = {.lex_state = 7}, + [188] = {.lex_state = 5}, + [189] = {.lex_state = 7}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -1688,9 +1686,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), - [aux_sym_string_token1] = ACTIONS(1), + [sym_ministring] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), - [aux_sym_string_token2] = ACTIONS(1), + [aux_sym_string_token1] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), @@ -1712,25 +1710,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(182), - [sym__unspaced_statement] = STATE(165), + [sym_source_file] = STATE(173), + [sym__unspaced_statement] = STATE(178), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(5), [aux_sym__unspaced_statement_repeat1] = STATE(35), [ts_builtin_sym_end] = ACTIONS(3), @@ -1740,228 +1738,228 @@ 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), - [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), + [sym_ministring] = 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), }, [2] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), - [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), + [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), + [sym_ministring] = 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), }, [3] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(102), + [anon_sym_RBRACE] = ACTIONS(97), [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), + [sym_ministring] = 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), }, [4] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(104), + [anon_sym_RBRACE] = ACTIONS(99), [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), + [sym_ministring] = 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), }, [5] = { - [sym__unspaced_statement] = STATE(165), + [sym__unspaced_statement] = STATE(178), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(7), [aux_sym__unspaced_statement_repeat1] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(106), + [ts_builtin_sym_end] = ACTIONS(101), [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), + [sym_ministring] = 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), }, [6] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [sym__statement] = STATE(9), - [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(9), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -1970,136 +1968,136 @@ 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), - [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), + [sym_ministring] = 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(103), + [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), }, [7] = { - [sym__unspaced_statement] = STATE(165), + [sym__unspaced_statement] = STATE(178), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [ts_builtin_sym_end] = ACTIONS(105), + [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), + [sym_ministring] = 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), }, [8] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [anon_sym_RBRACE] = ACTIONS(107), [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), + [sym_ministring] = 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), }, [9] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -2108,1009 +2106,964 @@ 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), - [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), + [sym_ministring] = 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(109), + [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), }, [10] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [anon_sym_RBRACE] = ACTIONS(111), [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), + [sym_ministring] = 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), }, [11] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [sym__statement] = STATE(14), - [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(116), + [anon_sym_RBRACE] = ACTIONS(111), [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), + [sym_ministring] = 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(187), + [sym__unspaced_statement] = STATE(186), [sym__statement] = STATE(15), - [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(118), + [anon_sym_RBRACE] = ACTIONS(113), [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), + [sym_ministring] = 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), }, [13] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(120), + [anon_sym_RBRACE] = ACTIONS(115), [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), + [sym_ministring] = 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), }, [14] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(122), + [anon_sym_RBRACE] = ACTIONS(117), [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), + [sym_ministring] = 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), }, [15] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(124), + [anon_sym_RBRACE] = ACTIONS(119), [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), + [sym_ministring] = 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), }, [16] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(126), + [anon_sym_RBRACE] = ACTIONS(121), [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), + [sym_ministring] = 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), }, [17] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(128), + [anon_sym_RBRACE] = ACTIONS(123), [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), + [sym_ministring] = 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), }, [18] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(128), + [anon_sym_RBRACE] = ACTIONS(123), [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), + [sym_ministring] = 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), }, [19] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(130), + [anon_sym_RBRACE] = ACTIONS(125), [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), + [sym_ministring] = 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(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [anon_sym_RBRACE] = ACTIONS(127), [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), + [sym_ministring] = 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(187), + [sym__unspaced_statement] = STATE(186), [sym__statement] = STATE(24), - [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(134), + [anon_sym_RBRACE] = ACTIONS(129), [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), + [sym_ministring] = 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), }, [22] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [anon_sym_RBRACE] = ACTIONS(131), [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), + [sym_ministring] = 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), }, [23] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), + [sym__statement] = STATE(26), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), + [aux_sym_source_file_repeat1] = STATE(26), + [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), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [sym_ministring] = 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), + }, + [24] = { + [sym__unspaced_statement] = STATE(186), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), + [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), + [sym_identifier] = ACTIONS(11), + [anon_sym_COLON] = ACTIONS(13), + [sym_number] = ACTIONS(15), + [sym_ministring] = 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), + }, + [25] = { + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(136), + [anon_sym_RBRACE] = ACTIONS(133), [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), - }, - [24] = { - [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(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), - }, - [25] = { - [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), + [sym_ministring] = 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), }, [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__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(142), + [anon_sym_RBRACE] = ACTIONS(135), [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), + [sym_ministring] = 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), }, - [28] = { - [sym__unspaced_statement] = STATE(187), + [27] = { + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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(142), + [anon_sym_RBRACE] = ACTIONS(97), [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), + [sym_ministring] = 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), + }, + [28] = { + [sym__unspaced_statement] = STATE(132), + [sym__statement] = STATE(31), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), + [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), + [sym_ministring] = 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), }, [29] = { - [sym__unspaced_statement] = STATE(187), + [sym__unspaced_statement] = STATE(186), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [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), + [anon_sym_RBRACE] = ACTIONS(139), [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), + [sym_ministring] = 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(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__unspaced_statement] = STATE(136), [sym__statement] = STATE(32), - [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(32), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -3119,43 +3072,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), - [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), + [sym_ministring] = 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), }, - [32] = { - [sym__unspaced_statement] = STATE(133), + [31] = { + [sym__unspaced_statement] = STATE(136), [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), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), [aux_sym_source_file_repeat1] = STATE(2), [aux_sym__unspaced_statement_repeat1] = STATE(35), [anon_sym_AMP] = ACTIONS(5), @@ -3164,29 +3117,74 @@ 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), - [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), + [sym_ministring] = 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), + }, + [32] = { + [sym__unspaced_statement] = STATE(133), + [sym__statement] = STATE(2), + [sym_function_definition] = STATE(51), + [sym_func] = STATE(81), + [sym_block] = STATE(81), + [sym_call] = STATE(39), + [sym_string] = STATE(51), + [sym_call_expr] = STATE(51), + [sym_with_expr] = STATE(51), + [sym_array] = STATE(51), + [sym_operation] = STATE(54), + [sym_type_definition] = STATE(51), + [sym_if] = STATE(51), + [sym_while] = STATE(51), + [sym_catch] = STATE(51), + [sym_include] = STATE(51), + [sym_use] = STATE(51), + [sym_def] = STATE(51), + [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), + [sym_ministring] = 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), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 1, - ACTIONS(146), 25, + ACTIONS(141), 25, anon_sym_AMP, anon_sym_func, anon_sym_LBRACE, @@ -3194,7 +3192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_COLON, sym_number, - aux_sym_string_token1, + sym_ministring, anon_sym_DQUOTE, anon_sym_LT, anon_sym_with, @@ -3213,16 +3211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_def, [28] = 2, - ACTIONS(148), 1, + ACTIONS(143), 1, ts_builtin_sym_end, - ACTIONS(146), 23, + ACTIONS(141), 23, anon_sym_AMP, anon_sym_func, anon_sym_LBRACE, sym_identifier, anon_sym_COLON, sym_number, - aux_sym_string_token1, + sym_ministring, anon_sym_DQUOTE, anon_sym_LT, anon_sym_with, @@ -3244,26 +3242,26 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - ACTIONS(150), 1, + ACTIONS(145), 1, anon_sym_AMP, STATE(36), 1, aux_sym__unspaced_statement_repeat1, - STATE(39), 1, + STATE(40), 1, sym_call, - STATE(51), 1, + STATE(54), 1, sym_operation, - ACTIONS(27), 5, + ACTIONS(25), 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, [83] = 3, - ACTIONS(152), 1, + ACTIONS(147), 1, anon_sym_AMP, STATE(36), 1, aux_sym__unspaced_statement_repeat1, - ACTIONS(155), 7, + ACTIONS(150), 7, sym_identifier, anon_sym_COLON, aux_sym_operation_token1, @@ -3276,11 +3274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - STATE(49), 1, + STATE(48), 1, sym_call, - STATE(51), 1, + STATE(54), 1, sym_operation, - ACTIONS(27), 5, + ACTIONS(25), 5, aux_sym_operation_token1, anon_sym_EQ_GT_BANG, anon_sym_EQ_GT_QMARK, @@ -3291,907 +3289,900 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(13), 1, anon_sym_COLON, - STATE(51), 1, + STATE(54), 1, sym_operation, - STATE(132), 1, + STATE(127), 1, sym_call, - ACTIONS(27), 5, + ACTIONS(25), 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, [139] = 6, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_LT, - ACTIONS(157), 1, + ACTIONS(152), 1, anon_sym_SEMI, - ACTIONS(159), 1, + ACTIONS(154), 1, anon_sym_COLON, - ACTIONS(161), 1, + ACTIONS(156), 1, anon_sym_GT, - ACTIONS(163), 1, + ACTIONS(158), 1, sym__spacing, - STATE(127), 1, + STATE(125), 1, sym_call_expr, [158] = 6, - ACTIONS(21), 1, + ACTIONS(19), 1, anon_sym_LT, - ACTIONS(159), 1, + ACTIONS(154), 1, anon_sym_COLON, - ACTIONS(165), 1, + ACTIONS(160), 1, anon_sym_SEMI, - ACTIONS(167), 1, + ACTIONS(162), 1, anon_sym_GT, - ACTIONS(169), 1, + ACTIONS(164), 1, sym__spacing, STATE(130), 1, sym_call_expr, [177] = 4, - ACTIONS(173), 1, + ACTIONS(168), 1, sym__spacing, - ACTIONS(175), 1, + ACTIONS(170), 1, anon_sym_COMMA, STATE(41), 1, aux_sym_def_repeat1, - ACTIONS(171), 3, + ACTIONS(166), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [192] = 4, - ACTIONS(180), 1, + ACTIONS(175), 1, sym__spacing, - ACTIONS(182), 1, + ACTIONS(177), 1, anon_sym_COMMA, STATE(43), 1, aux_sym_def_repeat1, - ACTIONS(178), 3, + ACTIONS(173), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [207] = 4, - ACTIONS(182), 1, + ACTIONS(177), 1, anon_sym_COMMA, - ACTIONS(186), 1, + ACTIONS(181), 1, sym__spacing, STATE(41), 1, aux_sym_def_repeat1, - ACTIONS(184), 3, + ACTIONS(179), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [222] = 2, - ACTIONS(190), 1, + ACTIONS(185), 1, sym__spacing, - ACTIONS(188), 4, + ACTIONS(183), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [232] = 5, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(165), 1, - anon_sym_SEMI, - ACTIONS(167), 1, - anon_sym_GT, - ACTIONS(169), 1, + [232] = 2, + ACTIONS(189), 1, sym__spacing, - STATE(130), 1, - sym_call_expr, - [248] = 2, - ACTIONS(194), 1, - sym__spacing, - ACTIONS(192), 4, + ACTIONS(187), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [258] = 2, - ACTIONS(198), 1, + [242] = 2, + ACTIONS(193), 1, sym__spacing, - ACTIONS(196), 4, + ACTIONS(191), 4, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_COMMA, - [268] = 2, - ACTIONS(202), 1, + [252] = 2, + ACTIONS(197), 1, sym__spacing, - ACTIONS(200), 4, + ACTIONS(195), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [278] = 3, - ACTIONS(159), 1, + [262] = 3, + ACTIONS(154), 1, anon_sym_COLON, - ACTIONS(206), 1, + ACTIONS(201), 1, sym__spacing, - ACTIONS(204), 3, + ACTIONS(199), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [290] = 4, - ACTIONS(208), 1, + [274] = 4, + ACTIONS(203), 1, anon_sym_LBRACE, - ACTIONS(210), 1, + ACTIONS(205), 1, aux_sym_blocky_token1, - ACTIONS(212), 1, + ACTIONS(207), 1, + anon_sym_RBRACE, + STATE(50), 2, + sym_blocky, + aux_sym_blocky_repeat1, + [288] = 4, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(209), 1, + aux_sym_blocky_token1, + ACTIONS(211), 1, anon_sym_RBRACE, STATE(52), 2, sym_blocky, aux_sym_blocky_repeat1, - [304] = 2, - ACTIONS(216), 1, + [302] = 5, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(152), 1, + anon_sym_SEMI, + ACTIONS(156), 1, + anon_sym_GT, + ACTIONS(158), 1, sym__spacing, - ACTIONS(214), 4, + STATE(125), 1, + sym_call_expr, + [318] = 4, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + aux_sym_blocky_token1, + ACTIONS(219), 1, + anon_sym_RBRACE, + STATE(52), 2, + sym_blocky, + aux_sym_blocky_repeat1, + [332] = 3, + ACTIONS(223), 1, + sym_identifier, + STATE(53), 1, + aux_sym_with_expr_repeat1, + ACTIONS(221), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + [344] = 2, + ACTIONS(228), 1, + sym__spacing, + ACTIONS(226), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, - [314] = 4, - ACTIONS(208), 1, - anon_sym_LBRACE, - ACTIONS(218), 1, - aux_sym_blocky_token1, - ACTIONS(220), 1, - anon_sym_RBRACE, - STATE(54), 2, - sym_blocky, - aux_sym_blocky_repeat1, - [328] = 3, - ACTIONS(224), 1, - sym_identifier, - STATE(53), 1, - aux_sym_with_expr_repeat1, - ACTIONS(222), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - [340] = 4, - ACTIONS(227), 1, - anon_sym_LBRACE, - 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, + ACTIONS(232), 1, sym__spacing, - ACTIONS(235), 4, + ACTIONS(230), 4, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_GT, [364] = 4, - ACTIONS(208), 1, + ACTIONS(203), 1, anon_sym_LBRACE, - ACTIONS(239), 1, + ACTIONS(234), 1, aux_sym_blocky_token1, - ACTIONS(241), 1, + ACTIONS(236), 1, anon_sym_RBRACE, STATE(57), 2, sym_blocky, aux_sym_blocky_repeat1, [378] = 4, - ACTIONS(208), 1, + ACTIONS(203), 1, anon_sym_LBRACE, - ACTIONS(218), 1, + ACTIONS(209), 1, aux_sym_blocky_token1, - ACTIONS(243), 1, + ACTIONS(238), 1, anon_sym_RBRACE, - STATE(54), 2, + STATE(52), 2, sym_blocky, aux_sym_blocky_repeat1, [392] = 2, - ACTIONS(247), 1, + ACTIONS(242), 1, sym__spacing, - ACTIONS(245), 3, + ACTIONS(240), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [401] = 2, - ACTIONS(251), 1, + ACTIONS(246), 1, sym__spacing, - ACTIONS(249), 3, + ACTIONS(244), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [410] = 2, - ACTIONS(255), 1, + ACTIONS(250), 1, sym__spacing, - ACTIONS(253), 3, + ACTIONS(248), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [419] = 2, - ACTIONS(259), 1, - sym__spacing, - ACTIONS(257), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [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, + [419] = 3, + ACTIONS(254), 1, anon_sym_DQUOTE, - STATE(74), 1, + STATE(70), 1, aux_sym_string_repeat1, - ACTIONS(273), 2, + ACTIONS(252), 2, aux_sym_blocky_token1, - aux_sym_string_token2, - [470] = 2, - ACTIONS(279), 1, + aux_sym_string_token1, + [430] = 4, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(256), 1, + anon_sym_GT, + ACTIONS(258), 1, sym__spacing, - ACTIONS(277), 3, + STATE(134), 1, + sym_call_expr, + [443] = 2, + ACTIONS(262), 1, + sym__spacing, + ACTIONS(260), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [452] = 2, + ACTIONS(266), 1, + sym__spacing, + ACTIONS(264), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [461] = 2, + ACTIONS(268), 1, + sym_identifier, + ACTIONS(221), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + [470] = 2, + ACTIONS(272), 1, + sym__spacing, + ACTIONS(270), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [479] = 2, - ACTIONS(281), 1, - sym_identifier, - ACTIONS(222), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - [488] = 2, - ACTIONS(285), 1, + ACTIONS(276), 1, sym__spacing, - ACTIONS(283), 3, + ACTIONS(274), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [497] = 2, - ACTIONS(289), 1, - sym__spacing, - ACTIONS(287), 3, - anon_sym_SEMI, + [488] = 4, + ACTIONS(19), 1, anon_sym_LT, + ACTIONS(162), 1, anon_sym_GT, - [506] = 4, - ACTIONS(21), 1, - anon_sym_LT, - ACTIONS(161), 1, - anon_sym_GT, - ACTIONS(163), 1, + ACTIONS(164), 1, sym__spacing, - STATE(127), 1, + STATE(130), 1, sym_call_expr, - [519] = 2, - ACTIONS(293), 1, + [501] = 2, + ACTIONS(280), 1, sym__spacing, - ACTIONS(291), 3, + ACTIONS(278), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [528] = 2, - ACTIONS(297), 1, - sym__spacing, - ACTIONS(295), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [537] = 2, - ACTIONS(301), 1, - sym__spacing, - ACTIONS(299), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [546] = 3, - ACTIONS(305), 1, + [510] = 3, + ACTIONS(284), 1, anon_sym_DQUOTE, STATE(99), 1, aux_sym_string_repeat1, - ACTIONS(303), 2, + ACTIONS(282), 2, aux_sym_blocky_token1, - aux_sym_string_token2, - [557] = 2, - ACTIONS(309), 1, + aux_sym_string_token1, + [521] = 2, + ACTIONS(288), 1, sym__spacing, - ACTIONS(307), 3, + ACTIONS(286), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [530] = 2, + ACTIONS(292), 1, + sym__spacing, + ACTIONS(290), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [539] = 2, + ACTIONS(296), 1, + sym__spacing, + ACTIONS(294), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [548] = 2, + ACTIONS(300), 1, + sym__spacing, + ACTIONS(298), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [557] = 2, + ACTIONS(304), 1, + sym__spacing, + ACTIONS(302), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, [566] = 2, - ACTIONS(313), 1, + ACTIONS(308), 1, sym__spacing, - ACTIONS(311), 3, + ACTIONS(306), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [575] = 2, - ACTIONS(317), 1, - sym__spacing, - ACTIONS(315), 3, + [575] = 4, + ACTIONS(310), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [584] = 2, - ACTIONS(321), 1, - sym__spacing, - ACTIONS(319), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [593] = 2, - ACTIONS(325), 1, - sym__spacing, - ACTIONS(323), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [602] = 2, - ACTIONS(329), 1, - sym__spacing, - ACTIONS(327), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [611] = 4, - ACTIONS(331), 1, - anon_sym_SEMI, - ACTIONS(333), 1, + ACTIONS(312), 1, anon_sym_RBRACE, - ACTIONS(335), 1, + ACTIONS(314), 1, sym_identifier, + STATE(80), 1, + aux_sym_with_expr_repeat1, + [588] = 2, + ACTIONS(318), 1, + sym__spacing, + ACTIONS(316), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [597] = 2, + ACTIONS(322), 1, + sym__spacing, + ACTIONS(320), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [606] = 4, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_SEMI, + ACTIONS(326), 1, + anon_sym_RBRACE, STATE(53), 1, aux_sym_with_expr_repeat1, - [624] = 2, - ACTIONS(339), 1, + [619] = 2, + ACTIONS(330), 1, sym__spacing, - ACTIONS(337), 3, + ACTIONS(328), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [633] = 4, - ACTIONS(335), 1, - sym_identifier, - ACTIONS(341), 1, + [628] = 2, + ACTIONS(334), 1, + sym__spacing, + ACTIONS(332), 3, anon_sym_SEMI, - ACTIONS(343), 1, + anon_sym_LT, + anon_sym_GT, + [637] = 4, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(336), 1, + anon_sym_SEMI, + ACTIONS(338), 1, anon_sym_RBRACE, STATE(86), 1, aux_sym_with_expr_repeat1, - [646] = 2, - ACTIONS(347), 1, + [650] = 2, + ACTIONS(342), 1, sym__spacing, - ACTIONS(345), 3, + ACTIONS(340), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [655] = 2, - ACTIONS(351), 1, + [659] = 2, + ACTIONS(346), 1, sym__spacing, - ACTIONS(349), 3, + ACTIONS(344), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [664] = 4, - ACTIONS(335), 1, + [668] = 4, + ACTIONS(314), 1, sym_identifier, - ACTIONS(353), 1, + ACTIONS(348), 1, anon_sym_SEMI, - ACTIONS(355), 1, + ACTIONS(350), 1, anon_sym_RBRACE, STATE(53), 1, aux_sym_with_expr_repeat1, - [677] = 2, - ACTIONS(359), 1, + [681] = 2, + ACTIONS(354), 1, sym__spacing, - ACTIONS(357), 3, + ACTIONS(352), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [686] = 2, - ACTIONS(363), 1, + [690] = 2, + ACTIONS(358), 1, sym__spacing, - ACTIONS(361), 3, + ACTIONS(356), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [695] = 2, - ACTIONS(367), 1, + [699] = 2, + ACTIONS(362), 1, sym__spacing, - ACTIONS(365), 3, + ACTIONS(360), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [704] = 2, - ACTIONS(371), 1, + [708] = 2, + ACTIONS(366), 1, sym__spacing, - ACTIONS(369), 3, + ACTIONS(364), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [713] = 2, - ACTIONS(375), 1, + [717] = 2, + ACTIONS(370), 1, sym__spacing, - ACTIONS(373), 3, + ACTIONS(368), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [722] = 2, - ACTIONS(379), 1, + [726] = 2, + ACTIONS(374), 1, sym__spacing, - ACTIONS(377), 3, + ACTIONS(372), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [731] = 2, - ACTIONS(383), 1, + [735] = 2, + ACTIONS(378), 1, sym__spacing, - ACTIONS(381), 3, + ACTIONS(376), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [740] = 2, - ACTIONS(387), 1, + [744] = 2, + ACTIONS(382), 1, sym__spacing, - ACTIONS(385), 3, + ACTIONS(380), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [749] = 2, - ACTIONS(391), 1, + [753] = 2, + ACTIONS(386), 1, sym__spacing, - ACTIONS(389), 3, + ACTIONS(384), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [758] = 2, - ACTIONS(395), 1, + [762] = 2, + ACTIONS(390), 1, sym__spacing, - ACTIONS(393), 3, + ACTIONS(388), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [767] = 2, - ACTIONS(399), 1, + [771] = 2, + ACTIONS(394), 1, sym__spacing, - ACTIONS(397), 3, + ACTIONS(392), 3, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - [776] = 2, + [780] = 2, + ACTIONS(398), 1, + sym__spacing, + ACTIONS(396), 3, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + [789] = 3, ACTIONS(403), 1, - sym__spacing, - ACTIONS(401), 3, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - [785] = 3, - ACTIONS(408), 1, anon_sym_DQUOTE, STATE(99), 1, aux_sym_string_repeat1, - ACTIONS(405), 2, + ACTIONS(400), 2, aux_sym_blocky_token1, - aux_sym_string_token2, - [796] = 2, - ACTIONS(412), 1, + aux_sym_string_token1, + [800] = 2, + ACTIONS(407), 1, sym__spacing, - ACTIONS(410), 3, + ACTIONS(405), 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_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, + [809] = 1, + ACTIONS(376), 3, anon_sym_LBRACE, + aux_sym_blocky_token1, + anon_sym_RBRACE, + [815] = 3, + ACTIONS(338), 1, + anon_sym_RBRACE, + ACTIONS(409), 1, + sym_identifier, + STATE(107), 1, + aux_sym_type_definition_repeat1, + [825] = 3, + ACTIONS(338), 1, + anon_sym_RBRACE, + ACTIONS(409), 1, + sym_identifier, + STATE(108), 1, + aux_sym_type_definition_repeat1, + [835] = 3, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(122), 1, + aux_sym_with_expr_repeat1, + [845] = 3, + ACTIONS(413), 1, + aux_sym_block_token1, + ACTIONS(416), 1, + anon_sym_PIPE, + STATE(105), 1, + aux_sym_block_repeat1, + [855] = 3, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(418), 1, + anon_sym_SEMI, 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, + [865] = 3, + ACTIONS(420), 1, anon_sym_RBRACE, - ACTIONS(423), 1, + ACTIONS(422), 1, + sym_identifier, + STATE(107), 1, + aux_sym_type_definition_repeat1, + [875] = 3, + ACTIONS(350), 1, + anon_sym_RBRACE, + ACTIONS(409), 1, + sym_identifier, + STATE(107), 1, + aux_sym_type_definition_repeat1, + [885] = 3, + ACTIONS(350), 1, + anon_sym_RBRACE, + ACTIONS(409), 1, sym_identifier, STATE(114), 1, aux_sym_type_definition_repeat1, - [888] = 3, - ACTIONS(335), 1, + [895] = 3, + ACTIONS(425), 1, + anon_sym_AMP, + ACTIONS(427), 1, sym_identifier, - ACTIONS(440), 1, + STATE(123), 1, + aux_sym__unspaced_statement_repeat1, + [905] = 3, + ACTIONS(429), 1, + anon_sym_AMP, + ACTIONS(431), 1, + sym_identifier, + STATE(110), 1, + aux_sym__unspaced_statement_repeat1, + [915] = 3, + ACTIONS(433), 1, + anon_sym_AMP, + ACTIONS(435), 1, + sym_identifier, + STATE(119), 1, + aux_sym__unspaced_statement_repeat1, + [925] = 3, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(437), 1, anon_sym_SEMI, + STATE(106), 1, + aux_sym_with_expr_repeat1, + [935] = 3, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(439), 1, + anon_sym_RBRACE, + STATE(107), 1, + aux_sym_type_definition_repeat1, + [945] = 3, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(439), 1, + anon_sym_RBRACE, + STATE(118), 1, + aux_sym_type_definition_repeat1, + [955] = 3, + ACTIONS(441), 1, + anon_sym_AT, + ACTIONS(443), 1, + anon_sym_LBRACE, + STATE(71), 1, + sym_block, + [965] = 3, + ACTIONS(445), 1, + aux_sym_block_token1, + ACTIONS(447), 1, + anon_sym_PIPE, + STATE(105), 1, + aux_sym_block_repeat1, + [975] = 3, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(449), 1, + anon_sym_RBRACE, + STATE(107), 1, + aux_sym_type_definition_repeat1, + [985] = 3, + ACTIONS(425), 1, + anon_sym_AMP, + ACTIONS(431), 1, + sym_identifier, + STATE(123), 1, + aux_sym__unspaced_statement_repeat1, + [995] = 3, + ACTIONS(326), 1, + anon_sym_RBRACE, + ACTIONS(409), 1, + sym_identifier, + STATE(102), 1, + aux_sym_type_definition_repeat1, + [1005] = 3, + ACTIONS(445), 1, + aux_sym_block_token1, + ACTIONS(451), 1, + anon_sym_PIPE, + STATE(117), 1, + aux_sym_block_repeat1, + [1015] = 3, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(453), 1, + anon_sym_LBRACE, 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, + [1025] = 3, + ACTIONS(455), 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, - [988] = 3, - ACTIONS(444), 1, - aux_sym_block_token1, ACTIONS(458), 1, - anon_sym_PIPE, - STATE(104), 1, - aux_sym_block_repeat1, - [998] = 3, + sym_identifier, + STATE(123), 1, + aux_sym__unspaced_statement_repeat1, + [1035] = 1, + ACTIONS(360), 3, + anon_sym_LBRACE, + aux_sym_blocky_token1, + anon_sym_RBRACE, + [1041] = 2, + ACTIONS(162), 1, + anon_sym_GT, + ACTIONS(164), 1, + sym__spacing, + [1048] = 2, + ACTIONS(443), 1, + anon_sym_LBRACE, + STATE(148), 1, + sym_block, + [1055] = 2, + ACTIONS(154), 1, + anon_sym_COLON, ACTIONS(460), 1, - anon_sym_AMP, + sym__spacing, + [1062] = 2, + ACTIONS(416), 1, + anon_sym_PIPE, ACTIONS(462), 1, - 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, + aux_sym_block_token1, + [1069] = 2, ACTIONS(464), 1, anon_sym_RBRACE, ACTIONS(466), 1, sym_identifier, - 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, + [1076] = 2, + ACTIONS(256), 1, anon_sym_GT, - ACTIONS(471), 1, + ACTIONS(258), 1, sym__spacing, - [1057] = 2, - ACTIONS(265), 1, + [1083] = 2, + ACTIONS(468), 1, + anon_sym_LBRACE, + ACTIONS(470), 1, + anon_sym_namespace, + [1090] = 2, + ACTIONS(472), 1, anon_sym_GT, - ACTIONS(267), 1, + ACTIONS(474), 1, sym__spacing, - [1064] = 2, - ACTIONS(473), 1, + [1097] = 2, + ACTIONS(474), 1, + sym__spacing, + ACTIONS(476), 1, + anon_sym_GT, + [1104] = 2, + ACTIONS(478), 1, + anon_sym_GT, + ACTIONS(480), 1, + sym__spacing, + [1111] = 2, + ACTIONS(482), 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, + [1118] = 2, + ACTIONS(474), 1, + sym__spacing, + ACTIONS(484), 1, anon_sym_GT, - ACTIONS(163), 1, + [1125] = 1, + ACTIONS(486), 1, sym__spacing, - [1085] = 2, - ACTIONS(475), 1, - anon_sym_GT, - ACTIONS(477), 1, + [1129] = 1, + ACTIONS(488), 1, sym__spacing, - [1092] = 2, - ACTIONS(159), 1, - anon_sym_COLON, - ACTIONS(479), 1, + [1133] = 1, + ACTIONS(490), 1, sym__spacing, - [1099] = 2, - ACTIONS(471), 1, + [1137] = 1, + ACTIONS(492), 1, sym__spacing, - ACTIONS(481), 1, - anon_sym_GT, - [1106] = 2, - ACTIONS(471), 1, + [1141] = 1, + ACTIONS(494), 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, + [1145] = 1, + ACTIONS(496), 1, + sym__spacing, + [1149] = 1, + ACTIONS(498), 1, + sym__spacing, + [1153] = 1, + ACTIONS(500), 1, + sym__spacing, + [1157] = 1, + ACTIONS(502), 1, anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_namespace, - [1134] = 1, - ACTIONS(495), 1, + [1161] = 1, + ACTIONS(504), 1, sym__spacing, - [1138] = 1, - ACTIONS(497), 1, + [1165] = 1, + ACTIONS(506), 1, sym__spacing, - [1142] = 1, - ACTIONS(499), 1, + [1169] = 1, + ACTIONS(508), 1, + sym__spacing, + [1173] = 1, + ACTIONS(510), 1, + sym__spacing, + [1177] = 1, + ACTIONS(512), 1, + sym__spacing, + [1181] = 1, + ACTIONS(514), 1, + sym__spacing, + [1185] = 1, + ACTIONS(516), 1, sym_identifier, - [1146] = 1, - ACTIONS(501), 1, - sym__spacing, - [1150] = 1, - ACTIONS(503), 1, + [1189] = 1, + ACTIONS(518), 1, sym_identifier, - [1154] = 1, - ACTIONS(505), 1, + [1193] = 1, + ACTIONS(520), 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, - [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, + [1197] = 1, + ACTIONS(522), 1, sym_identifier, - [1210] = 1, - ACTIONS(533), 1, + [1201] = 1, + ACTIONS(524), 1, sym__spacing, - [1214] = 1, - ACTIONS(535), 1, - anon_sym_LBRACE, - [1218] = 1, - ACTIONS(537), 1, + [1205] = 1, + ACTIONS(526), 1, sym__spacing, - [1222] = 1, - ACTIONS(539), 1, + [1209] = 1, + ACTIONS(528), 1, sym__spacing, - [1226] = 1, - ACTIONS(541), 1, - sym__spacing, - [1230] = 1, - ACTIONS(543), 1, - anon_sym_in, - [1234] = 1, - ACTIONS(545), 1, + [1213] = 1, + ACTIONS(530), 1, sym_identifier, - [1238] = 1, - ACTIONS(547), 1, + [1217] = 1, + ACTIONS(532), 1, sym__spacing, - [1242] = 1, - ACTIONS(549), 1, + [1221] = 1, + ACTIONS(534), 1, sym__spacing, - [1246] = 1, - ACTIONS(551), 1, + [1225] = 1, + ACTIONS(536), 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, - [1266] = 1, - ACTIONS(561), 1, - sym__spacing, - [1270] = 1, - ACTIONS(563), 1, - sym__spacing, - [1274] = 1, - ACTIONS(565), 1, - sym__spacing, - [1278] = 1, - ACTIONS(567), 1, - sym__spacing, - [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, + [1229] = 1, + ACTIONS(538), 1, anon_sym_LBRACE, - [1298] = 1, - ACTIONS(577), 1, + [1233] = 1, + ACTIONS(540), 1, sym__spacing, - [1302] = 1, - ACTIONS(579), 1, + [1237] = 1, + ACTIONS(542), 1, anon_sym_LBRACE, - [1306] = 1, - ACTIONS(581), 1, + [1241] = 1, + ACTIONS(544), 1, sym__spacing, - [1310] = 1, - ACTIONS(583), 1, + [1245] = 1, + ACTIONS(546), 1, + anon_sym_LBRACE, + [1249] = 1, + ACTIONS(548), 1, + sym__spacing, + [1253] = 1, + ACTIONS(550), 1, + sym__spacing, + [1257] = 1, + ACTIONS(552), 1, + sym__spacing, + [1261] = 1, + ACTIONS(554), 1, + sym__spacing, + [1265] = 1, + ACTIONS(556), 1, + anon_sym_LBRACE, + [1269] = 1, + ACTIONS(558), 1, ts_builtin_sym_end, - [1314] = 1, - ACTIONS(585), 1, - sym_identifier, - [1318] = 1, - ACTIONS(587), 1, + [1273] = 1, + ACTIONS(560), 1, anon_sym_LBRACE, - [1322] = 1, - ACTIONS(589), 1, - sym__spacing, - [1326] = 1, - ACTIONS(591), 1, - anon_sym_LBRACE, - [1330] = 1, - ACTIONS(471), 1, - sym__spacing, - [1334] = 1, - ACTIONS(593), 1, - anon_sym_LBRACE, - [1338] = 1, - ACTIONS(595), 1, + [1277] = 1, + ACTIONS(562), 1, anon_sym_BANG, - [1342] = 1, - ACTIONS(597), 1, + [1281] = 1, + ACTIONS(564), 1, + sym__spacing, + [1285] = 1, + ACTIONS(566), 1, + sym_identifier, + [1289] = 1, + ACTIONS(568), 1, + sym__spacing, + [1293] = 1, + ACTIONS(570), 1, + sym__spacing, + [1297] = 1, + ACTIONS(572), 1, + sym__spacing, + [1301] = 1, + ACTIONS(574), 1, + anon_sym_in, + [1305] = 1, + ACTIONS(576), 1, + anon_sym_LBRACE, + [1309] = 1, + ACTIONS(578), 1, + sym__spacing, + [1313] = 1, + ACTIONS(580), 1, + anon_sym_LBRACE, + [1317] = 1, + ACTIONS(582), 1, + sym__spacing, + [1321] = 1, + ACTIONS(474), 1, + sym__spacing, + [1325] = 1, + ACTIONS(584), 1, + sym__spacing, + [1329] = 1, + ACTIONS(586), 1, + sym_identifier, + [1333] = 1, + ACTIONS(588), 1, sym__spacing, }; @@ -4209,15 +4200,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(46)] = 242, + [SMALL_STATE(47)] = 252, + [SMALL_STATE(48)] = 262, + [SMALL_STATE(49)] = 274, + [SMALL_STATE(50)] = 288, + [SMALL_STATE(51)] = 302, + [SMALL_STATE(52)] = 318, + [SMALL_STATE(53)] = 332, + [SMALL_STATE(54)] = 344, [SMALL_STATE(55)] = 354, [SMALL_STATE(56)] = 364, [SMALL_STATE(57)] = 378, @@ -4225,135 +4216,134 @@ static const uint32_t ts_small_parse_table_map[] = { [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(62)] = 430, + [SMALL_STATE(63)] = 443, + [SMALL_STATE(64)] = 452, + [SMALL_STATE(65)] = 461, [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(69)] = 501, + [SMALL_STATE(70)] = 510, + [SMALL_STATE(71)] = 521, + [SMALL_STATE(72)] = 530, + [SMALL_STATE(73)] = 539, + [SMALL_STATE(74)] = 548, [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, + [SMALL_STATE(78)] = 588, + [SMALL_STATE(79)] = 597, + [SMALL_STATE(80)] = 606, + [SMALL_STATE(81)] = 619, + [SMALL_STATE(82)] = 628, + [SMALL_STATE(83)] = 637, + [SMALL_STATE(84)] = 650, + [SMALL_STATE(85)] = 659, + [SMALL_STATE(86)] = 668, + [SMALL_STATE(87)] = 681, + [SMALL_STATE(88)] = 690, + [SMALL_STATE(89)] = 699, + [SMALL_STATE(90)] = 708, + [SMALL_STATE(91)] = 717, + [SMALL_STATE(92)] = 726, + [SMALL_STATE(93)] = 735, + [SMALL_STATE(94)] = 744, + [SMALL_STATE(95)] = 753, + [SMALL_STATE(96)] = 762, + [SMALL_STATE(97)] = 771, + [SMALL_STATE(98)] = 780, + [SMALL_STATE(99)] = 789, + [SMALL_STATE(100)] = 800, + [SMALL_STATE(101)] = 809, + [SMALL_STATE(102)] = 815, + [SMALL_STATE(103)] = 825, + [SMALL_STATE(104)] = 835, + [SMALL_STATE(105)] = 845, + [SMALL_STATE(106)] = 855, + [SMALL_STATE(107)] = 865, + [SMALL_STATE(108)] = 875, + [SMALL_STATE(109)] = 885, + [SMALL_STATE(110)] = 895, + [SMALL_STATE(111)] = 905, + [SMALL_STATE(112)] = 915, + [SMALL_STATE(113)] = 925, + [SMALL_STATE(114)] = 935, + [SMALL_STATE(115)] = 945, + [SMALL_STATE(116)] = 955, + [SMALL_STATE(117)] = 965, + [SMALL_STATE(118)] = 975, + [SMALL_STATE(119)] = 985, + [SMALL_STATE(120)] = 995, + [SMALL_STATE(121)] = 1005, + [SMALL_STATE(122)] = 1015, + [SMALL_STATE(123)] = 1025, + [SMALL_STATE(124)] = 1035, + [SMALL_STATE(125)] = 1041, + [SMALL_STATE(126)] = 1048, + [SMALL_STATE(127)] = 1055, + [SMALL_STATE(128)] = 1062, + [SMALL_STATE(129)] = 1069, + [SMALL_STATE(130)] = 1076, + [SMALL_STATE(131)] = 1083, + [SMALL_STATE(132)] = 1090, + [SMALL_STATE(133)] = 1097, + [SMALL_STATE(134)] = 1104, + [SMALL_STATE(135)] = 1111, + [SMALL_STATE(136)] = 1118, + [SMALL_STATE(137)] = 1125, + [SMALL_STATE(138)] = 1129, + [SMALL_STATE(139)] = 1133, + [SMALL_STATE(140)] = 1137, + [SMALL_STATE(141)] = 1141, + [SMALL_STATE(142)] = 1145, + [SMALL_STATE(143)] = 1149, + [SMALL_STATE(144)] = 1153, + [SMALL_STATE(145)] = 1157, + [SMALL_STATE(146)] = 1161, + [SMALL_STATE(147)] = 1165, + [SMALL_STATE(148)] = 1169, + [SMALL_STATE(149)] = 1173, + [SMALL_STATE(150)] = 1177, + [SMALL_STATE(151)] = 1181, + [SMALL_STATE(152)] = 1185, + [SMALL_STATE(153)] = 1189, + [SMALL_STATE(154)] = 1193, + [SMALL_STATE(155)] = 1197, + [SMALL_STATE(156)] = 1201, + [SMALL_STATE(157)] = 1205, + [SMALL_STATE(158)] = 1209, + [SMALL_STATE(159)] = 1213, + [SMALL_STATE(160)] = 1217, + [SMALL_STATE(161)] = 1221, + [SMALL_STATE(162)] = 1225, + [SMALL_STATE(163)] = 1229, + [SMALL_STATE(164)] = 1233, + [SMALL_STATE(165)] = 1237, + [SMALL_STATE(166)] = 1241, + [SMALL_STATE(167)] = 1245, + [SMALL_STATE(168)] = 1249, + [SMALL_STATE(169)] = 1253, + [SMALL_STATE(170)] = 1257, + [SMALL_STATE(171)] = 1261, + [SMALL_STATE(172)] = 1265, + [SMALL_STATE(173)] = 1269, + [SMALL_STATE(174)] = 1273, + [SMALL_STATE(175)] = 1277, + [SMALL_STATE(176)] = 1281, + [SMALL_STATE(177)] = 1285, + [SMALL_STATE(178)] = 1289, + [SMALL_STATE(179)] = 1293, + [SMALL_STATE(180)] = 1297, + [SMALL_STATE(181)] = 1301, + [SMALL_STATE(182)] = 1305, + [SMALL_STATE(183)] = 1309, + [SMALL_STATE(184)] = 1313, + [SMALL_STATE(185)] = 1317, + [SMALL_STATE(186)] = 1321, + [SMALL_STATE(187)] = 1325, + [SMALL_STATE(188)] = 1329, + [SMALL_STATE(189)] = 1333, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -4361,288 +4351,284 @@ 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(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 = 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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [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(140), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [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(54), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [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(111), + [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_def_repeat1, 2, 0, 0), + [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_def_repeat1, 2, 0, 0), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_def_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def, 3, 0, 0), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def, 3, 0, 0), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def, 4, 0, 0), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def, 4, 0, 0), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 0), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 0), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 0), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 0), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_def_repeat1, 3, 0, 0), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_def_repeat1, 3, 0, 0), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 4, 0, 0), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 4, 0, 0), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, 0, 0), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, 0, 0), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blocky_repeat1, 2, 0, 0), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 0), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1, 0, 0), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1, 0, 0), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, 0, 0), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, 0, 0), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 3, 0, 0), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 3, 0, 0), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 3, 0, 0), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 3, 0, 0), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 4, 0, 0), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 4, 0, 0), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_expr_repeat1, 2, 0, 0), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expr, 4, 0, 0), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expr, 4, 0, 0), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 5, 0, 0), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 5, 0, 0), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 5, 0, 0), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 5, 0, 0), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 0), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 0), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5, 0, 0), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5, 0, 0), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 0), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 0), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, 0, 0), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 0), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 1, 0, 0), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 1, 0, 0), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, 0, 0), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, 0, 0), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 9, 0, 0), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 9, 0, 0), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, 0, 0), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, 0, 0), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 9, 0, 0), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 9, 0, 0), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 9, 0, 0), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 9, 0, 0), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 2, 0, 0), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 2, 0, 0), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, 0, 0), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, 0, 0), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 10, 0, 0), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 10, 0, 0), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 10, 0, 0), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 10, 0, 0), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_blocky, 3, 0, 0), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blocky, 3, 0, 0), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 11, 0, 0), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 11, 0, 0), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 11, 0, 0), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 11, 0, 0), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 12, 0, 0), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 12, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch, 12, 0, 0), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch, 12, 0, 0), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 0), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unspaced_statement_repeat1, 2, 0, 0), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3, 0, 0), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unspaced_statement, 4, 0, 0), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unspaced_statement, 4, 0, 0), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [558] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), }; #ifdef __cplusplus